How to have nice-looking symbols within an itemize environment?
up vote
0
down vote
favorite
I need to list some formulae within an itemize environment, but my mathematical symbols look ugly since they are in inline math mode after each item. How can I make them look better?
As an example, consider
begin{itemize}
item $prod_{ageq5} frac{a}{2} int_2^pi frac{dt}{sin t}$
item $prod_{bgeq5} frac{b}{2} int_2^pi frac{dt}{cos t}$
...
end{itemize}
which renders as

but I want the items to render rather as

How do I achieve this?
math-mode formatting itemize
add a comment |
up vote
0
down vote
favorite
I need to list some formulae within an itemize environment, but my mathematical symbols look ugly since they are in inline math mode after each item. How can I make them look better?
As an example, consider
begin{itemize}
item $prod_{ageq5} frac{a}{2} int_2^pi frac{dt}{sin t}$
item $prod_{bgeq5} frac{b}{2} int_2^pi frac{dt}{cos t}$
...
end{itemize}
which renders as

but I want the items to render rather as

How do I achieve this?
math-mode formatting itemize
2
item $displaystyle ...$might result in the desired output
– leandriis
2 days ago
1
What you are looking for is 'displaystyle'. ,There is surely a better solution by customizing the itemize list, but the simplest way is to adddisplaystylejust after the first $.
– Jhor
2 days ago
3
tex.stackexchange.com/a/260414/134144 might also be interesting regarding a slightly more automated solution using theenumitempackage.
– leandriis
2 days ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I need to list some formulae within an itemize environment, but my mathematical symbols look ugly since they are in inline math mode after each item. How can I make them look better?
As an example, consider
begin{itemize}
item $prod_{ageq5} frac{a}{2} int_2^pi frac{dt}{sin t}$
item $prod_{bgeq5} frac{b}{2} int_2^pi frac{dt}{cos t}$
...
end{itemize}
which renders as

but I want the items to render rather as

How do I achieve this?
math-mode formatting itemize
I need to list some formulae within an itemize environment, but my mathematical symbols look ugly since they are in inline math mode after each item. How can I make them look better?
As an example, consider
begin{itemize}
item $prod_{ageq5} frac{a}{2} int_2^pi frac{dt}{sin t}$
item $prod_{bgeq5} frac{b}{2} int_2^pi frac{dt}{cos t}$
...
end{itemize}
which renders as

but I want the items to render rather as

