Add an indent to appendix line in ToC for included appendix












0















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?










share|improve this question























  • 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
















0















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?










share|improve this question























  • 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














0












0








0








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?










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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 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



















  • 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

















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










1 Answer
1






active

oldest

votes


















2














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}


enter image description here






share|improve this answer

























    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    2














    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}


    enter image description here






    share|improve this answer






























      2














      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}


      enter image description here






      share|improve this answer




























        2












        2








        2







        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}


        enter image description here






        share|improve this answer















        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}


        enter image description here







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Feb 22 at 13:44

























        answered Feb 22 at 12:58









        DG'DG'

        10.7k21844




        10.7k21844






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

            ComboBox Display Member on multiple fields

            Is it possible to collect Nectar points via Trainline?