Comment Box for Substitution Method of Integrals

Clash Royale CLAN TAG#URR8PPP
I want to make a comment box like the image below that adjusts in size as I write up different examples. My MWE is not much
documentclassarticle
usepackageamsmath, mathtools,tikz
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10 dx &=int (textcolorred
x^3+1)^10 textcolorblue3x^2 dx \
&=int textcolorredu^10
textcolorbluedu
endalign*
enddocument
This outputs:

I am trying to recreate with a black box drawn around the orange shaded area.

tikz-pgf
add a comment |
I want to make a comment box like the image below that adjusts in size as I write up different examples. My MWE is not much
documentclassarticle
usepackageamsmath, mathtools,tikz
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10 dx &=int (textcolorred
x^3+1)^10 textcolorblue3x^2 dx \
&=int textcolorredu^10
textcolorbluedu
endalign*
enddocument
This outputs:

I am trying to recreate with a black box drawn around the orange shaded area.

tikz-pgf
add a comment |
I want to make a comment box like the image below that adjusts in size as I write up different examples. My MWE is not much
documentclassarticle
usepackageamsmath, mathtools,tikz
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10 dx &=int (textcolorred
x^3+1)^10 textcolorblue3x^2 dx \
&=int textcolorredu^10
textcolorbluedu
endalign*
enddocument
This outputs:

I am trying to recreate with a black box drawn around the orange shaded area.

tikz-pgf
I want to make a comment box like the image below that adjusts in size as I write up different examples. My MWE is not much
documentclassarticle
usepackageamsmath, mathtools,tikz
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10 dx &=int (textcolorred
x^3+1)^10 textcolorblue3x^2 dx \
&=int textcolorredu^10
textcolorbluedu
endalign*
enddocument
This outputs:

I am trying to recreate with a black box drawn around the orange shaded area.

tikz-pgf
tikz-pgf
asked Mar 17 at 14:14
MathScholarMathScholar
1,10029
1,10029
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Using tikzmark, it is not so difficult:
documentclassarticle
usepackageamsmath, mathtools,tikz
usetikzlibrarytikzmark,calc
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10 dx &=int (textcolorred x^3+1)^10 textcolorblue3x^2 dx tikzmarkeqt\
&=int textcolorredu^10textcolorbluedu
endalign*
begintikzpicture[overlay, remember picture]
coordinate (x) at ($(pic cs:eqt)+(1,0)$);
draw (x)--($(x)+(3,0)$);
draw[red] (x) node[above right] Substitution;
draw ($(x)+(3,0)$) node[right,draw,fill=orange!50] %
% Remove `draw' option if you don't want the box
$beginaligned
u&=x^3+1,\
du&=3x^2dx
endaligned$;
endtikzpicture
enddocument

This very nice and creative solution is by @marmot:
documentclass[fleqn]article
usepackageamsmath,tikz
usetikzlibrarytikzmark
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10,mathrmdx
&tikzmarknodeeq1=int (textcolorred x^3+1)^10
textcolorblue3x^2, mathrmdx \
&tikzmarknodeeq2=int textcolorredu^10,textcolorbluemathrmdu
endalign*
begintikzpicture[overlay, remember picture]
path (eq1) -- (eq2) coordinate[midway] (aux);
draw[latex-] (eq2) -- (aux) -- ++ (5,0) node[above left] substitute
node[right,fill=orange!30] %
$beginaligned
u&=x^3+1\
mathrmdu&=3x^2,mathrmdx
endaligned$;
endtikzpicture
enddocument

add a comment |
Without tikz, I define an extensible xmathline, centred on the math axis, which accepts writing above and below it, like xrightarrow, and add a simple colorbox:
documentclass[svgnames]article
usepackageamsmath, mathtools,tikz
usepackagexcolor
usepackagebigstrut
newcommandxmathline[2]%
ext@arrow 0099xmathlinefill@#1#2%
newcommandxmathlinefill@%
arrowfill@relbarbigstrutrelbarrelbar
makeatother
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10 dx &=int (textcolorred
x^3+1)^10 textcolorblue3x^2 dx
quadxmathlinetextcolorCrimsonsubstitutionquadcolorboxNavajoWhite! 60$beginaligned u & = x^3 + 1 \ du & =3x^2,dx endaligned $ \%
&=int textcolorredu^10
textcolorbluedu
endalign*
enddocument

add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "85"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f479930%2fcomment-box-for-substitution-method-of-integrals%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Using tikzmark, it is not so difficult:
documentclassarticle
usepackageamsmath, mathtools,tikz
usetikzlibrarytikzmark,calc
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10 dx &=int (textcolorred x^3+1)^10 textcolorblue3x^2 dx tikzmarkeqt\
&=int textcolorredu^10textcolorbluedu
endalign*
begintikzpicture[overlay, remember picture]
coordinate (x) at ($(pic cs:eqt)+(1,0)$);
draw (x)--($(x)+(3,0)$);
draw[red] (x) node[above right] Substitution;
draw ($(x)+(3,0)$) node[right,draw,fill=orange!50] %
% Remove `draw' option if you don't want the box
$beginaligned
u&=x^3+1,\
du&=3x^2dx
endaligned$;
endtikzpicture
enddocument

