Abstract right next to the table of contents in documentclass book











up vote
2
down vote

favorite












I am writing my thesis in Latex, using texmaker but i have too many white pages that i want to get rid of but don't know how. Maybe someone here has an idea:) Here is a MWE:



documentclass[12pt]{book}

begin{document}

begin{titlepage}

include{...}

end{titlepage}

include{./chapters/statutory_declaration}

clearpage

setcounter{tocdepth}{2}

frontmatter

include{./chapters/abstract} %% without this everything is exactly as I wish.. but I'd like to include the abstract on the left page right next to the table of contents... if I include it like this there is another blank page between the statutory_declaration and the abstract and between abstract and table of contents....

tableofcontents

setcounter{page}{0}

mainmatter

include{./chapters/introduction}

include{./chapters/chapter_01}

include{./chapters/chapter_02}

include{./chapters/chapter_03}

include{./chapters/conclusion}

%% Bibliography

bibliographystyle{alpha}

bibliography{...}

end{document}


If someone could help me I would be really thankful!!! Since this is my very first MWE just let me know if I missed something important for you to know.
Thank you!










share|improve this question
























  • Welcome to TeX - LaTeX! This is not really an MWE as it refers to many files we do not have. Relpacing the include... statements by chapter{...}text probably produces something close to what you are seeing. Perhaps tex.stackexchange.com/q/139289/15925 could help with solving your actual problem.
    – Andrew Swann
    Nov 29 at 12:05










  • The simplest could be documentclass[12pt,oneside]{book} or use the answer of Adrew for only some parts, but if the reason is save paper, btw you could also renewcommand{clearpage}{} ... However, do you want to present some kind of brochure or a formal thesis? For the second is always a bad idea do not allow blank pages avoiding start chapters only in even pages.
    – Fran
    Nov 29 at 14:24










  • Thanks Andrew your answer worked just fine for me! You're right I should have replaced the include by a blindtext!
    – Wima19
    Dec 1 at 10:29















up vote
2
down vote

favorite












I am writing my thesis in Latex, using texmaker but i have too many white pages that i want to get rid of but don't know how. Maybe someone here has an idea:) Here is a MWE:



documentclass[12pt]{book}

begin{document}

begin{titlepage}

include{...}

end{titlepage}

include{./chapters/statutory_declaration}

clearpage

setcounter{tocdepth}{2}

frontmatter

include{./chapters/abstract} %% without this everything is exactly as I wish.. but I'd like to include the abstract on the left page right next to the table of contents... if I include it like this there is another blank page between the statutory_declaration and the abstract and between abstract and table of contents....

tableofcontents

setcounter{page}{0}

mainmatter

include{./chapters/introduction}

include{./chapters/chapter_01}

include{./chapters/chapter_02}

include{./chapters/chapter_03}

include{./chapters/conclusion}

%% Bibliography

bibliographystyle{alpha}

bibliography{...}

end{document}


If someone could help me I would be really thankful!!! Since this is my very first MWE just let me know if I missed something important for you to know.
Thank you!










share|improve this question
























  • Welcome to TeX - LaTeX! This is not really an MWE as it refers to many files we do not have. Relpacing the include... statements by chapter{...}text probably produces something close to what you are seeing. Perhaps tex.stackexchange.com/q/139289/15925 could help with solving your actual problem.
    – Andrew Swann
    Nov 29 at 12:05










  • The simplest could be documentclass[12pt,oneside]{book} or use the answer of Adrew for only some parts, but if the reason is save paper, btw you could also renewcommand{clearpage}{} ... However, do you want to present some kind of brochure or a formal thesis? For the second is always a bad idea do not allow blank pages avoiding start chapters only in even pages.
    – Fran
    Nov 29 at 14:24










  • Thanks Andrew your answer worked just fine for me! You're right I should have replaced the include by a blindtext!
    – Wima19
    Dec 1 at 10:29













up vote
2
down vote

favorite









up vote
2
down vote

favorite











I am writing my thesis in Latex, using texmaker but i have too many white pages that i want to get rid of but don't know how. Maybe someone here has an idea:) Here is a MWE:



documentclass[12pt]{book}

begin{document}

begin{titlepage}

include{...}

end{titlepage}

