How to align items?
How I can write this:

I tried begin{align} but I can't write in it
$$
limsup_{|t|to 0}dfrac{}{}...
$$
I also tried begin{itemize} but the same thing I can't write something in the center.
horizontal-alignment
add a comment |
How I can write this:

I tried begin{align} but I can't write in it
$$
limsup_{|t|to 0}dfrac{}{}...
$$
I also tried begin{itemize} but the same thing I can't write something in the center.
horizontal-alignment
but how to align (1) (2) and (3) ?
– Poline Sandra
Mar 11 at 7:59
that is anenumeratelist just usebegin{enumerate} item There are... item there exists... item The function ... end{enumerate}
– David Carlisle
Mar 11 at 8:00
@DavidCarlisle IMHO it is rather anenumerate
– Denis
Mar 11 at 8:03
@Denis thanks just in time I could still edit:-)
– David Carlisle
Mar 11 at 8:04
add a comment |
How I can write this:

I tried begin{align} but I can't write in it
$$
limsup_{|t|to 0}dfrac{}{}...
$$
I also tried begin{itemize} but the same thing I can't write something in the center.
horizontal-alignment
How I can write this:

I tried begin{align} but I can't write in it
$$
limsup_{|t|to 0}dfrac{}{}...
$$
I also tried begin{itemize} but the same thing I can't write something in the center.
horizontal-alignment
horizontal-alignment
edited Mar 11 at 8:07
JouleV
6,68521951
6,68521951
asked Mar 11 at 7:46
Poline SandraPoline Sandra
83
83
but how to align (1) (2) and (3) ?
– Poline Sandra
Mar 11 at 7:59
that is anenumeratelist just usebegin{enumerate} item There are... item there exists... item The function ... end{enumerate}
– David Carlisle
Mar 11 at 8:00
@DavidCarlisle IMHO it is rather anenumerate
– Denis
Mar 11 at 8:03
@Denis thanks just in time I could still edit:-)
– David Carlisle
Mar 11 at 8:04
add a comment |
but how to align (1) (2) and (3) ?
– Poline Sandra
Mar 11 at 7:59
that is anenumeratelist just usebegin{enumerate} item There are... item there exists... item The function ... end{enumerate}
– David Carlisle
Mar 11 at 8:00
@DavidCarlisle IMHO it is rather anenumerate
– Denis
Mar 11 at 8:03
@Denis thanks just in time I could still edit:-)
– David Carlisle
Mar 11 at 8:04
but how to align (1) (2) and (3) ?
– Poline Sandra
Mar 11 at 7:59
but how to align (1) (2) and (3) ?
– Poline Sandra
Mar 11 at 7:59
that is an
enumerate list just use begin{enumerate} item There are... item there exists... item The function ... end{enumerate}– David Carlisle
Mar 11 at 8:00
that is an
enumerate list just use begin{enumerate} item There are... item there exists... item The function ... end{enumerate}– David Carlisle
Mar 11 at 8:00
@DavidCarlisle IMHO it is rather an
enumerate– Denis
Mar 11 at 8:03
@DavidCarlisle IMHO it is rather an
enumerate– Denis
Mar 11 at 8:03
@Denis thanks just in time I could still edit:-)
– David Carlisle
Mar 11 at 8:04
@Denis thanks just in time I could still edit:-)
– David Carlisle
Mar 11 at 8:04
add a comment |
1 Answer
1
active
oldest
votes
First of all: don't do this! LaTeX and MathJax are strangers, not friends!
Like this?
documentclass{article}
usepackage{enumerate}
usepackage{lipsum}
begin{document}
lipsum[1]
begin{enumerate}[(A)]
item Hello World
item begin{enumerate}[(1)]
item This is some math
[1+2=3qquad4+5=6]
item This is another item
item lipsum[2]
end{enumerate}
item Something more
end{enumerate}
end{document}

what it means lipsum[1]
– Poline Sandra
Mar 11 at 8:15
It is a placeholder for some blind text, i.e. getting some text displayed to show what it looks like, without having to type it out.
– Marie. P.
Mar 11 at 8:16
@PolineSandra It is the first paragraph of the famous document named "Lipsum".
– JouleV
Mar 11 at 8:16
Why we put it ?
– Poline Sandra
Mar 11 at 9:24
@PolineSandra I put it to see what real-document text should look like. In your document, remove it and add your own paragraph. Read more here.
– JouleV
Mar 11 at 9:26
|
show 2 more comments
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%2f478842%2fhow-to-align-items%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
First of all: don't do this! LaTeX and MathJax are strangers, not friends!
Like this?
documentclass{article}
usepackage{enumerate}
usepackage{lipsum}
begin{document}
lipsum[1]
begin{enumerate}[(A)]
item Hello World
item begin{enumerate}[(1)]
item This is some math
[1+2=3qquad4+5=6]
item This is another item
item lipsum[2]
end{enumerate}
item Something more
end{enumerate}
end{document}

