How to represent 1) in LaTeX?

Clash Royale CLAN TAG#URR8PPP
up vote
2
down vote
favorite
I tried just
1) foo;
2) bar;
in LaTeX, but I found it looks strange.
lists enumerate
New contributor
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
up vote
2
down vote
favorite
I tried just
1) foo;
2) bar;
in LaTeX, but I found it looks strange.
lists enumerate
New contributor
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
but I found it looks strageis not useful information in helping you solve any issue. In your future questions, please try and describe why it looks strange, and how you expected it to look.
â Jules
9 mins ago
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I tried just
1) foo;
2) bar;
in LaTeX, but I found it looks strange.
lists enumerate
New contributor
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I tried just
1) foo;
2) bar;
in LaTeX, but I found it looks strange.
lists enumerate
lists enumerate
New contributor
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 23 mins ago
Phelype Oleinik
19.6k54276
19.6k54276
New contributor
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 1 hour ago
Mark
142
142
New contributor
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
but I found it looks strageis not useful information in helping you solve any issue. In your future questions, please try and describe why it looks strange, and how you expected it to look.
â Jules
9 mins ago
add a comment |Â
but I found it looks strageis not useful information in helping you solve any issue. In your future questions, please try and describe why it looks strange, and how you expected it to look.
â Jules
9 mins ago
but I found it looks strage is not useful information in helping you solve any issue. In your future questions, please try and describe why it looks strange, and how you expected it to look.â Jules
9 mins ago
but I found it looks strage is not useful information in helping you solve any issue. In your future questions, please try and describe why it looks strange, and how you expected it to look.â Jules
9 mins ago
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
3
down vote
You can use the enumitem package to make all kinds of lists.
Example:
documentclassarticle
usepackageenumitem
begindocument
beginenumerate[noitemsep,label=arabic*)]
item foo
item bar
endenumerate
enddocument

The key part for your question is the label=arabic*). The arabic part tells LaTeX you want numbers, the ) says you want brakets. The * is also necessary.
The noitemsep isn't necessary, I just like using it whenever I make lists, as I dislike spaces placed between items (which is the default).
Check out the documentation for this package if you want to learn more about it
add a comment |Â
up vote
1
down vote
Are you talking about an enumeration?
With the enumitem package and its shortlabels option, we have this:

documentclassarticle
usepackage[shortlabels]enumitem
begindocument
beginenumerate[1)]
item foo;
item bar;
endenumerate
enddocument
The enumerate package manages shortlabels natively:
documentclassarticle
usepackageenumerate
begindocument
beginenumerate[1)]
item foo;
item bar;
endenumerate
enddocument
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
You can use the enumitem package to make all kinds of lists.
Example:
documentclassarticle
usepackageenumitem
begindocument
beginenumerate[noitemsep,label=arabic*)]
item foo
item bar
endenumerate
enddocument

The key part for your question is the label=arabic*). The arabic part tells LaTeX you want numbers, the ) says you want brakets. The * is also necessary.
The noitemsep isn't necessary, I just like using it whenever I make lists, as I dislike spaces placed between items (which is the default).
Check out the documentation for this package if you want to learn more about it
add a comment |Â
up vote
3
down vote
You can use the enumitem package to make all kinds of lists.
Example:
documentclassarticle
usepackageenumitem
begindocument
beginenumerate[noitemsep,label=arabic*)]
item foo
item bar
endenumerate
enddocument

The key part for your question is the label=arabic*). The arabic part tells LaTeX you want numbers, the ) says you want brakets. The * is also necessary.
The noitemsep isn't necessary, I just like using it whenever I make lists, as I dislike spaces placed between items (which is the default).
Check out the documentation for this package if you want to learn more about it
add a comment |Â
up vote
3
down vote
up vote
3
down vote
You can use the enumitem package to make all kinds of lists.
Example:
documentclassarticle
usepackageenumitem
begindocument
beginenumerate[noitemsep,label=arabic*)]
item foo
item bar
endenumerate
enddocument

The key part for your question is the label=arabic*). The arabic part tells LaTeX you want numbers, the ) says you want brakets. The * is also necessary.
The noitemsep isn't necessary, I just like using it whenever I make lists, as I dislike spaces placed between items (which is the default).
Check out the documentation for this package if you want to learn more about it
You can use the enumitem package to make all kinds of lists.
Example:
documentclassarticle
usepackageenumitem
begindocument
beginenumerate[noitemsep,label=arabic*)]
item foo
item bar
endenumerate
enddocument

The key part for your question is the label=arabic*). The arabic part tells LaTeX you want numbers, the ) says you want brakets. The * is also necessary.
The noitemsep isn't necessary, I just like using it whenever I make lists, as I dislike spaces placed between items (which is the default).
Check out the documentation for this package if you want to learn more about it
edited 38 mins ago
answered 1 hour ago
Garf
2427
2427
add a comment |Â
add a comment |Â
up vote
1
down vote
Are you talking about an enumeration?
With the enumitem package and its shortlabels option, we have this:

documentclassarticle
usepackage[shortlabels]enumitem
begindocument
beginenumerate[1)]
item foo;
item bar;
endenumerate
enddocument
The enumerate package manages shortlabels natively:
documentclassarticle
usepackageenumerate
begindocument
beginenumerate[1)]
item foo;
item bar;
endenumerate
enddocument
add a comment |Â
up vote
1
down vote
Are you talking about an enumeration?
With the enumitem package and its shortlabels option, we have this:

documentclassarticle
usepackage[shortlabels]enumitem
begindocument
beginenumerate[1)]
item foo;
item bar;
endenumerate
enddocument
The enumerate package manages shortlabels natively:
documentclassarticle
usepackageenumerate
begindocument
beginenumerate[1)]
item foo;
item bar;
endenumerate
enddocument
add a comment |Â
up vote
1
down vote
up vote
1
down vote
Are you talking about an enumeration?
With the enumitem package and its shortlabels option, we have this:

documentclassarticle
usepackage[shortlabels]enumitem
begindocument
beginenumerate[1)]
item foo;
item bar;
endenumerate
enddocument
The enumerate package manages shortlabels natively:
documentclassarticle
usepackageenumerate
begindocument
beginenumerate[1)]
item foo;
item bar;
endenumerate
enddocument
Are you talking about an enumeration?
With the enumitem package and its shortlabels option, we have this:

documentclassarticle
usepackage[shortlabels]enumitem
begindocument
beginenumerate[1)]
item foo;
item bar;
endenumerate
enddocument
The enumerate package manages shortlabels natively:
documentclassarticle
usepackageenumerate
begindocument
beginenumerate[1)]
item foo;
item bar;
endenumerate
enddocument
edited 22 mins ago
answered 1 hour ago
AndréC
4,8421835
4,8421835
add a comment |Â
add a comment |Â
Mark is a new contributor. Be nice, and check out our Code of Conduct.
Mark is a new contributor. Be nice, and check out our Code of Conduct.
Mark is a new contributor. Be nice, and check out our Code of Conduct.
Mark is a new contributor. Be nice, and check out our Code of Conduct.
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f457914%2fhow-to-represent-1-in-latex%23new-answer', 'question_page');
);
Post as a guest
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
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
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
but I found it looks strageis not useful information in helping you solve any issue. In your future questions, please try and describe why it looks strange, and how you expected it to look.â Jules
9 mins ago