Justify of equation to better explanationHow to justify text that contains inline-style equations?Better spacing for justified text by increasing hyphenationHow to justify only the first column of this user-defined tabular environment **while using ragged2e**? [UPDATED]How to justify the text in LaTex reports?Justifying table text to match text margins?Is there an automatic way to justify a text vertically?
Is a list of the most common English words copyrightable?
How can I communicate feelings to players without impacting their agency?
Is the tap water in France safe to drink?
Can we not simply connect a battery to a RAM to prevent data loss during power cuts?
Is it safe to pay bills over satellite internet?
In the twin paradox does the returning twin also come back permanently length contracted flatter than the twin on earth?
What does "stirring tanks" mean?
What is the gold linker?
Why do Computer Science degrees contain a high proportion of mathematics?
Why does Principal Vagina say, "no relation" after introducing himself?
Code Golf Measurer © 2019
A man condemned to serve his sentence in other times
What does this text mean with capitalized letters?
Is it a bad idea to get a PhD?
How to determine passing chords
When to use the gestalt principle of common region?
Advisor asked for my entire slide presentation so she could give the presentation at an international conference
This is a Noteworthy Riddle
How do I copy an installed steam game on my PC to an external hard drive?
How are Aircraft Noses Designed?
Meaning of 'pound' in "felt a fury that was not his own pound through his body"
Is wiring laying alongside an attic access opening a code violation or safety concern?
Why do these two ways of understanding constant acceleration give different results?
What does the British parliament hope to achieve by requesting a third Brexit extension?
Justify of equation to better explanation
How to justify text that contains inline-style equations?Better spacing for justified text by increasing hyphenationHow to justify only the first column of this user-defined tabular environment **while using ragged2e**? [UPDATED]How to justify the text in LaTex reports?Justifying table text to match text margins?Is there an automatic way to justify a text vertically?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I am trying to create pure inequality like this
But I have:
documentclassarticle
usepackageamsmath
begindocument
[
intf_i leq
||f_1||_p_1
left[
prod_i=2^m+1
left(
int|f_i|^p_1/(p_1-1) p_i(p_1-1)/p_1dmu
right)^p_1/p_i(p_1-1)
right]^(p_1-1)/p_1
]
[
= ||f_1||_p_1
prod_i=2^m+1
left(
int|f_i|^p_i dmu
right)^frac1p_i
]
enddocument
justification
add a comment
|
I am trying to create pure inequality like this
But I have:
documentclassarticle
usepackageamsmath
begindocument
[
intf_i leq
||f_1||_p_1
left[
prod_i=2^m+1
left(
int|f_i|^p_1/(p_1-1) p_i(p_1-1)/p_1dmu
right)^p_1/p_i(p_1-1)
right]^(p_1-1)/p_1
]
[
= ||f_1||_p_1
prod_i=2^m+1
left(
int|f_i|^p_i dmu
right)^frac1p_i
]
enddocument
justification
add a comment
|
I am trying to create pure inequality like this
But I have:
documentclassarticle
usepackageamsmath
begindocument
[
intf_i leq
||f_1||_p_1
left[
prod_i=2^m+1
left(
int|f_i|^p_1/(p_1-1) p_i(p_1-1)/p_1dmu
right)^p_1/p_i(p_1-1)
right]^(p_1-1)/p_1
]
[
= ||f_1||_p_1
prod_i=2^m+1
left(
int|f_i|^p_i dmu
right)^frac1p_i
]
enddocument
justification
I am trying to create pure inequality like this
But I have:
documentclassarticle
usepackageamsmath
begindocument
[
intf_i leq
||f_1||_p_1
left[
prod_i=2^m+1
left(
int|f_i|^p_1/(p_1-1) p_i(p_1-1)/p_1dmu
right)^p_1/p_i(p_1-1)
right]^(p_1-1)/p_1
]
[
= ||f_1||_p_1
prod_i=2^m+1
left(
int|f_i|^p_i dmu
right)^frac1p_i
]
enddocument
justification
justification
asked 9 hours ago
Martin Inf1n1tyMartin Inf1n1ty
256 bronze badges
256 bronze badges
add a comment
|
add a comment
|
2 Answers
2
active
oldest
votes
Some suggestions:
use an
align
environment to contain both rows of the display-math materialuse a
notag
instruction in the first row to suppress the typesetting of an equation numberuse
biggl
andbiggr
for all large parentheses and bracketsload the
mathtools
package -- a superset of theamsmath
package -- and define macros calledabs
andnorm
. This'll make reading the input code much easieroptional: place brackets around the exponent of
absf_i
to help readers figure out what's going on
documentclassarticle
usepackagemathtools % for 'DeclarePairedDelimiter' macro
DeclarePairedDelimiterabslvertrvert
DeclarePairedDelimiternormlVertrVert
begindocument
beginalign
int prod_i=1^m+1 absf_i,dmu
&leq normf_1_p_1
biggl[,
prod_i=2^m+1
biggl(
int|f_i|^[p_1/(p_1-1) p_i(p_1-1)/p_1],dmu
biggr)^!p_1/p_i(p_1-1)
,biggr]^(p_1-1)/p_1notag\
&= normf_1_p_1
prod_i=2^m+1
biggl(
int|f_i|^p_i ,dmu
biggr)^!1/p_i
endalign
enddocument
Many thanks @mico !
– Martin Inf1n1ty
8 hours ago
add a comment
|
With the help of split
and a slightly smaller margin using the geometry
package you can achieve the following output:
documentclassarticle
usepackagegeometry
usepackageamsmath
begindocument
beginequation
beginsplit
intf_i &leq
|f_1|_p_1
left[
prod_i=2^m+1
left(
int|f_i|^p_1/(p_1-1) p_i(p_1-1)/p_1dmu
right)^p_1/p_i(p_1-1)
right]^(p_1-1)/p_1\
&= |f_1|_p_1
prod_i=2^m+1
left(
int|f_i|^p_i dmu
right)^frac1p_i
endsplit
endequation
enddocument
2
Also, consider using| |
for the norm.
– Sigur
9 hours ago
@Sigur: Thanks for reminding me. I have incorporated that into my answer.
– leandriis
9 hours ago
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/4.0/"u003ecc by-sa 4.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%2f511477%2fjustify-of-equation-to-better-explanation%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
Some suggestions:
use an
align
environment to contain both rows of the display-math materialuse a
notag
instruction in the first row to suppress the typesetting of an equation numberuse
biggl
andbiggr
for all large parentheses and bracketsload the
mathtools
package -- a superset of theamsmath
package -- and define macros calledabs
andnorm
. This'll make reading the input code much easieroptional: place brackets around the exponent of
absf_i
to help readers figure out what's going on
documentclassarticle
usepackagemathtools % for 'DeclarePairedDelimiter' macro
DeclarePairedDelimiterabslvertrvert
DeclarePairedDelimiternormlVertrVert
begindocument
beginalign
int prod_i=1^m+1 absf_i,dmu
&leq normf_1_p_1
biggl[,
prod_i=2^m+1
biggl(
int|f_i|^[p_1/(p_1-1) p_i(p_1-1)/p_1],dmu
biggr)^!p_1/p_i(p_1-1)
,biggr]^(p_1-1)/p_1notag\
&= normf_1_p_1
prod_i=2^m+1
biggl(
int|f_i|^p_i ,dmu
biggr)^!1/p_i
endalign
enddocument
Many thanks @mico !
– Martin Inf1n1ty
8 hours ago
add a comment
|
Some suggestions:
use an
align
environment to contain both rows of the display-math materialuse a
notag
instruction in the first row to suppress the typesetting of an equation numberuse
biggl
andbiggr
for all large parentheses and bracketsload the
mathtools
package -- a superset of theamsmath
package -- and define macros calledabs
andnorm
. This'll make reading the input code much easieroptional: place brackets around the exponent of
absf_i
to help readers figure out what's going on
documentclassarticle
usepackagemathtools % for 'DeclarePairedDelimiter' macro
DeclarePairedDelimiterabslvertrvert
DeclarePairedDelimiternormlVertrVert
begindocument
beginalign
int prod_i=1^m+1 absf_i,dmu
&leq normf_1_p_1
biggl[,
prod_i=2^m+1
biggl(
int|f_i|^[p_1/(p_1-1) p_i(p_1-1)/p_1],dmu
biggr)^!p_1/p_i(p_1-1)
,biggr]^(p_1-1)/p_1notag\
&= normf_1_p_1
prod_i=2^m+1
biggl(
int|f_i|^p_i ,dmu
biggr)^!1/p_i
endalign
enddocument
Many thanks @mico !
– Martin Inf1n1ty
8 hours ago
add a comment
|
Some suggestions:
use an
align
environment to contain both rows of the display-math materialuse a
notag
instruction in the first row to suppress the typesetting of an equation numberuse
biggl
andbiggr
for all large parentheses and bracketsload the
mathtools
package -- a superset of theamsmath
package -- and define macros calledabs
andnorm
. This'll make reading the input code much easieroptional: place brackets around the exponent of
absf_i
to help readers figure out what's going on
documentclassarticle
usepackagemathtools % for 'DeclarePairedDelimiter' macro
DeclarePairedDelimiterabslvertrvert
DeclarePairedDelimiternormlVertrVert
begindocument
beginalign
int prod_i=1^m+1 absf_i,dmu
&leq normf_1_p_1
biggl[,
prod_i=2^m+1
biggl(
int|f_i|^[p_1/(p_1-1) p_i(p_1-1)/p_1],dmu
biggr)^!p_1/p_i(p_1-1)
,biggr]^(p_1-1)/p_1notag\
&= normf_1_p_1
prod_i=2^m+1
biggl(
int|f_i|^p_i ,dmu
biggr)^!1/p_i
endalign
enddocument
Some suggestions:
use an
align
environment to contain both rows of the display-math materialuse a
notag
instruction in the first row to suppress the typesetting of an equation numberuse
biggl
andbiggr
for all large parentheses and bracketsload the
mathtools
package -- a superset of theamsmath
package -- and define macros calledabs
andnorm
. This'll make reading the input code much easieroptional: place brackets around the exponent of
absf_i
to help readers figure out what's going on
documentclassarticle
usepackagemathtools % for 'DeclarePairedDelimiter' macro
DeclarePairedDelimiterabslvertrvert
DeclarePairedDelimiternormlVertrVert
begindocument
beginalign
int prod_i=1^m+1 absf_i,dmu
&leq normf_1_p_1
biggl[,
prod_i=2^m+1
biggl(
int|f_i|^[p_1/(p_1-1) p_i(p_1-1)/p_1],dmu
biggr)^!p_1/p_i(p_1-1)
,biggr]^(p_1-1)/p_1notag\
&= normf_1_p_1
prod_i=2^m+1
biggl(
int|f_i|^p_i ,dmu
biggr)^!1/p_i
endalign
enddocument
edited 7 hours ago
answered 8 hours ago
MicoMico
307k33 gold badges424 silver badges836 bronze badges
307k33 gold badges424 silver badges836 bronze badges
Many thanks @mico !
– Martin Inf1n1ty
8 hours ago
add a comment
|
Many thanks @mico !
– Martin Inf1n1ty
8 hours ago
Many thanks @mico !
– Martin Inf1n1ty
8 hours ago
Many thanks @mico !
– Martin Inf1n1ty
8 hours ago
add a comment
|
With the help of split
and a slightly smaller margin using the geometry
package you can achieve the following output:
documentclassarticle
usepackagegeometry
usepackageamsmath
begindocument
beginequation
beginsplit
intf_i &leq
|f_1|_p_1
left[
prod_i=2^m+1
left(
int|f_i|^p_1/(p_1-1) p_i(p_1-1)/p_1dmu
right)^p_1/p_i(p_1-1)
right]^(p_1-1)/p_1\
&= |f_1|_p_1
prod_i=2^m+1
left(
int|f_i|^p_i dmu
right)^frac1p_i
endsplit
endequation
enddocument
2
Also, consider using| |
for the norm.
– Sigur
9 hours ago
@Sigur: Thanks for reminding me. I have incorporated that into my answer.
– leandriis
9 hours ago
add a comment
|
With the help of split
and a slightly smaller margin using the geometry
package you can achieve the following output:
documentclassarticle
usepackagegeometry
usepackageamsmath
begindocument
beginequation
beginsplit
intf_i &leq
|f_1|_p_1
left[
prod_i=2^m+1
left(
int|f_i|^p_1/(p_1-1) p_i(p_1-1)/p_1dmu
right)^p_1/p_i(p_1-1)
right]^(p_1-1)/p_1\
&= |f_1|_p_1
prod_i=2^m+1
left(
int|f_i|^p_i dmu
right)^frac1p_i
endsplit
endequation
enddocument
2
Also, consider using| |
for the norm.
– Sigur
9 hours ago
@Sigur: Thanks for reminding me. I have incorporated that into my answer.
– leandriis
9 hours ago
add a comment
|
With the help of split
and a slightly smaller margin using the geometry
package you can achieve the following output:
documentclassarticle
usepackagegeometry
usepackageamsmath
begindocument
beginequation
beginsplit
intf_i &leq
|f_1|_p_1
left[
prod_i=2^m+1
left(
int|f_i|^p_1/(p_1-1) p_i(p_1-1)/p_1dmu
right)^p_1/p_i(p_1-1)
right]^(p_1-1)/p_1\
&= |f_1|_p_1
prod_i=2^m+1
left(
int|f_i|^p_i dmu
right)^frac1p_i
endsplit
endequation
enddocument
With the help of split
and a slightly smaller margin using the geometry
package you can achieve the following output:
documentclassarticle
usepackagegeometry
usepackageamsmath
begindocument
beginequation
beginsplit
intf_i &leq
|f_1|_p_1
left[
prod_i=2^m+1
left(
int|f_i|^p_1/(p_1-1) p_i(p_1-1)/p_1dmu
right)^p_1/p_i(p_1-1)
right]^(p_1-1)/p_1\
&= |f_1|_p_1
prod_i=2^m+1
left(
int|f_i|^p_i dmu
right)^frac1p_i
endsplit
endequation
enddocument
edited 9 hours ago
answered 9 hours ago
leandriisleandriis
21.6k1 gold badge12 silver badges41 bronze badges
21.6k1 gold badge12 silver badges41 bronze badges
2
Also, consider using| |
for the norm.
– Sigur
9 hours ago
@Sigur: Thanks for reminding me. I have incorporated that into my answer.
– leandriis
9 hours ago
add a comment
|
2
Also, consider using| |
for the norm.
– Sigur
9 hours ago
@Sigur: Thanks for reminding me. I have incorporated that into my answer.
– leandriis
9 hours ago
2
2
Also, consider using
| |
for the norm.– Sigur
9 hours ago
Also, consider using
| |
for the norm.– Sigur
9 hours ago
@Sigur: Thanks for reminding me. I have incorporated that into my answer.
– leandriis
9 hours ago
@Sigur: Thanks for reminding me. I have incorporated that into my answer.
– leandriis
9 hours ago
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%2f511477%2fjustify-of-equation-to-better-explanation%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