what it means lipsum[1]
– Poline Sandra
Mar 11 at 8:15
It is a placeholder for some blind text, i.e. getting some text displayed to show what it looks like, without having to type it out.
– Marie. P.
Mar 11 at 8:16
@PolineSandra It is the first paragraph of the famous document named "Lipsum".
– JouleV
Mar 11 at 8:16
Why we put it ?
– Poline Sandra
Mar 11 at 9:24
@PolineSandra I put it to see what real-document text should look like. In your document, remove it and add your own paragraph. Read more here.
– JouleV
Mar 11 at 9:26
|
show 2 more comments
First of all: don't do this! LaTeX and MathJax are strangers, not friends!
Like this?
documentclass{article}
usepackage{enumerate}
usepackage{lipsum}
begin{document}
lipsum[1]
begin{enumerate}[(A)]
item Hello World
item begin{enumerate}[(1)]
item This is some math
[1+2=3qquad4+5=6]
item This is another item
item lipsum[2]
end{enumerate}
item Something more
end{enumerate}
end{document}

what it means lipsum[1]
– Poline Sandra
Mar 11 at 8:15
It is a placeholder for some blind text, i.e. getting some text displayed to show what it looks like, without having to type it out.
– Marie. P.
Mar 11 at 8:16
@PolineSandra It is the first paragraph of the famous document named "Lipsum".
– JouleV
Mar 11 at 8:16
Why we put it ?
– Poline Sandra
Mar 11 at 9:24
@PolineSandra I put it to see what real-document text should look like. In your document, remove it and add your own paragraph. Read more here.
– JouleV
Mar 11 at 9:26
|
show 2 more comments
First of all: don't do this! LaTeX and MathJax are strangers, not friends!
Like this?
documentclass{article}
usepackage{enumerate}
usepackage{lipsum}
begin{document}
lipsum[1]
begin{enumerate}[(A)]
item Hello World
item begin{enumerate}[(1)]
item This is some math
[1+2=3qquad4+5=6]
item This is another item
item lipsum[2]
end{enumerate}
item Something more
end{enumerate}
end{document}

First of all: don't do this! LaTeX and MathJax are strangers, not friends!
Like this?
documentclass{article}
usepackage{enumerate}
usepackage{lipsum}
begin{document}
lipsum[1]
begin{enumerate}[(A)]
item Hello World
item begin{enumerate}[(1)]
item This is some math
[1+2=3qquad4+5=6]
item This is another item
item lipsum[2]
end{enumerate}
item Something more
end{enumerate}
end{document}

edited Mar 11 at 9:31
answered Mar 11 at 8:04
JouleVJouleV
6,68521951
6,68521951
what it means lipsum[1]
– Poline Sandra
Mar 11 at 8:15
It is a placeholder for some blind text, i.e. getting some text displayed to show what it looks like, without having to type it out.
– Marie. P.
Mar 11 at 8:16
@PolineSandra It is the first paragraph of the famous document named "Lipsum".
– JouleV
Mar 11 at 8:16
Why we put it ?
– Poline Sandra
Mar 11 at 9:24
@PolineSandra I put it to see what real-document text should look like. In your document, remove it and add your own paragraph. Read more here.
– JouleV
Mar 11 at 9:26
|
show 2 more comments
what it means lipsum[1]
– Poline Sandra
Mar 11 at 8:15
It is a placeholder for some blind text, i.e. getting some text displayed to show what it looks like, without having to type it out.
– Marie. P.
Mar 11 at 8:16
@PolineSandra It is the first paragraph of the famous document named "Lipsum".
– JouleV
Mar 11 at 8:16
Why we put it ?
– Poline Sandra
Mar 11 at 9:24
@PolineSandra I put it to see what real-document text should look like. In your document, remove it and add your own paragraph. Read more here.
– JouleV
Mar 11 at 9:26
what it means lipsum[1]
– Poline Sandra
Mar 11 at 8:15
what it means lipsum[1]
– Poline Sandra
Mar 11 at 8:15
It is a placeholder for some blind text, i.e. getting some text displayed to show what it looks like, without having to type it out.
– Marie. P.
Mar 11 at 8:16
It is a placeholder for some blind text, i.e. getting some text displayed to show what it looks like, without having to type it out.
– Marie. P.
Mar 11 at 8:16
@PolineSandra It is the first paragraph of the famous document named "Lipsum".
– JouleV
Mar 11 at 8:16
@PolineSandra It is the first paragraph of the famous document named "Lipsum".
– JouleV
Mar 11 at 8:16
Why we put it ?
– Poline Sandra
Mar 11 at 9:24
Why we put it ?
– Poline Sandra
Mar 11 at 9:24
@PolineSandra I put it to see what real-document text should look like. In your document, remove it and add your own paragraph. Read more here.
– JouleV
Mar 11 at 9:26
@PolineSandra I put it to see what real-document text should look like. In your document, remove it and add your own paragraph. Read more here.
– JouleV
Mar 11 at 9:26
|
show 2 more comments
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%2f478842%2fhow-to-align-items%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
but how to align (1) (2) and (3) ?
– Poline Sandra
Mar 11 at 7:59
that is an
enumeratelist just usebegin{enumerate} item There are... item there exists... item The function ... end{enumerate}– David Carlisle
Mar 11 at 8:00
@DavidCarlisle IMHO it is rather an
enumerate– Denis
Mar 11 at 8:03
@Denis thanks just in time I could still edit:-)
– David Carlisle
Mar 11 at 8:04