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!
abstract
add a comment |
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!
abstract
Welcome to TeX - LaTeX! This is not really an MWE as it refers to many files we do not have. Relpacing theinclude...
statements bychapter{...}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 bedocumentclass[12pt,oneside]{book}
or use the answer of Adrew for only some parts, but if the reason is save paper, btw you could alsorenewcommand{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
add a comment |
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!
abstract
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
abstract
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 theinclude...
statements bychapter{...}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 bedocumentclass[12pt,oneside]{book}
or use the answer of Adrew for only some parts, but if the reason is save paper, btw you could alsorenewcommand{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
add a comment |
Welcome to TeX - LaTeX! This is not really an MWE as it refers to many files we do not have. Relpacing theinclude...
statements bychapter{...}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 bedocumentclass[12pt,oneside]{book}
or use the answer of Adrew for only some parts, but if the reason is save paper, btw you could alsorenewcommand{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
add a comment |
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}
add a comment |
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}
add a comment |
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}
add a comment |
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}
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}
answered Nov 29 at 12:21
Andrew Swann
76.2k9127324
76.2k9127324
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%2f462367%2fabstract-right-next-to-the-table-of-contents-in-documentclass-book%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
Welcome to TeX - LaTeX! This is not really an MWE as it refers to many files we do not have. Relpacing the
include...
statements bychapter{...}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 alsorenewcommand{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