include{./chapters/statutory_declaration}

clearpage

setcounter{tocdepth}{2}

frontmatter

include{./chapters/abstract} %% without this everything is exactly as I wish.. but I'd like to include the abstract on the left page right next to the table of contents... if I include it like this there is another blank page between the statutory_declaration and the abstract and between abstract and table of contents....

tableofcontents

setcounter{page}{0}

mainmatter

include{./chapters/introduction}

include{./chapters/chapter_01}

include{./chapters/chapter_02}

include{./chapters/chapter_03}

include{./chapters/conclusion}

%% Bibliography

bibliographystyle{alpha}

bibliography{...}

end{document}


If someone could help me I would be really thankful!!! Since this is my very first MWE just let me know if I missed something important for you to know.
Thank you!










share|improve this question















I am writing my thesis in Latex, using texmaker but i have too many white pages that i want to get rid of but don't know how. Maybe someone here has an idea:) Here is a MWE:



documentclass[12pt]{book}

begin{document}

begin{titlepage}

include{...}

end{titlepage}

include{./chapters/statutory_declaration}

clearpage

setcounter{tocdepth}{2}

frontmatter

include{./chapters/abstract} %% without this everything is exactly as I wish.. but I'd like to include the abstract on the left page right next to the table of contents... if I include it like this there is another blank page between the statutory_declaration and the abstract and between abstract and table of contents....

tableofcontents

setcounter{page}{0}

mainmatter

include{./chapters/introduction}

include{./chapters/chapter_01}

include{./chapters/chapter_02}

include{./chapters/chapter_03}

include{./chapters/conclusion}

%% Bibliography

bibliographystyle{alpha}

bibliography{...}

end{document}


If someone could help me I would be really thankful!!! Since this is my very first MWE just let me know if I missed something important for you to know.
Thank you!







abstract






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 29 at 11:59









Andrew Swann

76.2k9127324




76.2k9127324










asked Nov 29 at 11:52









Wima19

111




111












  • Welcome to TeX - LaTeX! This is not really an MWE as it refers to many files we do not have. Relpacing the include... statements by chapter{...}text probably produces something close to what you are seeing. Perhaps tex.stackexchange.com/q/139289/15925 could help with solving your actual problem.
    – Andrew Swann
    Nov 29 at 12:05










  • The simplest could be documentclass[12pt,oneside]{book} or use the answer of Adrew for only some parts, but if the reason is save paper, btw you could also renewcommand{clearpage}{} ... However, do you want to present some kind of brochure or a formal thesis? For the second is always a bad idea do not allow blank pages avoiding start chapters only in even pages.
    – Fran
    Nov 29 at 14:24










  • Thanks Andrew your answer worked just fine for me! You're right I should have replaced the include by a blindtext!
    – Wima19
    Dec 1 at 10:29


















  • Welcome to TeX - LaTeX! This is not really an MWE as it refers to many files we do not have. Relpacing the include... statements by chapter{...}text probably produces something close to what you are seeing. Perhaps tex.stackexchange.com/q/139289/15925 could help with solving your actual problem.
    – Andrew Swann
    Nov 29 at 12:05










  • The simplest could be documentclass[12pt,oneside]{book} or use the answer of Adrew for only some parts, but if the reason is save paper, btw you could also renewcommand{clearpage}{} ... However, do you want to present some kind of brochure or a formal thesis? For the second is always a bad idea do not allow blank pages avoiding start chapters only in even pages.
    – Fran
    Nov 29 at 14:24










  • Thanks Andrew your answer worked just fine for me! You're right I should have replaced the include by a blindtext!
    – Wima19
    Dec 1 at 10:29
















Welcome to TeX - LaTeX! This is not really an MWE as it refers to many files we do not have. Relpacing the include... statements by chapter{...}text probably produces something close to what you are seeing. Perhaps tex.stackexchange.com/q/139289/15925 could help with solving your actual problem.
– Andrew Swann
Nov 29 at 12:05




Welcome to TeX - LaTeX! This is not really an MWE as it refers to many files we do not have. Relpacing the include... statements by chapter{...}text probably produces something close to what you are seeing. Perhaps tex.stackexchange.com/q/139289/15925 could help with solving your actual problem.
– Andrew Swann
Nov 29 at 12:05