This very nice and creative solution is by @marmot:
documentclass[fleqn]article
usepackageamsmath,tikz
usetikzlibrarytikzmark
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10,mathrmdx
&tikzmarknodeeq1=int (textcolorred x^3+1)^10
textcolorblue3x^2, mathrmdx \
&tikzmarknodeeq2=int textcolorredu^10,textcolorbluemathrmdu
endalign*
begintikzpicture[overlay, remember picture]
path (eq1) -- (eq2) coordinate[midway] (aux);
draw[latex-] (eq2) -- (aux) -- ++ (5,0) node[above left] substitute
node[right,fill=orange!30] %
$beginaligned
u&=x^3+1\
mathrmdu&=3x^2,mathrmdx
endaligned$;
endtikzpicture
enddocument

add a comment |
Using tikzmark, it is not so difficult:
documentclassarticle
usepackageamsmath, mathtools,tikz
usetikzlibrarytikzmark,calc
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10 dx &=int (textcolorred x^3+1)^10 textcolorblue3x^2 dx tikzmarkeqt\
&=int textcolorredu^10textcolorbluedu
endalign*
begintikzpicture[overlay, remember picture]
coordinate (x) at ($(pic cs:eqt)+(1,0)$);
draw (x)--($(x)+(3,0)$);
draw[red] (x) node[above right] Substitution;
draw ($(x)+(3,0)$) node[right,draw,fill=orange!50] %
% Remove `draw' option if you don't want the box
$beginaligned
u&=x^3+1,\
du&=3x^2dx
endaligned$;
endtikzpicture
enddocument

This very nice and creative solution is by @marmot:
documentclass[fleqn]article
usepackageamsmath,tikz
usetikzlibrarytikzmark
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10,mathrmdx
&tikzmarknodeeq1=int (textcolorred x^3+1)^10
textcolorblue3x^2, mathrmdx \
&tikzmarknodeeq2=int textcolorredu^10,textcolorbluemathrmdu
endalign*
begintikzpicture[overlay, remember picture]
path (eq1) -- (eq2) coordinate[midway] (aux);
draw[latex-] (eq2) -- (aux) -- ++ (5,0) node[above left] substitute
node[right,fill=orange!30] %
$beginaligned
u&=x^3+1\
mathrmdu&=3x^2,mathrmdx
endaligned$;
endtikzpicture
enddocument

add a comment |
Using tikzmark, it is not so difficult:
documentclassarticle
usepackageamsmath, mathtools,tikz
usetikzlibrarytikzmark,calc
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10 dx &=int (textcolorred x^3+1)^10 textcolorblue3x^2 dx tikzmarkeqt\
&=int textcolorredu^10textcolorbluedu
endalign*
begintikzpicture[overlay, remember picture]
coordinate (x) at ($(pic cs:eqt)+(1,0)$);
draw (x)--($(x)+(3,0)$);
draw[red] (x) node[above right] Substitution;
draw ($(x)+(3,0)$) node[right,draw,fill=orange!50] %
% Remove `draw' option if you don't want the box
$beginaligned
u&=x^3+1,\
du&=3x^2dx
endaligned$;
endtikzpicture
enddocument

This very nice and creative solution is by @marmot:
documentclass[fleqn]article
usepackageamsmath,tikz
usetikzlibrarytikzmark
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10,mathrmdx
&tikzmarknodeeq1=int (textcolorred x^3+1)^10
textcolorblue3x^2, mathrmdx \
&tikzmarknodeeq2=int textcolorredu^10,textcolorbluemathrmdu
endalign*
begintikzpicture[overlay, remember picture]
path (eq1) -- (eq2) coordinate[midway] (aux);
draw[latex-] (eq2) -- (aux) -- ++ (5,0) node[above left] substitute
node[right,fill=orange!30] %
$beginaligned
u&=x^3+1\
mathrmdu&=3x^2,mathrmdx
endaligned$;
endtikzpicture
enddocument

