How to make section items numbers show as Roman Numerals like I II III IV..?
And how to make them show as roman numerals in TOC?
sectioning table-of-contents numbering
add a comment |
And how to make them show as roman numerals in TOC?
sectioning table-of-contents numbering
add a comment |
And how to make them show as roman numerals in TOC?
sectioning table-of-contents numbering
And how to make them show as roman numerals in TOC?
sectioning table-of-contents numbering
sectioning table-of-contents numbering
edited May 10 '11 at 16:13
lockstep
189k52585719
189k52585719
asked May 10 '11 at 16:10
Kabumbus
68021014
68021014
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Change the representation of the corresponding counter (section, in this case) by adding to the preamble:
renewcommandthesection{Roman{section}}
EDIT: this redefinition will probably require increasing the space allowed for typesetting section numbers in the ToC; this can be done, for example, with the help of the tocloft package by adding the following lines to the preamble:
usepackage{tocloft}
setlength{cftsecnumwidth}{1.5cm}
and how to set space between roman numeral and item name in TOC and in general for sections?
– Kabumbus
May 10 '11 at 16:17
2
Well, you can makethesectiondo anything you want, sorenewcommandthesection{Roman{section}quad}would throw a quad space in. However, if you are realy getting into section styling, it is better to use a package like titlesec or a document class like memoir that really gives you fine control over such things.
– Sharpie
May 10 '11 at 16:25
quad helps in main article but does not help in tableofcontents =(
– Kabumbus
May 10 '11 at 16:29
1
@Kabumbus: using thetocloftpackage you can add to the preamble:usepackage{tocloft}andaddtolength{cftsecnumwidth}{1cm}
– Gonzalo Medina
May 10 '11 at 16:33
4
@Sharpie: Never definethesectionwith aquad. Euqation numbers, cross reference whould also usethesection.
– Leo Liu
May 10 '11 at 16:36
|
show 1 more comment
It depends on your packages. Maybe you are loading tocstyle or tocloft. Normally you can redefine l@section. See also @dottedtocline.
add a comment |
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%2f17893%2fhow-to-make-section-items-numbers-show-as-roman-numerals-like-i-ii-iii-iv%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Change the representation of the corresponding counter (section, in this case) by adding to the preamble:
renewcommandthesection{Roman{section}}
EDIT: this redefinition will probably require increasing the space allowed for typesetting section numbers in the ToC; this can be done, for example, with the help of the tocloft package by adding the following lines to the preamble:
usepackage{tocloft}
setlength{cftsecnumwidth}{1.5cm}
and how to set space between roman numeral and item name in TOC and in general for sections?
– Kabumbus
May 10 '11 at 16:17
2
Well, you can makethesectiondo anything you want, sorenewcommandthesection{Roman{section}quad}would throw a quad space in. However, if you are realy getting into section styling, it is better to use a package like titlesec or a document class like memoir that really gives you fine control over such things.
– Sharpie
May 10 '11 at 16:25
quad helps in main article but does not help in tableofcontents =(
– Kabumbus
May 10 '11 at 16:29
1
@Kabumbus: using thetocloftpackage you can add to the preamble:usepackage{tocloft}andaddtolength{cftsecnumwidth}{1cm}
– Gonzalo Medina
May 10 '11 at 16:33
4
@Sharpie: Never definethesectionwith aquad. Euqation numbers, cross reference whould also usethesection.
– Leo Liu
May 10 '11 at 16:36
|
show 1 more comment
Change the representation of the corresponding counter (section, in this case) by adding to the preamble:
renewcommandthesection{Roman{section}}
EDIT: this redefinition will probably require increasing the space allowed for typesetting section numbers in the ToC; this can be done, for example, with the help of the tocloft package by adding the following lines to the preamble:
usepackage{tocloft}
setlength{cftsecnumwidth}{1.5cm}
and how to set space between roman numeral and item name in TOC and in general for sections?
– Kabumbus
May 10 '11 at 16:17
2
Well, you can makethesectiondo anything you want, sorenewcommandthesection{Roman{section}quad}would throw a quad space in. However, if you are realy getting into section styling, it is better to use a package like titlesec or a document class like memoir that really gives you fine control over such things.
– Sharpie
May 10 '11 at 16:25
quad helps in main article but does not help in tableofcontents =(
– Kabumbus
May 10 '11 at 16:29
1
@Kabumbus: using thetocloftpackage you can add to the preamble:usepackage{tocloft}andaddtolength{cftsecnumwidth}{1cm}
– Gonzalo Medina
May 10 '11 at 16:33
4
@Sharpie: Never definethesectionwith aquad. Euqation numbers, cross reference whould also usethesection.
– Leo Liu
May 10 '11 at 16:36
|
show 1 more comment
Change the representation of the corresponding counter (section, in this case) by adding to the preamble:
renewcommandthesection{Roman{section}}
EDIT: this redefinition will probably require increasing the space allowed for typesetting section numbers in the ToC; this can be done, for example, with the help of the tocloft package by adding the following lines to the preamble:
usepackage{tocloft}
setlength{cftsecnumwidth}{1.5cm}
Change the representation of the corresponding counter (section, in this case) by adding to the preamble:
renewcommandthesection{Roman{section}}
EDIT: this redefinition will probably require increasing the space allowed for typesetting section numbers in the ToC; this can be done, for example, with the help of the tocloft package by adding the following lines to the preamble:
usepackage{tocloft}
setlength{cftsecnumwidth}{1.5cm}
edited 21 mins ago
Saphar Koshet
1021215
1021215
answered May 10 '11 at 16:15
Gonzalo Medina
395k4112961564
395k4112961564
and how to set space between roman numeral and item name in TOC and in general for sections?
– Kabumbus
May 10 '11 at 16:17
2
Well, you can makethesectiondo anything you want, sorenewcommandthesection{Roman{section}quad}would throw a quad space in. However, if you are realy getting into section styling, it is better to use a package like titlesec or a document class like memoir that really gives you fine control over such things.
– Sharpie
May 10 '11 at 16:25
quad helps in main article but does not help in tableofcontents =(
– Kabumbus
May 10 '11 at 16:29
1
@Kabumbus: using thetocloftpackage you can add to the preamble:usepackage{tocloft}andaddtolength{cftsecnumwidth}{1cm}
– Gonzalo Medina
May 10 '11 at 16:33
4
@Sharpie: Never definethesectionwith aquad. Euqation numbers, cross reference whould also usethesection.
– Leo Liu
May 10 '11 at 16:36
|
show 1 more comment
and how to set space between roman numeral and item name in TOC and in general for sections?
– Kabumbus
May 10 '11 at 16:17
2
Well, you can makethesectiondo anything you want, sorenewcommandthesection{Roman{section}quad}would throw a quad space in. However, if you are realy getting into section styling, it is better to use a package like titlesec or a document class like memoir that really gives you fine control over such things.
– Sharpie
May 10 '11 at 16:25
quad helps in main article but does not help in tableofcontents =(
– Kabumbus
May 10 '11 at 16:29
1
@Kabumbus: using thetocloftpackage you can add to the preamble:usepackage{tocloft}andaddtolength{cftsecnumwidth}{1cm}
– Gonzalo Medina
May 10 '11 at 16:33
4
@Sharpie: Never definethesectionwith aquad. Euqation numbers, cross reference whould also usethesection.
– Leo Liu
May 10 '11 at 16:36
and how to set space between roman numeral and item name in TOC and in general for sections?
– Kabumbus
May 10 '11 at 16:17
and how to set space between roman numeral and item name in TOC and in general for sections?
– Kabumbus
May 10 '11 at 16:17
2
2
Well, you can make
thesection do anything you want, so renewcommandthesection{Roman{section}quad} would throw a quad space in. However, if you are realy getting into section styling, it is better to use a package like titlesec or a document class like memoir that really gives you fine control over such things.– Sharpie
May 10 '11 at 16:25
Well, you can make
thesection do anything you want, so renewcommandthesection{Roman{section}quad} would throw a quad space in. However, if you are realy getting into section styling, it is better to use a package like titlesec or a document class like memoir that really gives you fine control over such things.– Sharpie
May 10 '11 at 16:25
quad helps in main article but does not help in tableofcontents =(
– Kabumbus
May 10 '11 at 16:29
quad helps in main article but does not help in tableofcontents =(
– Kabumbus
May 10 '11 at 16:29
1
1
@Kabumbus: using the
tocloft package you can add to the preamble: usepackage{tocloft} and addtolength{cftsecnumwidth}{1cm}– Gonzalo Medina
May 10 '11 at 16:33
@Kabumbus: using the
tocloft package you can add to the preamble: usepackage{tocloft} and addtolength{cftsecnumwidth}{1cm}– Gonzalo Medina
May 10 '11 at 16:33
4
4
@Sharpie: Never define
thesection with a quad. Euqation numbers, cross reference whould also use thesection.– Leo Liu
May 10 '11 at 16:36
@Sharpie: Never define
thesection with a quad. Euqation numbers, cross reference whould also use thesection.– Leo Liu
May 10 '11 at 16:36
|
show 1 more comment
It depends on your packages. Maybe you are loading tocstyle or tocloft. Normally you can redefine l@section. See also @dottedtocline.
add a comment |
It depends on your packages. Maybe you are loading tocstyle or tocloft. Normally you can redefine l@section. See also @dottedtocline.
add a comment |
It depends on your packages. Maybe you are loading tocstyle or tocloft. Normally you can redefine l@section. See also @dottedtocline.
It depends on your packages. Maybe you are loading tocstyle or tocloft. Normally you can redefine l@section. See also @dottedtocline.
answered May 10 '11 at 16:25
Marco Daniel
77.7k13220384
77.7k13220384
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%2f17893%2fhow-to-make-section-items-numbers-show-as-roman-numerals-like-i-ii-iii-iv%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