Problem of indent with multiple levels of enumerate
firstly, sorry for my english, I'm French.
Secondly, I've a problem with enumerate, when I have multiple levels of enumeration. An example is better than long speeches :
documentclass[12pt]{article}
usepackage{enumitem} % Listes
usepackage[top=1.5cm,bottom=1.5cm,right=1.5cm,left=1.5cm]{geometry} % Marges
begin{document}
begin{enumerate}[label=textbf{arabic*.}]
item 1.
begin{enumerate}[label=textbf{(alph*)}]
item 1.(a)
end{enumerate}
Blabla
begin{enumerate}[label=textbf{(alph*)},resume]
item 2.(b)
begin{enumerate}[label=textbf{roman*.}]
item 2.(b).i.
end{enumerate}
blabla
begin{enumerate}[label=textbf{roman*.},resume]
item 2.(b).ii.
end{enumerate}
end{enumerate}
end{enumerate}
end{document}
gives this :
My problem is : I want text (Blabla AND blabla) to be aligned in the left of the page, and not aligned with the enumerate item.
Any ideas ? Thank you
enumerate
|
show 2 more comments
firstly, sorry for my english, I'm French.
Secondly, I've a problem with enumerate, when I have multiple levels of enumeration. An example is better than long speeches :
documentclass[12pt]{article}
usepackage{enumitem} % Listes
usepackage[top=1.5cm,bottom=1.5cm,right=1.5cm,left=1.5cm]{geometry} % Marges
begin{document}
begin{enumerate}[label=textbf{arabic*.}]
item 1.
begin{enumerate}[label=textbf{(alph*)}]
item 1.(a)
end{enumerate}
Blabla
begin{enumerate}[label=textbf{(alph*)},resume]
item 2.(b)
begin{enumerate}[label=textbf{roman*.}]
item 2.(b).i.
end{enumerate}
blabla
begin{enumerate}[label=textbf{roman*.},resume]
item 2.(b).ii.
end{enumerate}
end{enumerate}
end{enumerate}
end{document}
gives this :
My problem is : I want text (Blabla AND blabla) to be aligned in the left of the page, and not aligned with the enumerate item.
Any ideas ? Thank you
enumerate
2
You don't need to start each of your posts with an apology for your English. It's absolutely fine as far as I am concerned. (Plus we can tell that you are from a French-speaking country by the spaces before:
and?
;-)
)
– moewe
Dec 8 at 14:33
Ok, thanks ;) Ah, I didn't know this is a French language speciality
– Alex
Dec 8 at 14:35
Do you want it aligned with the bold 1?
– Sigur
Dec 8 at 14:35
Can't you justend
theenumerate
before theBlabla
? At the moment they live within the enumerate and so take its indentation.
– moewe
Dec 8 at 14:37
No because if I do this, the (b) item is aligned with 1., not with (a) begin{enumerate}[label=textbf{arabic*.}] item 1. begin{enumerate}[label=textbf{(alph*)}] item 1.(a) end{enumerate} end{enumerate} Blabla begin{enumerate}[label=textbf{(alph*)},resume] item 2.(b) begin{enumerate}[label=textbf{roman*.}] item 2.(b).i. end{enumerate} blabla begin{enumerate}[label=textbf{roman*.},resume] item 2.(b).ii. end{enumerate} end{enumerate}
– Alex
Dec 8 at 14:42
|
show 2 more comments
firstly, sorry for my english, I'm French.
Secondly, I've a problem with enumerate, when I have multiple levels of enumeration. An example is better than long speeches :
documentclass[12pt]{article}
usepackage{enumitem} % Listes
usepackage[top=1.5cm,bottom=1.5cm,right=1.5cm,left=1.5cm]{geometry} % Marges
begin{document}
begin{enumerate}[label=textbf{arabic*.}]
item 1.
begin{enumerate}[label=textbf{(alph*)}]
item 1.(a)
end{enumerate}
Blabla
begin{enumerate}[label=textbf{(alph*)},resume]
item 2.(b)
begin{enumerate}[label=textbf{roman*.}]
item 2.(b).i.
end{enumerate}
blabla
begin{enumerate}[label=textbf{roman*.},resume]
item 2.(b).ii.
end{enumerate}
end{enumerate}
end{enumerate}
end{document}
gives this :
My problem is : I want text (Blabla AND blabla) to be aligned in the left of the page, and not aligned with the enumerate item.
Any ideas ? Thank you
enumerate
firstly, sorry for my english, I'm French.
Secondly, I've a problem with enumerate, when I have multiple levels of enumeration. An example is better than long speeches :
documentclass[12pt]{article}
usepackage{enumitem} % Listes
usepackage[top=1.5cm,bottom=1.5cm,right=1.5cm,left=1.5cm]{geometry} % Marges
begin{document}
begin{enumerate}[label=textbf{arabic*.}]
item 1.
begin{enumerate}[label=textbf{(alph*)}]
item 1.(a)
end{enumerate}
Blabla
begin{enumerate}[label=textbf{(alph*)},resume]
item 2.(b)
begin{enumerate}[label=textbf{roman*.}]
item 2.(b).i.
end{enumerate}
blabla
begin{enumerate}[label=textbf{roman*.},resume]
item 2.(b).ii.
end{enumerate}
end{enumerate}
end{enumerate}
end{document}
gives this :
My problem is : I want text (Blabla AND blabla) to be aligned in the left of the page, and not aligned with the enumerate item.
Any ideas ? Thank you
enumerate
enumerate
asked Dec 8 at 14:30
Alex
677
677
2
You don't need to start each of your posts with an apology for your English. It's absolutely fine as far as I am concerned. (Plus we can tell that you are from a French-speaking country by the spaces before:
and?
;-)
)
– moewe
Dec 8 at 14:33
Ok, thanks ;) Ah, I didn't know this is a French language speciality
– Alex
Dec 8 at 14:35
Do you want it aligned with the bold 1?
– Sigur
Dec 8 at 14:35
Can't you justend
theenumerate
before theBlabla
? At the moment they live within the enumerate and so take its indentation.
– moewe
Dec 8 at 14:37
No because if I do this, the (b) item is aligned with 1., not with (a) begin{enumerate}[label=textbf{arabic*.}] item 1. begin{enumerate}[label=textbf{(alph*)}] item 1.(a) end{enumerate} end{enumerate} Blabla begin{enumerate}[label=textbf{(alph*)},resume] item 2.(b) begin{enumerate}[label=textbf{roman*.}] item 2.(b).i. end{enumerate} blabla begin{enumerate}[label=textbf{roman*.},resume] item 2.(b).ii. end{enumerate} end{enumerate}
– Alex
Dec 8 at 14:42
|
show 2 more comments
2
You don't need to start each of your posts with an apology for your English. It's absolutely fine as far as I am concerned. (Plus we can tell that you are from a French-speaking country by the spaces before:
and?
;-)
)
– moewe
Dec 8 at 14:33
Ok, thanks ;) Ah, I didn't know this is a French language speciality
– Alex
Dec 8 at 14:35
Do you want it aligned with the bold 1?
– Sigur
Dec 8 at 14:35
Can't you justend
theenumerate
before theBlabla
? At the moment they live within the enumerate and so take its indentation.
– moewe
Dec 8 at 14:37
No because if I do this, the (b) item is aligned with 1., not with (a) begin{enumerate}[label=textbf{arabic*.}] item 1. begin{enumerate}[label=textbf{(alph*)}] item 1.(a) end{enumerate} end{enumerate} Blabla begin{enumerate}[label=textbf{(alph*)},resume] item 2.(b) begin{enumerate}[label=textbf{roman*.}] item 2.(b).i. end{enumerate} blabla begin{enumerate}[label=textbf{roman*.},resume] item 2.(b).ii. end{enumerate} end{enumerate}
– Alex
Dec 8 at 14:42
2
2
You don't need to start each of your posts with an apology for your English. It's absolutely fine as far as I am concerned. (Plus we can tell that you are from a French-speaking country by the spaces before
:
and ?
;-)
)– moewe
Dec 8 at 14:33
You don't need to start each of your posts with an apology for your English. It's absolutely fine as far as I am concerned. (Plus we can tell that you are from a French-speaking country by the spaces before
:
and ?
;-)
)– moewe
Dec 8 at 14:33
Ok, thanks ;) Ah, I didn't know this is a French language speciality
– Alex
Dec 8 at 14:35
Ok, thanks ;) Ah, I didn't know this is a French language speciality
– Alex
Dec 8 at 14:35
Do you want it aligned with the bold 1?
– Sigur
Dec 8 at 14:35
Do you want it aligned with the bold 1?
– Sigur
Dec 8 at 14:35
Can't you just
end
the enumerate
before the Blabla
? At the moment they live within the enumerate and so take its indentation.– moewe
Dec 8 at 14:37
Can't you just
end
the enumerate
before the Blabla
? At the moment they live within the enumerate and so take its indentation.– moewe
Dec 8 at 14:37
No because if I do this, the (b) item is aligned with 1., not with (a) begin{enumerate}[label=textbf{arabic*.}] item 1. begin{enumerate}[label=textbf{(alph*)}] item 1.(a) end{enumerate} end{enumerate} Blabla begin{enumerate}[label=textbf{(alph*)},resume] item 2.(b) begin{enumerate}[label=textbf{roman*.}] item 2.(b).i. end{enumerate} blabla begin{enumerate}[label=textbf{roman*.},resume] item 2.(b).ii. end{enumerate} end{enumerate}
– Alex
Dec 8 at 14:42
No because if I do this, the (b) item is aligned with 1., not with (a) begin{enumerate}[label=textbf{arabic*.}] item 1. begin{enumerate}[label=textbf{(alph*)}] item 1.(a) end{enumerate} end{enumerate} Blabla begin{enumerate}[label=textbf{(alph*)},resume] item 2.(b) begin{enumerate}[label=textbf{roman*.}] item 2.(b).i. end{enumerate} blabla begin{enumerate}[label=textbf{roman*.},resume] item 2.(b).ii. end{enumerate} end{enumerate}
– Alex
Dec 8 at 14:42
|
show 2 more comments
active
oldest
votes
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%2f463821%2fproblem-of-indent-with-multiple-levels-of-enumerate%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f463821%2fproblem-of-indent-with-multiple-levels-of-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
2
You don't need to start each of your posts with an apology for your English. It's absolutely fine as far as I am concerned. (Plus we can tell that you are from a French-speaking country by the spaces before
:
and?
;-)
)– moewe
Dec 8 at 14:33
Ok, thanks ;) Ah, I didn't know this is a French language speciality
– Alex
Dec 8 at 14:35
Do you want it aligned with the bold 1?
– Sigur
Dec 8 at 14:35
Can't you just
end
theenumerate
before theBlabla
? At the moment they live within the enumerate and so take its indentation.– moewe
Dec 8 at 14:37
No because if I do this, the (b) item is aligned with 1., not with (a) begin{enumerate}[label=textbf{arabic*.}] item 1. begin{enumerate}[label=textbf{(alph*)}] item 1.(a) end{enumerate} end{enumerate} Blabla begin{enumerate}[label=textbf{(alph*)},resume] item 2.(b) begin{enumerate}[label=textbf{roman*.}] item 2.(b).i. end{enumerate} blabla begin{enumerate}[label=textbf{roman*.},resume] item 2.(b).ii. end{enumerate} end{enumerate}
– Alex
Dec 8 at 14:42