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 ?
page-breaking appendices
add a comment |
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 ?
page-breaking appendices
add a comment |
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 ?
page-breaking appendices
Instead of manually putting a newpage
before begin{appendices}
, how can I tell the appendix package to do this ?
page-breaking appendices
page-breaking appendices
edited Jan 8 '13 at 11:23
lockstep
189k52585719
189k52585719
asked Jan 8 '13 at 10:32
Ferguzz
357149
357149
add a comment |
add a comment |
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
.
add a comment |
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}
add a comment |
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
.
add a comment |
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
.
add a comment |
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
.
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
.
answered Jan 8 '13 at 11:18
mafp
14.3k25096
14.3k25096
add a comment |
add a comment |
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}
add a comment |
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}
add a comment |
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}
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}
edited Nov 30 at 9:31
answered Nov 29 at 15:44
TakingItCasual
155
155
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%2f89828%2fappendix-package-option-to-force-page-break-before-appendices%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