How do I achieve this?
math-mode formatting itemize
math-mode formatting itemize
edited 2 days ago
Bernard
162k767192
162k767192
asked 2 days ago
Flermat
1204
1204
2
item $displaystyle ...$might result in the desired output
– leandriis
2 days ago
1
What you are looking for is 'displaystyle'. ,There is surely a better solution by customizing the itemize list, but the simplest way is to adddisplaystylejust after the first $.
– Jhor
2 days ago
3
tex.stackexchange.com/a/260414/134144 might also be interesting regarding a slightly more automated solution using theenumitempackage.
– leandriis
2 days ago
add a comment |
2
item $displaystyle ...$might result in the desired output
– leandriis
2 days ago
1
What you are looking for is 'displaystyle'. ,There is surely a better solution by customizing the itemize list, but the simplest way is to adddisplaystylejust after the first $.
– Jhor
2 days ago
3
tex.stackexchange.com/a/260414/134144 might also be interesting regarding a slightly more automated solution using theenumitempackage.
– leandriis
2 days ago
2
2
item $displaystyle ...$ might result in the desired output– leandriis
2 days ago
item $displaystyle ...$ might result in the desired output– leandriis
2 days ago
1
1
What you are looking for is 'displaystyle'. ,There is surely a better solution by customizing the itemize list, but the simplest way is to add
displaystyle just after the first $.– Jhor
2 days ago
What you are looking for is 'displaystyle'. ,There is surely a better solution by customizing the itemize list, but the simplest way is to add
displaystyle just after the first $.– Jhor
2 days ago
3
3
tex.stackexchange.com/a/260414/134144 might also be interesting regarding a slightly more automated solution using the
enumitem package.– leandriis
2 days ago
tex.stackexchange.com/a/260414/134144 might also be interesting regarding a slightly more automated solution using the
enumitem package.– leandriis
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
If you want to have the math formulas in the itemize only be shown as display style, just do like the comments: use displaystyle before each math formula.
But it seems to me that you are trying to change all math formulas in the whole document to display style. In that case, add the following line to your preamble:
everymath{displaystyle}
and you will get what you want without putting any displaystyle.
Why do you think OP wants to change all math formulas?
– Sigur
2 days ago
@Sigur You can imagine a document in which all in-line math formulas initemizeare in display style but the rest in-line math formulas are in in-line style. It's terrible and clearly inconsistent.
– Dũng Vũ
2 days ago
So I think the post owner wants to change all in-line math formulas. :)
– Dũng Vũ
2 days ago
Well, I can imagine how strange would be a documet with around 10 pages, a lot of inline math and some few items, maybe 4 lists with 2 items each, and all inline with display style!fracinline display style is too big, IMHO.
– Sigur
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
If you want to have the math formulas in the itemize only be shown as display style, just do like the comments: use displaystyle before each math formula.
But it seems to me that you are trying to change all math formulas in the whole document to display style. In that case, add the following line to your preamble:
everymath{displaystyle}
and you will get what you want without putting any displaystyle.
Why do you think OP wants to change all math formulas?
– Sigur
2 days ago
@Sigur You can imagine a document in which all in-line math formulas initemizeare in display style but the rest in-line math formulas are in in-line style. It's terrible and clearly inconsistent.
– Dũng Vũ
2 days ago
So I think the post owner wants to change all in-line math formulas. :)
– Dũng Vũ
2 days ago
Well, I can imagine how strange would be a documet with around 10 pages, a lot of inline math and some few items, maybe 4 lists with 2 items each, and all inline with display style!fracinline display style is too big, IMHO.
– Sigur
2 days ago
add a comment |
up vote
1
down vote
accepted
If you want to have the math formulas in the itemize only be shown as display style, just do like the comments: use displaystyle before each math formula.
But it seems to me that you are trying to change all math formulas in the whole document to display style. In that case, add the following line to your preamble:
everymath{displaystyle}
and you will get what you want without putting any displaystyle.
Why do you think OP wants to change all math formulas?
– Sigur
2 days ago
@Sigur You can imagine a document in which all in-line math formulas initemizeare in display style but the rest in-line math formulas are in in-line style. It's terrible and clearly inconsistent.
– Dũng Vũ
2 days ago
So I think the post owner wants to change all in-line math formulas. :)
– Dũng Vũ
2 days ago
Well, I can imagine how strange would be a documet with around 10 pages, a lot of inline math and some few items, maybe 4 lists with 2 items each, and all inline with display style!fracinline display style is too big, IMHO.
– Sigur
2 days ago
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
If you want to have the math formulas in the itemize only be shown as display style, just do like the comments: use displaystyle before each math formula.
But it seems to me that you are trying to change all math formulas in the whole document to display style. In that case, add the following line to your preamble:
everymath{displaystyle}
and you will get what you want without putting any displaystyle.
If you want to have the math formulas in the itemize only be shown as display style, just do like the comments: use displaystyle before each math formula.
But it seems to me that you are trying to change all math formulas in the whole document to display style. In that case, add the following line to your preamble:
everymath{displaystyle}
and you will get what you want without putting any displaystyle.
answered 2 days ago
Dũng Vũ
1,05018
1,05018
Why do you think OP wants to change all math formulas?
– Sigur
2 days ago
@Sigur You can imagine a document in which all in-line math formulas initemizeare in display style but the rest in-line math formulas are in in-line style. It's terrible and clearly inconsistent.
– Dũng Vũ
2 days ago
So I think the post owner wants to change all in-line math formulas. :)
– Dũng Vũ
2 days ago
Well, I can imagine how strange would be a documet with around 10 pages, a lot of inline math and some few items, maybe 4 lists with 2 items each, and all inline with display style!fracinline display style is too big, IMHO.
– Sigur
2 days ago
add a comment |
Why do you think OP wants to change all math formulas?
– Sigur
2 days ago
@Sigur You can imagine a document in which all in-line math formulas initemizeare in display style but the rest in-line math formulas are in in-line style. It's terrible and clearly inconsistent.
– Dũng Vũ
2 days ago
So I think the post owner wants to change all in-line math formulas. :)
– Dũng Vũ
2 days ago
Well, I can imagine how strange would be a documet with around 10 pages, a lot of inline math and some few items, maybe 4 lists with 2 items each, and all inline with display style!fracinline display style is too big, IMHO.
– Sigur
2 days ago
Why do you think OP wants to change all math formulas?
– Sigur
2 days ago
Why do you think OP wants to change all math formulas?
– Sigur
2 days ago
@Sigur You can imagine a document in which all in-line math formulas in
itemize are in display style but the rest in-line math formulas are in in-line style. It's terrible and clearly inconsistent.– Dũng Vũ
2 days ago
@Sigur You can imagine a document in which all in-line math formulas in
itemize are in display style but the rest in-line math formulas are in in-line style. It's terrible and clearly inconsistent.– Dũng Vũ
2 days ago
So I think the post owner wants to change all in-line math formulas. :)
– Dũng Vũ
2 days ago
So I think the post owner wants to change all in-line math formulas. :)
– Dũng Vũ
2 days ago
Well, I can imagine how strange would be a documet with around 10 pages, a lot of inline math and some few items, maybe 4 lists with 2 items each, and all inline with display style!
frac inline display style is too big, IMHO.– Sigur
2 days ago
Well, I can imagine how strange would be a documet with around 10 pages, a lot of inline math and some few items, maybe 4 lists with 2 items each, and all inline with display style!
frac inline display style is too big, IMHO.– Sigur
2 days ago
add a comment |
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%2f460448%2fhow-to-have-nice-looking-symbols-within-an-itemize-environment%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
item $displaystyle ...$might result in the desired output– leandriis
2 days ago
1
What you are looking for is 'displaystyle'. ,There is surely a better solution by customizing the itemize list, but the simplest way is to add
displaystylejust after the first $.– Jhor
2 days ago
3
tex.stackexchange.com/a/260414/134144 might also be interesting regarding a slightly more automated solution using the
enumitempackage.– leandriis
2 days ago