how to write limit tends to variable $s_i$? The Next CEO of Stack OverflowHow can I write tilde ~ in math mode?How to write these symbols in Latex?Is there a method just write `____` to get a underline hphantom, which width is 4em?How to write checkmark in latexHow to write “ℰ”How should I write $x^*^2$How do I write Itô's with the special symbol?Write a $ currency symbolHow to write stylish letter and text with in the specific fashion?I want to write 'Đ'
Is a distribution that is normal, but highly skewed considered Gaussian?
How to invert MapIndexed on a ragged structure? How to construct a tree from rules?
Bartok - Syncopation (1): Meaning of notes in between Grand Staff
Can MTA send mail via a relay without being told so?
Can I use the load factor to estimate the lift?
Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis
Method for adding error messages to a dictionary given a key
0 rank tensor vs 1D vector
Does Germany produce more waste than the US?
Would a completely good Muggle be able to use a wand?
Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?
WOW air has ceased operation, can I get my tickets refunded?
Are police here, aren't itthey?
Why, when going from special to general relativity, do we just replace partial derivatives with covariant derivatives?
"misplaced omit" error when >centering columns
Why do remote US companies require working in the US?
What flight has the highest ratio of time difference to flight time?
Is there a difference between "Fahrstuhl" and "Aufzug"
How to avoid supervisors with prejudiced views?
Is there a way to save my career from absolute disaster?
Is it ever safe to open a suspicious HTML file (e.g. email attachment)?
Is wanting to ask what to write an indication that you need to change your story?
If Nick Fury and Coulson already knew about aliens (Kree and Skrull) why did they wait until Thor's appearance to start making weapons?
Running a General Election and the European Elections together
how to write limit tends to variable $s_i$?
The Next CEO of Stack OverflowHow can I write tilde ~ in math mode?How to write these symbols in Latex?Is there a method just write `____` to get a underline hphantom, which width is 4em?How to write checkmark in latexHow to write “ℰ”How should I write $x^*^2$How do I write Itô's with the special symbol?Write a $ currency symbolHow to write stylish letter and text with in the specific fashion?I want to write 'Đ'
I do not want to write limit tends to infinite, instead of infinite it should be variable:
$$lim_xtovariable f(x) = max(R)$$
How may I write in LaTeX code?
symbols
add a comment |
I do not want to write limit tends to infinite, instead of infinite it should be variable:
$$lim_xtovariable f(x) = max(R)$$
How may I write in LaTeX code?
symbols
2
Just replace variable with a space followed by the variable. Also, use [ and ] instead of $$
– JPi
Feb 13 at 13:03
add a comment |
I do not want to write limit tends to infinite, instead of infinite it should be variable:
$$lim_xtovariable f(x) = max(R)$$
How may I write in LaTeX code?
symbols
I do not want to write limit tends to infinite, instead of infinite it should be variable:
$$lim_xtovariable f(x) = max(R)$$
How may I write in LaTeX code?
symbols
symbols
edited Feb 13 at 13:05
Sigur
26.2k457142
26.2k457142
asked Feb 13 at 12:59
sanjay guptasanjay gupta
112
112
2
Just replace variable with a space followed by the variable. Also, use [ and ] instead of $$
– JPi
Feb 13 at 13:03
add a comment |
2
Just replace variable with a space followed by the variable. Also, use [ and ] instead of $$
– JPi
Feb 13 at 13:03
2
2
Just replace variable with a space followed by the variable. Also, use [ and ] instead of $$
– JPi
Feb 13 at 13:03
Just replace variable with a space followed by the variable. Also, use [ and ] instead of $$
– JPi
Feb 13 at 13:03
add a comment |
3 Answers
3
active
oldest
votes
Replace the usual infty
with your variable. Also better not use $$
and it should read max
:
documentclassarticle
begindocument
[
lim_xto a f(x) = max(R)
]
enddocument
add a comment |
Write
lim_xto s_if(x)
in math mode.
add a comment |
Here there is my proposal, you can use also rightarrow
instead of to
:
documentclassarticle
usepackageamsmath,verbatim
begindocument
beginverbatim
If you want use your formula as inline mathmode:
endverbatim
$lim_xrightarrow a f(x) = max(R)$
beginverbatim
Into an ambient equation you will have:
endverbatim
beginequation
lim_xrightarrow a f(x) = max(R)
endequation
enddocument
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%2f474691%2fhow-to-write-limit-tends-to-variable-s-i%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Replace the usual infty
with your variable. Also better not use $$
and it should read max
:
documentclassarticle
begindocument
[
lim_xto a f(x) = max(R)
]
enddocument
add a comment |
Replace the usual infty
with your variable. Also better not use $$
and it should read max
:
documentclassarticle
begindocument
[
lim_xto a f(x) = max(R)
]
enddocument
add a comment |
Replace the usual infty
with your variable. Also better not use $$
and it should read max
:
documentclassarticle
begindocument
[
lim_xto a f(x) = max(R)
]
enddocument
Replace the usual infty
with your variable. Also better not use $$
and it should read max
:
documentclassarticle
begindocument
[
lim_xto a f(x) = max(R)
]
enddocument
answered Feb 13 at 13:03
foofoo
4369
4369
add a comment |
add a comment |
Write
lim_xto s_if(x)
in math mode.
add a comment |
Write
lim_xto s_if(x)
in math mode.
add a comment |
Write
lim_xto s_if(x)
in math mode.
Write
lim_xto s_if(x)
in math mode.
edited Feb 15 at 0:49
answered Feb 13 at 21:43
Chris CusterChris Custer
1146
1146
add a comment |
add a comment |
Here there is my proposal, you can use also rightarrow
instead of to
:
documentclassarticle
usepackageamsmath,verbatim
begindocument
beginverbatim
If you want use your formula as inline mathmode:
endverbatim
$lim_xrightarrow a f(x) = max(R)$
beginverbatim
Into an ambient equation you will have:
endverbatim
beginequation
lim_xrightarrow a f(x) = max(R)
endequation
enddocument
add a comment |
Here there is my proposal, you can use also rightarrow
instead of to
:
documentclassarticle
usepackageamsmath,verbatim
begindocument
beginverbatim
If you want use your formula as inline mathmode:
endverbatim
$lim_xrightarrow a f(x) = max(R)$
beginverbatim
Into an ambient equation you will have:
endverbatim
beginequation
lim_xrightarrow a f(x) = max(R)
endequation
enddocument
add a comment |
Here there is my proposal, you can use also rightarrow
instead of to
:
documentclassarticle
usepackageamsmath,verbatim
begindocument
beginverbatim
If you want use your formula as inline mathmode:
endverbatim
$lim_xrightarrow a f(x) = max(R)$
beginverbatim
Into an ambient equation you will have:
endverbatim
beginequation
lim_xrightarrow a f(x) = max(R)
endequation
enddocument
Here there is my proposal, you can use also rightarrow
instead of to
:
documentclassarticle
usepackageamsmath,verbatim
begindocument
beginverbatim
If you want use your formula as inline mathmode:
endverbatim
$lim_xrightarrow a f(x) = max(R)$
beginverbatim
Into an ambient equation you will have:
endverbatim
beginequation
lim_xrightarrow a f(x) = max(R)
endequation
enddocument
answered 7 hours ago
SebastianoSebastiano
11.4k42164
11.4k42164
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%2f474691%2fhow-to-write-limit-tends-to-variable-s-i%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
2
Just replace variable with a space followed by the variable. Also, use [ and ] instead of $$
– JPi
Feb 13 at 13:03