How can I write this formula?newline and italics added with leqWhy does widehat behave differently if I...
Why do Computer Science majors learn Calculus?
How to reduce LED flash rate (frequency)
Critique of timeline aesthetic
Who is the Umpire in this picture?
How to creep the reader out with what seems like a normal person?
Is there a way to get a compiler for the original B programming language?
Apply MapThread to all but one variable
Binary Numbers Magic Trick
What does KSP mean?
How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?
With a Canadian student visa, can I spend a night at Vancouver before continuing to Toronto?
Controversial area of mathematics
How could Tony Stark make this in Endgame?
Is there any limitation with Arduino Nano serial communication distance?
Phrase for the opposite of "foolproof"
What is the difference between `command a[bc]d` and `command `a{b,c}d`
how to sum variables from file in bash
Packing rectangles: Does rotation ever help?
Why isn't the definition of absolute value applied when squaring a radical containing a variable?
Please, smoke with good manners
Are Boeing 737-800’s grounded?
Stop and Take a Breath!
Error message with tabularx
What are the potential pitfalls when using metals as a currency?
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
17 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
17 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
17 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
17 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
17 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 21 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
17 mins ago