Using tikzmark, it is not so difficult:
documentclassarticle
usepackageamsmath, mathtools,tikz
usetikzlibrarytikzmark,calc
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10 dx &=int (textcolorred x^3+1)^10 textcolorblue3x^2 dx tikzmarkeqt\
&=int textcolorredu^10textcolorbluedu
endalign*
begintikzpicture[overlay, remember picture]
coordinate (x) at ($(pic cs:eqt)+(1,0)$);
draw (x)--($(x)+(3,0)$);
draw[red] (x) node[above right] Substitution;
draw ($(x)+(3,0)$) node[right,draw,fill=orange!50] %
% Remove `draw' option if you don't want the box
$beginaligned
u&=x^3+1,\
du&=3x^2dx
endaligned$;
endtikzpicture
enddocument

This very nice and creative solution is by @marmot:
documentclass[fleqn]article
usepackageamsmath,tikz
usetikzlibrarytikzmark
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10,mathrmdx
&tikzmarknodeeq1=int (textcolorred x^3+1)^10
textcolorblue3x^2, mathrmdx \
&tikzmarknodeeq2=int textcolorredu^10,textcolorbluemathrmdu
endalign*
begintikzpicture[overlay, remember picture]
path (eq1) -- (eq2) coordinate[midway] (aux);
draw[latex-] (eq2) -- (aux) -- ++ (5,0) node[above left] substitute
node[right,fill=orange!30] %
$beginaligned
u&=x^3+1\
mathrmdu&=3x^2,mathrmdx
endaligned$;
endtikzpicture
enddocument

edited Mar 17 at 15:42
answered Mar 17 at 14:35
JouleVJouleV
13.7k22664
13.7k22664
add a comment |
add a comment |
Without tikz, I define an extensible xmathline, centred on the math axis, which accepts writing above and below it, like xrightarrow, and add a simple colorbox:
documentclass[svgnames]article
usepackageamsmath, mathtools,tikz
usepackagexcolor
usepackagebigstrut
newcommandxmathline[2]%
ext@arrow 0099xmathlinefill@#1#2%
newcommandxmathlinefill@%
arrowfill@relbarbigstrutrelbarrelbar
makeatother
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10 dx &=int (textcolorred
x^3+1)^10 textcolorblue3x^2 dx
quadxmathlinetextcolorCrimsonsubstitutionquadcolorboxNavajoWhite! 60$beginaligned u & = x^3 + 1 \ du & =3x^2,dx endaligned $ \%
&=int textcolorredu^10
textcolorbluedu
endalign*
enddocument

add a comment |
Without tikz, I define an extensible xmathline, centred on the math axis, which accepts writing above and below it, like xrightarrow, and add a simple colorbox:
documentclass[svgnames]article
usepackageamsmath, mathtools,tikz
usepackagexcolor
usepackagebigstrut
newcommandxmathline[2]%
ext@arrow 0099xmathlinefill@#1#2%
newcommandxmathlinefill@%
arrowfill@relbarbigstrutrelbarrelbar
makeatother
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10 dx &=int (textcolorred
x^3+1)^10 textcolorblue3x^2 dx
quadxmathlinetextcolorCrimsonsubstitutionquadcolorboxNavajoWhite! 60$beginaligned u & = x^3 + 1 \ du & =3x^2,dx endaligned $ \%
&=int textcolorredu^10
textcolorbluedu
endalign*
enddocument

add a comment |
Without tikz, I define an extensible xmathline, centred on the math axis, which accepts writing above and below it, like xrightarrow, and add a simple colorbox:
documentclass[svgnames]article
usepackageamsmath, mathtools,tikz
usepackagexcolor
usepackagebigstrut
newcommandxmathline[2]%
ext@arrow 0099xmathlinefill@#1#2%
newcommandxmathlinefill@%
arrowfill@relbarbigstrutrelbarrelbar
makeatother
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10 dx &=int (textcolorred
x^3+1)^10 textcolorblue3x^2 dx
quadxmathlinetextcolorCrimsonsubstitutionquadcolorboxNavajoWhite! 60$beginaligned u & = x^3 + 1 \ du & =3x^2,dx endaligned $ \%
&=int textcolorredu^10
textcolorbluedu
endalign*
enddocument

Without tikz, I define an extensible xmathline, centred on the math axis, which accepts writing above and below it, like xrightarrow, and add a simple colorbox:
documentclass[svgnames]article
usepackageamsmath, mathtools,tikz
usepackagexcolor
usepackagebigstrut
newcommandxmathline[2]%
ext@arrow 0099xmathlinefill@#1#2%
newcommandxmathlinefill@%
arrowfill@relbarbigstrutrelbarrelbar
makeatother
begindocument
beginalign*
displaystyleint 3x^2(x^3+1)^10 dx &=int (textcolorred
x^3+1)^10 textcolorblue3x^2 dx
quadxmathlinetextcolorCrimsonsubstitutionquadcolorboxNavajoWhite! 60$beginaligned u & = x^3 + 1 \ du & =3x^2,dx endaligned $ \%
&=int textcolorredu^10
textcolorbluedu
endalign*
enddocument

edited Mar 17 at 15:51
answered Mar 17 at 15:14
BernardBernard
176k778210
176k778210
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f479930%2fcomment-box-for-substitution-method-of-integrals%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown