writing an enumerated list within a sentence
up vote
3
down vote
favorite
Can you please help me write an enumerated list which is in the same line and there is no line change between that and the rest of the text. E.g.,
We use three broad geographical regions, i.e., (i) the U.S., (ii)
current EU-27 countries, and (iii) all remaining countries.
enumerate inline
add a comment |
up vote
3
down vote
favorite
Can you please help me write an enumerated list which is in the same line and there is no line change between that and the rest of the text. E.g.,
We use three broad geographical regions, i.e., (i) the U.S., (ii)
current EU-27 countries, and (iii) all remaining countries.
enumerate inline
See, for instance, en.wikibooks.org/wiki/LaTeX/List_Structures#Inline_lists
– jubobs
Apr 3 '15 at 10:27
Welcome to TeX.SX! You can have a look at our starter guide to familiarize yourself further with our format.
– user11232
Apr 3 '15 at 11:49
Yes it works perfectly. I had to download a package. Thank you all! :)
– user75639
Apr 5 '15 at 17:13
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
Can you please help me write an enumerated list which is in the same line and there is no line change between that and the rest of the text. E.g.,
We use three broad geographical regions, i.e., (i) the U.S., (ii)
current EU-27 countries, and (iii) all remaining countries.
enumerate inline
Can you please help me write an enumerated list which is in the same line and there is no line change between that and the rest of the text. E.g.,
We use three broad geographical regions, i.e., (i) the U.S., (ii)
current EU-27 countries, and (iii) all remaining countries.
enumerate inline
enumerate inline
edited Apr 3 '15 at 10:38
user11232
asked Apr 3 '15 at 10:24
veni
162
162
See, for instance, en.wikibooks.org/wiki/LaTeX/List_Structures#Inline_lists
– jubobs
Apr 3 '15 at 10:27
Welcome to TeX.SX! You can have a look at our starter guide to familiarize yourself further with our format.
– user11232
Apr 3 '15 at 11:49
Yes it works perfectly. I had to download a package. Thank you all! :)
– user75639
Apr 5 '15 at 17:13
add a comment |
See, for instance, en.wikibooks.org/wiki/LaTeX/List_Structures#Inline_lists
– jubobs
Apr 3 '15 at 10:27
Welcome to TeX.SX! You can have a look at our starter guide to familiarize yourself further with our format.
– user11232
Apr 3 '15 at 11:49
Yes it works perfectly. I had to download a package. Thank you all! :)
– user75639
Apr 5 '15 at 17:13
See, for instance, en.wikibooks.org/wiki/LaTeX/List_Structures#Inline_lists
– jubobs
Apr 3 '15 at 10:27
See, for instance, en.wikibooks.org/wiki/LaTeX/List_Structures#Inline_lists
– jubobs
Apr 3 '15 at 10:27
Welcome to TeX.SX! You can have a look at our starter guide to familiarize yourself further with our format.
– user11232
Apr 3 '15 at 11:49
Welcome to TeX.SX! You can have a look at our starter guide to familiarize yourself further with our format.
– user11232
Apr 3 '15 at 11:49
Yes it works perfectly. I had to download a package. Thank you all! :)
– user75639
Apr 5 '15 at 17:13
Yes it works perfectly. I had to download a package. Thank you all! :)
– user75639
Apr 5 '15 at 17:13
add a comment |
2 Answers
2
active
oldest
votes
up vote
4
down vote
With enumitem it is easy.
documentclass{article}
usepackage[inline]{enumitem}
begin{document}
We use three broad geographical regions,
begin{enumerate*}[label=(roman*),before=unskip{ i.e., }, itemjoin={{, }}, itemjoin*={{, and }}]
item the U.S.
item current EU-27 countries
item all remaining countries.
end{enumerate*}
end{document}

Thank you all. I have some reservations since I've tried Jubobs suggestion but something goes wrong. I use TexStudio. Maybe this is a problem. But many thanks anyway :)
– veni
Apr 3 '15 at 14:40
@veni Well, did you try Harish Kumar's suggestion? Rest assured, TeXStudio is not the problem.
– cfr
Apr 4 '15 at 1:32
add a comment |
up vote
0
down vote
This is a little late to the party but another solution that is really clean and easy to use is the paralist package.
A quick example of it:
documentclass[11pt]{article}
usepackage{paralist}
begin{document}
This includes:
begin{inparaenum}[(i)]
item first task,
item second task and
item third task
end{inparaenum}
to be completed by the end of the month.
end{document}
This will come out as:
This includes: (i) first task, (ii) second task and (iii) third task to be
completed by the end of the month.
More can be found here
https://texblog.org/2013/02/01/inline-lists-in-latex-using-paralist/
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
With enumitem it is easy.
documentclass{article}
usepackage[inline]{enumitem}
begin{document}
We use three broad geographical regions,
begin{enumerate*}[label=(roman*),before=unskip{ i.e., }, itemjoin={{, }}, itemjoin*={{, and }}]
item the U.S.
item current EU-27 countries
item all remaining countries.
end{enumerate*}
end{document}

Thank you all. I have some reservations since I've tried Jubobs suggestion but something goes wrong. I use TexStudio. Maybe this is a problem. But many thanks anyway :)
– veni
Apr 3 '15 at 14:40
@veni Well, did you try Harish Kumar's suggestion? Rest assured, TeXStudio is not the problem.
– cfr
Apr 4 '15 at 1:32
add a comment |
up vote
4
down vote
With enumitem it is easy.
documentclass{article}
usepackage[inline]{enumitem}
begin{document}
We use three broad geographical regions,
begin{enumerate*}[label=(roman*),before=unskip{ i.e., }, itemjoin={{, }}, itemjoin*={{, and }}]
item the U.S.
item current EU-27 countries
item all remaining countries.
end{enumerate*}
end{document}

