Add an indent to appendix line in ToC for included appendix
I asked how to add an indent to a toc line for an appendix here.
In my real structure I am including the appendices:
documentclass{book}
usepackage[utf8]{inputenc}
usepackage[english]{babel}
usepackage{tocloft}
usepackage[title,toc,page]{appendix}
begin{document}
tableofcontents
chapter{MyChapter}
begin{appendices}
addtocontents{toc}{protectsetlength{cftchapindent}{3em}}
include{appendix_a}
include{appendix_b}
end{appendices}
end{document}
But this ends in:
Contents
1 My Chapter 3
Appendices 5
A One appendix header 7
B Another appendix header 9
The indent does not work for the first include. Is there any solution?
indentation appendices include
add a comment |
I asked how to add an indent to a toc line for an appendix here.
In my real structure I am including the appendices:
documentclass{book}
usepackage[utf8]{inputenc}
usepackage[english]{babel}
usepackage{tocloft}
usepackage[title,toc,page]{appendix}
begin{document}
tableofcontents
chapter{MyChapter}
begin{appendices}
addtocontents{toc}{protectsetlength{cftchapindent}{3em}}
include{appendix_a}
include{appendix_b}
end{appendices}
end{document}
But this ends in:
Contents
1 My Chapter 3
Appendices 5
A One appendix header 7
B Another appendix header 9
The indent does not work for the first include. Is there any solution?
indentation appendices include
Whatever you have shared in the MWE part, after compiling that the output is pretty normal.
– Siba Mishra
Feb 22 at 12:57
For the second appendix, you can try the commandnoindent
– Siba Mishra
Feb 22 at 12:57
1
@SibaMishra But I like to have the indent at the first ;)
– S-Man
Feb 22 at 13:04
add a comment |
I asked how to add an indent to a toc line for an appendix here.
In my real structure I am including the appendices:
documentclass{book}
usepackage[utf8]{inputenc}
usepackage[english]{babel}
usepackage{tocloft}
usepackage[title,toc,page]{appendix}
begin{document}
tableofcontents
chapter{MyChapter}
begin{appendices}
addtocontents{toc}{protectsetlength{cftchapindent}{3em}}
include{appendix_a}
include{appendix_b}
end{appendices}
end{document}
But this ends in:
Contents
1 My Chapter 3
Appendices 5
A One appendix header 7
B Another appendix header 9
The indent does not work for the first include. Is there any solution?
indentation appendices include
I asked how to add an indent to a toc line for an appendix here.
In my real structure I am including the appendices:
documentclass{book}
usepackage[utf8]{inputenc}
usepackage[english]{babel}
usepackage{tocloft}
usepackage[title,toc,page]{appendix}
begin{document}
tableofcontents
chapter{MyChapter}
begin{appendices}
addtocontents{toc}{protectsetlength{cftchapindent}{3em}}
include{appendix_a}
include{appendix_b}
end{appendices}
end{document}
But this ends in:
Contents
1 My Chapter 3
Appendices 5
A One appendix header 7
B Another appendix header 9
The indent does not work for the first include. Is there any solution?
indentation appendices include
indentation appendices include
asked Feb 22 at 12:51
S-ManS-Man
1535
1535
Whatever you have shared in the MWE part, after compiling that the output is pretty normal.
– Siba Mishra
Feb 22 at 12:57
For the second appendix, you can try the commandnoindent
– Siba Mishra
Feb 22 at 12:57
1
@SibaMishra But I like to have the indent at the first ;)
– S-Man
Feb 22 at 13:04
add a comment |
Whatever you have shared in the MWE part, after compiling that the output is pretty normal.
– Siba Mishra
Feb 22 at 12:57
For the second appendix, you can try the commandnoindent
– Siba Mishra
Feb 22 at 12:57
1
@SibaMishra But I like to have the indent at the first ;)
– S-Man
Feb 22 at 13:04
Whatever you have shared in the MWE part, after compiling that the output is pretty normal.
– Siba Mishra
Feb 22 at 12:57
Whatever you have shared in the MWE part, after compiling that the output is pretty normal.
– Siba Mishra
Feb 22 at 12:57
For the second appendix, you can try the command
noindent
– Siba Mishra
Feb 22 at 12:57
For the second appendix, you can try the command
noindent
– Siba Mishra
Feb 22 at 12:57
1
1
@SibaMishra But I like to have the indent at the first ;)
– S-Man
Feb 22 at 13:04
@SibaMishra But I like to have the indent at the first ;)
– S-Man
Feb 22 at 13:04
add a comment |
1 Answer
1
active
oldest
votes
You can fix that by borrowing Martin Scharrer's immaddtocontents
macro:
documentclass{book}
usepackage[utf8]{inputenc}
usepackage[english]{babel}
usepackage{tocloft}
usepackage[title,toc,page]{appendix}
makeatletter
newcommandimmaddtocontents[1]{{%
letprotect@unexpandable@protect
immediatewrite@auxout{noexpand@writefile{toc}{#1}}%
}}
makeatother
begin{document}
tableofcontents
chapter{MyChapter}
begin{appendices}
immaddtocontents{protectsetlength{cftchapindent}{3em}}
include{appendix_a}
include{appendix_b}
end{appendices}
end{document}
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%2f476157%2fadd-an-indent-to-appendix-line-in-toc-for-included-appendix%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can fix that by borrowing Martin Scharrer's immaddtocontents
macro:
documentclass{book}
usepackage[utf8]{inputenc}
usepackage[english]{babel}
usepackage{tocloft}
usepackage[title,toc,page]{appendix}
makeatletter
newcommandimmaddtocontents[1]{{%
letprotect@unexpandable@protect
immediatewrite@auxout{noexpand@writefile{toc}{#1}}%
}}
makeatother
begin{document}
tableofcontents
chapter{MyChapter}
begin{appendices}
immaddtocontents{protectsetlength{cftchapindent}{3em}}
include{appendix_a}
include{appendix_b}
end{appendices}
end{document}
add a comment |
You can fix that by borrowing Martin Scharrer's immaddtocontents
macro:
documentclass{book}
usepackage[utf8]{inputenc}
usepackage[english]{babel}
usepackage{tocloft}
usepackage[title,toc,page]{appendix}
makeatletter
newcommandimmaddtocontents[1]{{%
letprotect@unexpandable@protect
immediatewrite@auxout{noexpand@writefile{toc}{#1}}%
}}
makeatother
begin{document}
tableofcontents
chapter{MyChapter}
begin{appendices}
immaddtocontents{protectsetlength{cftchapindent}{3em}}
include{appendix_a}
include{appendix_b}
end{appendices}
end{document}
add a comment |
You can fix that by borrowing Martin Scharrer's immaddtocontents
macro:
documentclass{book}
usepackage[utf8]{inputenc}
usepackage[english]{babel}
usepackage{tocloft}
usepackage[title,toc,page]{appendix}
makeatletter
newcommandimmaddtocontents[1]{{%
letprotect@unexpandable@protect
immediatewrite@auxout{noexpand@writefile{toc}{#1}}%
}}
makeatother
begin{document}
tableofcontents
chapter{MyChapter}
begin{appendices}
immaddtocontents{protectsetlength{cftchapindent}{3em}}
include{appendix_a}
include{appendix_b}
end{appendices}
end{document}
You can fix that by borrowing Martin Scharrer's immaddtocontents
macro:
documentclass{book}
usepackage[utf8]{inputenc}
usepackage[english]{babel}
usepackage{tocloft}
usepackage[title,toc,page]{appendix}
makeatletter
newcommandimmaddtocontents[1]{{%
letprotect@unexpandable@protect
immediatewrite@auxout{noexpand@writefile{toc}{#1}}%
}}
makeatother
begin{document}
tableofcontents
chapter{MyChapter}
begin{appendices}
immaddtocontents{protectsetlength{cftchapindent}{3em}}
include{appendix_a}
include{appendix_b}
end{appendices}
end{document}
edited Feb 22 at 13:44
answered Feb 22 at 12:58
DG'DG'
10.7k21844
10.7k21844
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.
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%2f476157%2fadd-an-indent-to-appendix-line-in-toc-for-included-appendix%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
Whatever you have shared in the MWE part, after compiling that the output is pretty normal.
– Siba Mishra
Feb 22 at 12:57
For the second appendix, you can try the command
noindent
– Siba Mishra
Feb 22 at 12:57
1
@SibaMishra But I like to have the indent at the first ;)
– S-Man
Feb 22 at 13:04