How to display sine squared more compactly Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Styling very long index entries to look more aestheticHow to make the hyphen show right in the middle of the paragraph title and its contentChange display style in xlop multiplicationImprove output formatExcessive spacing between lines in definitionLong formatting yields awful tableHow do I center a Large equation in display mode?Using fancyhdr, how to bump up minipage beneath line and more evenly extend line?how to decrease space between an aligned equation, intertextHow can I make tables, matrices, and chemical equations smaller
How should I respond to a player wanting to catch a sword between their hands?
What is the electric potential inside a point charge?
Stars Make Stars
The following signatures were invalid: EXPKEYSIG 1397BC53640DB551
What LEGO pieces have "real-world" functionality?
Training a classifier when some of the features are unknown
grandmas drink with lemon juice
Replacing HDD with SSD; what about non-APFS/APFS?
When communicating altitude with a '9' in it, should it be pronounced "nine hundred" or "niner hundred"?
What do you call the holes in a flute?
How do you clear the ApexPages.getMessages() collection in a test?
What would be Julian Assange's expected punishment, on the current English criminal law?
What can I do if my MacBook isn’t charging but already ran out?
What is the order of Mitzvot in Rambam's Sefer Hamitzvot?
Mortgage adviser recommends a longer term than necessary combined with overpayments
If I can make up priors, why can't I make up posteriors?
Direct Experience of Meditation
How to set letter above or below the symbol?
Classification of bundles, Postnikov towers, obstruction theory, local coefficients
Is it possible to ask for a hotel room without minibar/extra services?
How can I make names more distinctive without making them longer?
Blender game recording at the wrong time
New Order #5: where Fibonacci and Beatty meet at Wythoff
Do working physicists consider Newtonian mechanics to be "falsified"?
How to display sine squared more compactly
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Styling very long index entries to look more aestheticHow to make the hyphen show right in the middle of the paragraph title and its contentChange display style in xlop multiplicationImprove output formatExcessive spacing between lines in definitionLong formatting yields awful tableHow do I center a Large equation in display mode?Using fancyhdr, how to bump up minipage beneath line and more evenly extend line?how to decrease space between an aligned equation, intertextHow can I make tables, matrices, and chemical equations smaller
If I have:
sin ^2(theta )
My output is:
This output just have too much space between the power and the parenthesis. How could I change this?
formatting
add a comment |
If I have:
sin ^2(theta )
My output is:
This output just have too much space between the power and the parenthesis. How could I change this?
formatting
I wouldn't recommend it, but thatnath
package solves this problem if you useleft(
...right)
.
– Werner
Dec 1 '14 at 17:31
add a comment |
If I have:
sin ^2(theta )
My output is:
This output just have too much space between the power and the parenthesis. How could I change this?
formatting
If I have:
sin ^2(theta )
My output is:
This output just have too much space between the power and the parenthesis. How could I change this?
formatting
formatting
asked Dec 1 '14 at 16:24
Giovanni FormighieriGiovanni Formighieri
160114
160114
I wouldn't recommend it, but thatnath
package solves this problem if you useleft(
...right)
.
– Werner
Dec 1 '14 at 17:31
add a comment |
I wouldn't recommend it, but thatnath
package solves this problem if you useleft(
...right)
.
– Werner
Dec 1 '14 at 17:31
I wouldn't recommend it, but that
nath
package solves this problem if you use left(
...right)
.– Werner
Dec 1 '14 at 17:31
I wouldn't recommend it, but that
nath
package solves this problem if you use left(
...right)
.– Werner
Dec 1 '14 at 17:31
add a comment |
2 Answers
2
active
oldest
votes
I can reproduce your picture only if I add left
and right
in front of the parentheses.
So just don't use them.
documentclassarticle
begindocument
$sin^2theta$
$sin^2(theta)$
$sin^2left(thetaright)$
enddocument
By the way, without parentheses it's even better.
1
That raises the question, what to do ifleft
...right
is needed for a complicated argument? If we are lucky, it is a fraction and again paraentheses can be dropped.
– Hagen von Eitzen
Dec 1 '14 at 23:03
@HagenvonEitzenleft
andright
are not needed: in cases like this,biggl
andbiggr
(orBigl
andBigr
) are better. With themleftright
package and itsmleft
andmright
commands, the additional space is suppressed.
– egreg
Dec 1 '14 at 23:05
add a comment |
sin^2theta
is another option.
New contributor
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%2f214841%2fhow-to-display-sine-squared-more-compactly%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
I can reproduce your picture only if I add left
and right
in front of the parentheses.
So just don't use them.
documentclassarticle
begindocument
$sin^2theta$
$sin^2(theta)$
$sin^2left(thetaright)$
enddocument
By the way, without parentheses it's even better.
1
That raises the question, what to do ifleft
...right
is needed for a complicated argument? If we are lucky, it is a fraction and again paraentheses can be dropped.
– Hagen von Eitzen
Dec 1 '14 at 23:03
@HagenvonEitzenleft
andright
are not needed: in cases like this,biggl
andbiggr
(orBigl
andBigr
) are better. With themleftright
package and itsmleft
andmright
commands, the additional space is suppressed.
– egreg
Dec 1 '14 at 23:05
add a comment |
I can reproduce your picture only if I add left
and right
in front of the parentheses.
So just don't use them.
documentclassarticle
begindocument
$sin^2theta$
$sin^2(theta)$
$sin^2left(thetaright)$
enddocument
By the way, without parentheses it's even better.
1
That raises the question, what to do ifleft
...right
is needed for a complicated argument? If we are lucky, it is a fraction and again paraentheses can be dropped.
– Hagen von Eitzen
Dec 1 '14 at 23:03
@HagenvonEitzenleft
andright
are not needed: in cases like this,biggl
andbiggr
(orBigl
andBigr
) are better. With themleftright
package and itsmleft
andmright
commands, the additional space is suppressed.
– egreg
Dec 1 '14 at 23:05
add a comment |
I can reproduce your picture only if I add left
and right
in front of the parentheses.
So just don't use them.
documentclassarticle
begindocument
$sin^2theta$
$sin^2(theta)$
$sin^2left(thetaright)$
enddocument
By the way, without parentheses it's even better.
I can reproduce your picture only if I add left
and right
in front of the parentheses.
So just don't use them.
documentclassarticle
begindocument
$sin^2theta$
$sin^2(theta)$
$sin^2left(thetaright)$
enddocument
By the way, without parentheses it's even better.
answered Dec 1 '14 at 16:28
egregegreg
734k8919333257
734k8919333257
1
That raises the question, what to do ifleft
...right
is needed for a complicated argument? If we are lucky, it is a fraction and again paraentheses can be dropped.
– Hagen von Eitzen
Dec 1 '14 at 23:03
@HagenvonEitzenleft
andright
are not needed: in cases like this,biggl
andbiggr
(orBigl
andBigr
) are better. With themleftright
package and itsmleft
andmright
commands, the additional space is suppressed.
– egreg
Dec 1 '14 at 23:05
add a comment |
1
That raises the question, what to do ifleft
...right
is needed for a complicated argument? If we are lucky, it is a fraction and again paraentheses can be dropped.
– Hagen von Eitzen
Dec 1 '14 at 23:03
@HagenvonEitzenleft
andright
are not needed: in cases like this,biggl
andbiggr
(orBigl
andBigr
) are better. With themleftright
package and itsmleft
andmright
commands, the additional space is suppressed.
– egreg
Dec 1 '14 at 23:05
1
1
That raises the question, what to do if
left
... right
is needed for a complicated argument? If we are lucky, it is a fraction and again paraentheses can be dropped.– Hagen von Eitzen
Dec 1 '14 at 23:03
That raises the question, what to do if
left
... right
is needed for a complicated argument? If we are lucky, it is a fraction and again paraentheses can be dropped.– Hagen von Eitzen
Dec 1 '14 at 23:03
@HagenvonEitzen
left
and right
are not needed: in cases like this, biggl
and biggr
(or Bigl
and Bigr
) are better. With the mleftright
package and its mleft
and mright
commands, the additional space is suppressed.– egreg
Dec 1 '14 at 23:05
@HagenvonEitzen
left
and right
are not needed: in cases like this, biggl
and biggr
(or Bigl
and Bigr
) are better. With the mleftright
package and its mleft
and mright
commands, the additional space is suppressed.– egreg
Dec 1 '14 at 23:05
add a comment |
sin^2theta
is another option.
New contributor
add a comment |
sin^2theta
is another option.
New contributor
add a comment |
sin^2theta
is another option.
New contributor
sin^2theta
is another option.
New contributor
New contributor
answered 5 mins ago
SaralSaral
11
11
New contributor
New contributor
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%2f214841%2fhow-to-display-sine-squared-more-compactly%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
I wouldn't recommend it, but that
nath
package solves this problem if you useleft(
...right)
.– Werner
Dec 1 '14 at 17:31