Thank you all. I have some reservations since I've tried Jubobs suggestion but something goes wrong. I use TexStudio. Maybe this is a problem. But many thanks anyway :)
– veni
Apr 3 '15 at 14:40
@veni Well, did you try Harish Kumar's suggestion? Rest assured, TeXStudio is not the problem.
– cfr
Apr 4 '15 at 1:32
add a comment |
up vote
4
down vote
up vote
4
down vote
With enumitem it is easy.
documentclass{article}
usepackage[inline]{enumitem}
begin{document}
We use three broad geographical regions,
begin{enumerate*}[label=(roman*),before=unskip{ i.e., }, itemjoin={{, }}, itemjoin*={{, and }}]
item the U.S.
item current EU-27 countries
item all remaining countries.
end{enumerate*}
end{document}

With enumitem it is easy.
documentclass{article}
usepackage[inline]{enumitem}
begin{document}
We use three broad geographical regions,
begin{enumerate*}[label=(roman*),before=unskip{ i.e., }, itemjoin={{, }}, itemjoin*={{, and }}]
item the U.S.
item current EU-27 countries
item all remaining countries.
end{enumerate*}
end{document}

answered Apr 3 '15 at 10:36
user11232
Thank you all. I have some reservations since I've tried Jubobs suggestion but something goes wrong. I use TexStudio. Maybe this is a problem. But many thanks anyway :)
– veni
Apr 3 '15 at 14:40
@veni Well, did you try Harish Kumar's suggestion? Rest assured, TeXStudio is not the problem.
– cfr
Apr 4 '15 at 1:32
add a comment |
Thank you all. I have some reservations since I've tried Jubobs suggestion but something goes wrong. I use TexStudio. Maybe this is a problem. But many thanks anyway :)
– veni
Apr 3 '15 at 14:40
@veni Well, did you try Harish Kumar's suggestion? Rest assured, TeXStudio is not the problem.
– cfr
Apr 4 '15 at 1:32
Thank you all. I have some reservations since I've tried Jubobs suggestion but something goes wrong. I use TexStudio. Maybe this is a problem. But many thanks anyway :)
– veni
Apr 3 '15 at 14:40
Thank you all. I have some reservations since I've tried Jubobs suggestion but something goes wrong. I use TexStudio. Maybe this is a problem. But many thanks anyway :)
– veni
Apr 3 '15 at 14:40
@veni Well, did you try Harish Kumar's suggestion? Rest assured, TeXStudio is not the problem.
– cfr
Apr 4 '15 at 1:32
@veni Well, did you try Harish Kumar's suggestion? Rest assured, TeXStudio is not the problem.
– cfr
Apr 4 '15 at 1:32
add a comment |
up vote
0
down vote
This is a little late to the party but another solution that is really clean and easy to use is the paralist package.
A quick example of it:
documentclass[11pt]{article}
usepackage{paralist}
begin{document}
This includes:
begin{inparaenum}[(i)]
item first task,
item second task and
item third task
end{inparaenum}
to be completed by the end of the month.
end{document}
This will come out as:
This includes: (i) first task, (ii) second task and (iii) third task to be
completed by the end of the month.
More can be found here
https://texblog.org/2013/02/01/inline-lists-in-latex-using-paralist/
add a comment |
up vote
0
down vote
This is a little late to the party but another solution that is really clean and easy to use is the paralist package.
A quick example of it:
documentclass[11pt]{article}
usepackage{paralist}
begin{document}
This includes:
begin{inparaenum}[(i)]
item first task,
item second task and
item third task
end{inparaenum}
to be completed by the end of the month.
end{document}
This will come out as:
This includes: (i) first task, (ii) second task and (iii) third task to be
completed by the end of the month.
More can be found here
https://texblog.org/2013/02/01/inline-lists-in-latex-using-paralist/
add a comment |
up vote
0
down vote
up vote
0
down vote
This is a little late to the party but another solution that is really clean and easy to use is the paralist package.
A quick example of it:
documentclass[11pt]{article}
usepackage{paralist}
begin{document}
This includes:
begin{inparaenum}[(i)]
item first task,
item second task and
item third task
end{inparaenum}
to be completed by the end of the month.
end{document}
This will come out as:
This includes: (i) first task, (ii) second task and (iii) third task to be
completed by the end of the month.
More can be found here
https://texblog.org/2013/02/01/inline-lists-in-latex-using-paralist/
This is a little late to the party but another solution that is really clean and easy to use is the paralist package.
A quick example of it:
documentclass[11pt]{article}
usepackage{paralist}
begin{document}
This includes:
begin{inparaenum}[(i)]
item first task,
item second task and
item third task
end{inparaenum}
to be completed by the end of the month.
end{document}
This will come out as:
This includes: (i) first task, (ii) second task and (iii) third task to be
completed by the end of the month.
More can be found here
https://texblog.org/2013/02/01/inline-lists-in-latex-using-paralist/
answered 4 hours ago
Marcus Karpoff
1083
1083
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f236613%2fwriting-an-enumerated-list-within-a-sentence%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
See, for instance, en.wikibooks.org/wiki/LaTeX/List_Structures#Inline_lists
– jubobs
Apr 3 '15 at 10:27
Welcome to TeX.SX! You can have a look at our starter guide to familiarize yourself further with our format.
– user11232
Apr 3 '15 at 11:49
Yes it works perfectly. I had to download a package. Thank you all! :)
– user75639
Apr 5 '15 at 17:13