Space between items, enumerate
up vote
0
down vote
favorite
I can't make a distance between items
enumerate
add a comment |
up vote
0
down vote
favorite
I can't make a distance between items
enumerate
I would recommend to usefrac
instead ofdfrac
, but without a fully compilable MWE includingdocumentclass
and the appropriate packages that reproduces the problem it is difficult to help. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.
– Peter Grill
51 mins ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I can't make a distance between items
enumerate
I can't make a distance between items
enumerate
enumerate
asked 2 hours ago
IW. Krisna Adipayana
112
112
I would recommend to usefrac
instead ofdfrac
, but without a fully compilable MWE includingdocumentclass
and the appropriate packages that reproduces the problem it is difficult to help. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.
– Peter Grill
51 mins ago
add a comment |
I would recommend to usefrac
instead ofdfrac
, but without a fully compilable MWE includingdocumentclass
and the appropriate packages that reproduces the problem it is difficult to help. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.
– Peter Grill
51 mins ago
I would recommend to use
frac
instead of dfrac
, but without a fully compilable MWE including documentclass
and the appropriate packages that reproduces the problem it is difficult to help. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.– Peter Grill
51 mins ago
I would recommend to use
frac
instead of dfrac
, but without a fully compilable MWE including documentclass
and the appropriate packages that reproduces the problem it is difficult to help. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.– Peter Grill
51 mins ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
there is quite complicated to see your code, but one way to do it is by using the package enumitem, then your code should be like this:
%Preamble
usepackage{enumitem}
...
begin{enumerate}[itemsep=1cm,parsep=0.5cm]
item $frac{1}{2}$
item $frac{1}{2}$
end{enumerate}
it lets you set the spacing between items (itemsep) and between the paragraphs within items (parsep). Then, your result will be
New contributor
The OP's question usesenumerate*
and adfrac
, so not sure this actually solves the issue. Even with default settings, withenumitem
things work fine for me. FYI, it is always best to post a fully compilable MWE includingdocumentclass
and the appropriate packages. You can usually use thearticle
class (unless the issue is with some septic class).
– Peter Grill
49 mins 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
there is quite complicated to see your code, but one way to do it is by using the package enumitem, then your code should be like this:
%Preamble
usepackage{enumitem}
...
begin{enumerate}[itemsep=1cm,parsep=0.5cm]
item $frac{1}{2}$
item $frac{1}{2}$
end{enumerate}
it lets you set the spacing between items (itemsep) and between the paragraphs within items (parsep). Then, your result will be
New contributor
The OP's question usesenumerate*
and adfrac
, so not sure this actually solves the issue. Even with default settings, withenumitem
things work fine for me. FYI, it is always best to post a fully compilable MWE includingdocumentclass
and the appropriate packages. You can usually use thearticle
class (unless the issue is with some septic class).
– Peter Grill
49 mins ago
add a comment |
up vote
1
down vote
there is quite complicated to see your code, but one way to do it is by using the package enumitem, then your code should be like this:
%Preamble
usepackage{enumitem}
...
begin{enumerate}[itemsep=1cm,parsep=0.5cm]
item $frac{1}{2}$
item $frac{1}{2}$
end{enumerate}
it lets you set the spacing between items (itemsep) and between the paragraphs within items (parsep). Then, your result will be
New contributor
The OP's question usesenumerate*
and adfrac
, so not sure this actually solves the issue. Even with default settings, withenumitem
things work fine for me. FYI, it is always best to post a fully compilable MWE includingdocumentclass
and the appropriate packages. You can usually use thearticle
class (unless the issue is with some septic class).
– Peter Grill
49 mins ago
add a comment |
up vote
1
down vote
up vote
1
down vote
there is quite complicated to see your code, but one way to do it is by using the package enumitem, then your code should be like this:
%Preamble
usepackage{enumitem}
...
begin{enumerate}[itemsep=1cm,parsep=0.5cm]
item $frac{1}{2}$
item $frac{1}{2}$
end{enumerate}
it lets you set the spacing between items (itemsep) and between the paragraphs within items (parsep). Then, your result will be
New contributor
there is quite complicated to see your code, but one way to do it is by using the package enumitem, then your code should be like this:
%Preamble
usepackage{enumitem}
...
begin{enumerate}[itemsep=1cm,parsep=0.5cm]
item $frac{1}{2}$
item $frac{1}{2}$
end{enumerate}
it lets you set the spacing between items (itemsep) and between the paragraphs within items (parsep). Then, your result will be
New contributor
New contributor
answered 1 hour ago
Gerardo Marx Chávez-Campos
111
111
New contributor
New contributor
The OP's question usesenumerate*
and adfrac
, so not sure this actually solves the issue. Even with default settings, withenumitem
things work fine for me. FYI, it is always best to post a fully compilable MWE includingdocumentclass
and the appropriate packages. You can usually use thearticle
class (unless the issue is with some septic class).
– Peter Grill
49 mins ago
add a comment |
The OP's question usesenumerate*
and adfrac
, so not sure this actually solves the issue. Even with default settings, withenumitem
things work fine for me. FYI, it is always best to post a fully compilable MWE includingdocumentclass
and the appropriate packages. You can usually use thearticle
class (unless the issue is with some septic class).
– Peter Grill
49 mins ago
The OP's question uses
enumerate*
and a dfrac
, so not sure this actually solves the issue. Even with default settings, with enumitem
things work fine for me. FYI, it is always best to post a fully compilable MWE including documentclass
and the appropriate packages. You can usually use the article
class (unless the issue is with some septic class).– Peter Grill
49 mins ago
The OP's question uses
enumerate*
and a dfrac
, so not sure this actually solves the issue. Even with default settings, with enumitem
things work fine for me. FYI, it is always best to post a fully compilable MWE including documentclass
and the appropriate packages. You can usually use the article
class (unless the issue is with some septic class).– Peter Grill
49 mins ago
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%2f462517%2fspace-between-items-enumerate%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
I would recommend to use
frac
instead ofdfrac
, but without a fully compilable MWE includingdocumentclass
and the appropriate packages that reproduces the problem it is difficult to help. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem.– Peter Grill
51 mins ago