How can I write this formula?newline and italics added with leqWhy does widehat behave differently if I...
How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?
Critique of timeline aesthetic
Why other Westeros houses don't use wildfire?
A Strange Latex Symbol
Is the 5 MB static resource size limit 5,242,880 bytes or 5,000,000 bytes?
Pass By Reference VS Pass by Value
Apply MapThread to all but one variable
Don’t seats that recline flat defeat the purpose of having seatbelts?
Was there a shared-world project before "Thieves World"?
Is there a way to get a compiler for the original B programming language?
Packing rectangles: Does rotation ever help?
Are Boeing 737-800’s grounded?
How did Captain America manage to do this?
Mac Pro install disk keeps ejecting itself
Shrinkwrap tetris shapes without scaling or diagonal shapes
What does KSP mean?
Why do games have consumables?
How do I deal with a coworker that keeps asking to make small superficial changes to a report, and it is seriously triggering my anxiety?
How can I place the product on a social media post better?
What does the "ep" capability mean?
What route did the Hindenburg take when traveling from Germany to the U.S.?
Controversial area of mathematics
Combinable filters
How to stop co-workers from teasing me because I know Russian?
How can I write this formula?
newline and italics added with leqWhy does widehat behave differently if I insert hspace{0pt}?Bold math inside of absolute value gives errormathpazo package and changing font within begin{equation} … end{equation}Symbol at the end of an environmentWriting math formula in LaTeX, 'undefined control sequence'Error with matrix: erraneous nestingHow to write this formula?How can I repeat a formula without copying itUsing printeranswers environment, how to print solutions in the box without the title “Solutions”
I wrote this it is the first equation it gives me an error I don't understand why
documentclass[12pt]{report}
usepackage{enumerate}
begin{document}
$$ maxdd(t) = maxlimits_{0leqtauleqt} dd(tau)$$`
end{document}
math-mode
add a comment |
I wrote this it is the first equation it gives me an error I don't understand why
documentclass[12pt]{report}
usepackage{enumerate}
begin{document}
$$ maxdd(t) = maxlimits_{0leqtauleqt} dd(tau)$$`
end{document}
math-mode
5
The index of max should end intauleq t}
(with a space). Unrelated: you shouldn't use the plain TeX construct$$ $$
but the LaTeX one[ ]
., to have a better vertical spacing.
– Bernard
Oct 16 '18 at 9:57
5
You should also remove an unnecessary accent'
at the end of your formula.
– Sebastiano
Oct 16 '18 at 10:43
As for the "why",limits
are only used with operator names (either those from the package or the ones declared withDeclareMathOperator*
)
– Weijun Zhou
22 mins ago
add a comment |
I wrote this it is the first equation it gives me an error I don't understand why
documentclass[12pt]{report}
usepackage{enumerate}
begin{document}
$$ maxdd(t) = maxlimits_{0leqtauleqt} dd(tau)$$`
end{document}
math-mode
I wrote this it is the first equation it gives me an error I don't understand why
documentclass[12pt]{report}
usepackage{enumerate}
begin{document}
$$ maxdd(t) = maxlimits_{0leqtauleqt} dd(tau)$$`
end{document}
math-mode
math-mode
edited Oct 16 '18 at 10:40
Sebastiano
11.7k42466
11.7k42466
asked Oct 16 '18 at 9:50
Tommaso DellolmoTommaso Dellolmo
1025
1025
5
The index of max should end intauleq t}
(with a space). Unrelated: you shouldn't use the plain TeX construct$$ $$
but the LaTeX one[ ]
., to have a better vertical spacing.
– Bernard
Oct 16 '18 at 9:57
5
You should also remove an unnecessary accent'
at the end of your formula.
– Sebastiano
Oct 16 '18 at 10:43
As for the "why",limits
are only used with operator names (either those from the package or the ones declared withDeclareMathOperator*
)
– Weijun Zhou
22 mins ago
add a comment |
5
The index of max should end intauleq t}
(with a space). Unrelated: you shouldn't use the plain TeX construct$$ $$
but the LaTeX one[ ]
., to have a better vertical spacing.
– Bernard
Oct 16 '18 at 9:57
5
You should also remove an unnecessary accent'
at the end of your formula.
– Sebastiano
Oct 16 '18 at 10:43
As for the "why",limits
are only used with operator names (either those from the package or the ones declared withDeclareMathOperator*
)
– Weijun Zhou
22 mins ago
5
5
The index of max should end in
tauleq t}
(with a space). Unrelated: you shouldn't use the plain TeX construct $$ $$
but the LaTeX one [ ]
., to have a better vertical spacing.– Bernard
Oct 16 '18 at 9:57
The index of max should end in
tauleq t}
(with a space). Unrelated: you shouldn't use the plain TeX construct $$ $$
but the LaTeX one [ ]
., to have a better vertical spacing.– Bernard
Oct 16 '18 at 9:57
5
5
You should also remove an unnecessary accent
'
at the end of your formula.– Sebastiano
Oct 16 '18 at 10:43
You should also remove an unnecessary accent
'
at the end of your formula.– Sebastiano
Oct 16 '18 at 10:43
As for the "why",
limits
are only used with operator names (either those from the package or the ones declared with DeclareMathOperator*
)– Weijun Zhou
22 mins ago
As for the "why",
limits
are only used with operator names (either those from the package or the ones declared with DeclareMathOperator*
)– Weijun Zhou
22 mins ago
add a comment |
1 Answer
1
active
oldest
votes
You have several issues in your code:
- Use
[
and]
for mathematical mode instead$$
. - The operater for max in written as
max
, for examplemax dd(t)
ormaxlimits
. - After an operator like
leq
you need a blank likeleq t
instead your wrongleqt
So with the complete code
documentclass[12pt]{report}
usepackage{enumerate}
begin{document}
[ max dd(t) = maxlimits_{0leqtauleq t} dd(tau) ]
end{document}
you get the result:
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%2f455384%2fhow-can-i-write-this-formula%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You have several issues in your code:
- Use
[
and]
for mathematical mode instead$$
. - The operater for max in written as
max
, for examplemax dd(t)
ormaxlimits
. - After an operator like
leq
you need a blank likeleq t
instead your wrongleqt
So with the complete code
documentclass[12pt]{report}
usepackage{enumerate}
begin{document}
[ max dd(t) = maxlimits_{0leqtauleq t} dd(tau) ]
end{document}
you get the result:
add a comment |
You have several issues in your code:
- Use
[
and]
for mathematical mode instead$$
. - The operater for max in written as
max
, for examplemax dd(t)
ormaxlimits
. - After an operator like
leq
you need a blank likeleq t
instead your wrongleqt
So with the complete code
documentclass[12pt]{report}
usepackage{enumerate}
begin{document}
[ max dd(t) = maxlimits_{0leqtauleq t} dd(tau) ]
end{document}
you get the result:
add a comment |
You have several issues in your code:
- Use
[
and]
for mathematical mode instead$$
. - The operater for max in written as
max
, for examplemax dd(t)
ormaxlimits
. - After an operator like
leq
you need a blank likeleq t
instead your wrongleqt
So with the complete code
documentclass[12pt]{report}
usepackage{enumerate}
begin{document}
[ max dd(t) = maxlimits_{0leqtauleq t} dd(tau) ]
end{document}
you get the result:
You have several issues in your code:
- Use
[
and]
for mathematical mode instead$$
. - The operater for max in written as
max
, for examplemax dd(t)
ormaxlimits
. - After an operator like
leq
you need a blank likeleq t
instead your wrongleqt
So with the complete code
documentclass[12pt]{report}
usepackage{enumerate}
begin{document}
[ max dd(t) = maxlimits_{0leqtauleq t} dd(tau) ]
end{document}
you get the result:
answered 25 mins ago
KurtKurt
42.2k950166
42.2k950166
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%2f455384%2fhow-can-i-write-this-formula%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
5
The index of max should end in
tauleq t}
(with a space). Unrelated: you shouldn't use the plain TeX construct$$ $$
but the LaTeX one[ ]
., to have a better vertical spacing.– Bernard
Oct 16 '18 at 9:57
5
You should also remove an unnecessary accent
'
at the end of your formula.– Sebastiano
Oct 16 '18 at 10:43
As for the "why",
limits
are only used with operator names (either those from the package or the ones declared withDeclareMathOperator*
)– Weijun Zhou
22 mins ago