How to display sine squared more compactly Announcing the arrival of Valued Associate #679:...
Cold is to Refrigerator as warm is to?
What do you call the holes in a flute?
Is it possible to ask for a hotel room without minibar/extra services?
Do working physicists consider Newtonian mechanics to be "falsified"?
Unable to start mainnet node docker container
grandmas drink with lemon juice
Two different pronunciation of "понял"
3 doors, three guards, one stone
How to say 'striped' in Latin
How can you insert a "times/divide" symbol similar to the "plus/minus" (±) one?
Can I add database to AWS RDS MySQL without creating new instance?
New Order #5: where Fibonacci and Beatty meet at Wythoff
What do you call a plan that's an alternative plan in case your initial plan fails?
How do I keep my slimes from escaping their pens?
Autumning in love
If I can make up priors, why can't I make up posteriors?
What is the order of Mitzvot in Rambam's Sefer Hamitzvot?
Single author papers against my advisor's will?
Fishing simulator
What would be Julian Assange's expected punishment, on the current English criminal law?
Statistical model of ligand substitution
What do I do if technical issues prevent me from filing my return on time?
The following signatures were invalid: EXPKEYSIG 1397BC53640DB551
Why does this iterative way of solving of equation work?
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.
documentclass{article}
begin{document}
$sin^{2}theta$
$sin^{2}(theta)$
$sin^{2}left(thetaright)$
end{document}
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
and if you add a parenthesis, then you even get the desired output
– thymaro
1 min 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/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.
documentclass{article}
begin{document}
$sin^{2}theta$
$sin^{2}(theta)$
$sin^{2}left(thetaright)$
end{document}
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.
documentclass{article}
begin{document}
$sin^{2}theta$
$sin^{2}(theta)$
$sin^{2}left(thetaright)$
end{document}
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.
documentclass{article}
begin{document}
$sin^{2}theta$
$sin^{2}(theta)$
$sin^{2}left(thetaright)$
end{document}
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.
documentclass{article}
begin{document}
$sin^{2}theta$
$sin^{2}(theta)$
$sin^{2}left(thetaright)$
end{document}
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
and if you add a parenthesis, then you even get the desired output
– thymaro
1 min ago
add a comment |
sin{^2theta}
is another option.
New contributor
and if you add a parenthesis, then you even get the desired output
– thymaro
1 min ago
add a comment |
sin{^2theta}
is another option.
New contributor
sin{^2theta}
is another option.
New contributor
New contributor
answered 12 mins ago
SaralSaral
11
11
New contributor
New contributor
and if you add a parenthesis, then you even get the desired output
– thymaro
1 min ago
add a comment |
and if you add a parenthesis, then you even get the desired output
– thymaro
1 min ago
and if you add a parenthesis, then you even get the desired output
– thymaro
1 min ago
and if you add a parenthesis, then you even get the desired output
– thymaro
1 min 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%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