Appendix package option to force page break before appendices











up vote
5
down vote

favorite












Instead of manually putting a newpage before begin{appendices}, how can I tell the appendix package to do this ?










share|improve this question




























    up vote
    5
    down vote

    favorite












    Instead of manually putting a newpage before begin{appendices}, how can I tell the appendix package to do this ?










    share|improve this question


























      up vote
      5
      down vote

      favorite









      up vote
      5
      down vote

      favorite











      Instead of manually putting a newpage before begin{appendices}, how can I tell the appendix package to do this ?










      share|improve this question















      Instead of manually putting a newpage before begin{appendices}, how can I tell the appendix package to do this ?







      page-breaking appendices






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 8 '13 at 11:23









      lockstep

      189k52585719




      189k52585719










      asked Jan 8 '13 at 10:32









      Ferguzz

      357149




      357149






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          8
          down vote













          If you have a chaptered document class, this would be the default behaviour. In documents with top level structure section there is no way to tell the appendix package to insert a page break. That is because sections usually do not start new pages. So you need to manually add a clearpage.






          share|improve this answer




























            up vote
            0
            down vote













            The etoolbox package provides commands for inserting commands around/within environments.
            I've included some related (commented) commands you may find useful.



            documentclass{article}

            usepackage{appendix}
            usepackage{etoolbox}

            % Inserts clearpage before begin{appendices}
            BeforeBeginEnvironment{appendices}{clearpage}
            % Inserts clearpage after end{appendices}
            %AfterEndEnvironment{appendices}{clearpage}

            % Inserts clearpage before every section within appendices environment
            %AtBeginEnvironment{appendices}{pretocmd{section}{clearpage}{}{}}{}

            begin{document}
            section{Pre1}
            section{Pre2}

            begin{appendices}
            section{App1}
            section{App2}
            end{appendices}

            section{Post1}
            section{Post2}
            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%2f89828%2fappendix-package-option-to-force-page-break-before-appendices%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








              up vote
              8
              down vote













              If you have a chaptered document class, this would be the default behaviour. In documents with top level structure section there is no way to tell the appendix package to insert a page break. That is because sections usually do not start new pages. So you need to manually add a clearpage.






              share|improve this answer

























                up vote
                8
                down vote













                If you have a chaptered document class, this would be the default behaviour. In documents with top level structure section there is no way to tell the appendix package to insert a page break. That is because sections usually do not start new pages. So you need to manually add a clearpage.






                share|improve this answer























                  up vote
                  8
                  down vote










                  up vote
                  8
                  down vote









                  If you have a chaptered document class, this would be the default behaviour. In documents with top level structure section there is no way to tell the appendix package to insert a page break. That is because sections usually do not start new pages. So you need to manually add a clearpage.






                  share|improve this answer












                  If you have a chaptered document class, this would be the default behaviour. In documents with top level structure section there is no way to tell the appendix package to insert a page break. That is because sections usually do not start new pages. So you need to manually add a clearpage.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jan 8 '13 at 11:18









                  mafp

                  14.3k25096




                  14.3k25096






















                      up vote
                      0
                      down vote













                      The etoolbox package provides commands for inserting commands around/within environments.
                      I've included some related (commented) commands you may find useful.



                      documentclass{article}

                      usepackage{appendix}
                      usepackage{etoolbox}

                      % Inserts clearpage before begin{appendices}
                      BeforeBeginEnvironment{appendices}{clearpage}
                      % Inserts clearpage after end{appendices}
                      %AfterEndEnvironment{appendices}{clearpage}

                      % Inserts clearpage before every section within appendices environment
                      %AtBeginEnvironment{appendices}{pretocmd{section}{clearpage}{}{}}{}

                      begin{document}
                      section{Pre1}
                      section{Pre2}

                      begin{appendices}
                      section{App1}
                      section{App2}
                      end{appendices}

                      section{Post1}
                      section{Post2}
                      end{document}





                      share|improve this answer



























                        up vote
                        0
                        down vote













                        The etoolbox package provides commands for inserting commands around/within environments.
                        I've included some related (commented) commands you may find useful.



                        documentclass{article}

                        usepackage{appendix}
                        usepackage{etoolbox}

                        % Inserts clearpage before begin{appendices}
                        BeforeBeginEnvironment{appendices}{clearpage}
                        % Inserts clearpage after end{appendices}
                        %AfterEndEnvironment{appendices}{clearpage}

                        % Inserts clearpage before every section within appendices environment
                        %AtBeginEnvironment{appendices}{pretocmd{section}{clearpage}{}{}}{}

                        begin{document}
                        section{Pre1}
                        section{Pre2}

                        begin{appendices}
                        section{App1}
                        section{App2}
                        end{appendices}

                        section{Post1}
                        section{Post2}
                        end{document}





                        share|improve this answer

























                          up vote
                          0
                          down vote










                          up vote
                          0
                          down vote









                          The etoolbox package provides commands for inserting commands around/within environments.
                          I've included some related (commented) commands you may find useful.



                          documentclass{article}

                          usepackage{appendix}
                          usepackage{etoolbox}

                          % Inserts clearpage before begin{appendices}
                          BeforeBeginEnvironment{appendices}{clearpage}
                          % Inserts clearpage after end{appendices}
                          %AfterEndEnvironment{appendices}{clearpage}

                          % Inserts clearpage before every section within appendices environment
                          %AtBeginEnvironment{appendices}{pretocmd{section}{clearpage}{}{}}{}

                          begin{document}
                          section{Pre1}
                          section{Pre2}

                          begin{appendices}
                          section{App1}
                          section{App2}
                          end{appendices}

                          section{Post1}
                          section{Post2}
                          end{document}





                          share|improve this answer














                          The etoolbox package provides commands for inserting commands around/within environments.
                          I've included some related (commented) commands you may find useful.



                          documentclass{article}

                          usepackage{appendix}
                          usepackage{etoolbox}

                          % Inserts clearpage before begin{appendices}
                          BeforeBeginEnvironment{appendices}{clearpage}
                          % Inserts clearpage after end{appendices}
                          %AfterEndEnvironment{appendices}{clearpage}

                          % Inserts clearpage before every section within appendices environment
                          %AtBeginEnvironment{appendices}{pretocmd{section}{clearpage}{}{}}{}

                          begin{document}
                          section{Pre1}
                          section{Pre2}

                          begin{appendices}
                          section{App1}
                          section{App2}
                          end{appendices}

                          section{Post1}
                          section{Post2}
                          end{document}






                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Nov 30 at 9:31

























                          answered Nov 29 at 15:44









                          TakingItCasual

                          155




                          155






























                              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%2f89828%2fappendix-package-option-to-force-page-break-before-appendices%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?