The simplest could be documentclass[12pt,oneside]{book} or use the answer of Adrew for only some parts, but if the reason is save paper, btw you could also renewcommand{clearpage}{} ... However, do you want to present some kind of brochure or a formal thesis? For the second is always a bad idea do not allow blank pages avoiding start chapters only in even pages.
– Fran
Nov 29 at 14:24




The simplest could be documentclass[12pt,oneside]{book} or use the answer of Adrew for only some parts, but if the reason is save paper, btw you could also renewcommand{clearpage}{} ... However, do you want to present some kind of brochure or a formal thesis? For the second is always a bad idea do not allow blank pages avoiding start chapters only in even pages.
– Fran
Nov 29 at 14:24












Thanks Andrew your answer worked just fine for me! You're right I should have replaced the include by a blindtext!
– Wima19
Dec 1 at 10:29




Thanks Andrew your answer worked just fine for me! You're right I should have replaced the include by a blindtext!
– Wima19
Dec 1 at 10:29










1 Answer
1






active

oldest

votes

















up vote
1
down vote













The technique of https://tex.stackexchange.com/a/139334/15925 can be applied as follows, removing removing 4 blank pages:



documentclass[12pt]{book}

begin{document}

begin{titlepage}
Title
end{titlepage}

begingroup
letcleardoublepageclearpage

chapter*{Declaration}

setcounter{tocdepth}{2}

frontmatter

chapter*{Abstract}

tableofcontents

endgroup

mainmatter

chapter{Introduction}

chapter{First chapter}

end{document}





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',
    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%2f462367%2fabstract-right-next-to-the-table-of-contents-in-documentclass-book%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








    up vote
    1
    down vote













    The technique of https://tex.stackexchange.com/a/139334/15925 can be applied as follows, removing removing 4 blank pages:



    documentclass[12pt]{book}

    begin{document}

    begin{titlepage}
    Title
    end{titlepage}

    begingroup
    letcleardoublepageclearpage

    chapter*{Declaration}

    setcounter{tocdepth}{2}

    frontmatter

    chapter*{Abstract}

    tableofcontents

    endgroup

    mainmatter

    chapter{Introduction}

    chapter{First chapter}

    end{document}





    share|improve this answer

























      up vote
      1
      down vote













      The technique of https://tex.stackexchange.com/a/139334/15925 can be applied as follows, removing removing 4 blank pages:



      documentclass[12pt]{book}

      begin{document}

      begin{titlepage}
      Title
      end{titlepage}

      begingroup
      letcleardoublepageclearpage

      chapter*{Declaration}

      setcounter{tocdepth}{2}

      frontmatter

      chapter*{Abstract}

      tableofcontents

      endgroup

      mainmatter

      chapter{Introduction}

      chapter{First chapter}

      end{document}





      share|improve this answer























        up vote
        1
        down vote










        up vote
        1
        down vote









        The technique of https://tex.stackexchange.com/a/139334/15925 can be applied as follows, removing removing 4 blank pages:



        documentclass[12pt]{book}

        begin{document}

        begin{titlepage}
        Title
        end{titlepage}

        begingroup
        letcleardoublepageclearpage

        chapter*{Declaration}

        setcounter{tocdepth}{2}

        frontmatter

        chapter*{Abstract}

        tableofcontents

        endgroup

        mainmatter

        chapter{Introduction}

        chapter{First chapter}

        end{document}





        share|improve this answer












        The technique of https://tex.stackexchange.com/a/139334/15925 can be applied as follows, removing removing 4 blank pages:



        documentclass[12pt]{book}

        begin{document}

        begin{titlepage}
        Title
        end{titlepage}

        begingroup
        letcleardoublepageclearpage

        chapter*{Declaration}

        setcounter{tocdepth}{2}

        frontmatter

        chapter*{Abstract}

        tableofcontents

        endgroup

        mainmatter

        chapter{Introduction}

        chapter{First chapter}

        end{document}






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 29 at 12:21









        Andrew Swann

        76.2k9127324




        76.2k9127324






























            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.





            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.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f462367%2fabstract-right-next-to-the-table-of-contents-in-documentclass-book%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?