I would like to have 4 pages at the beginning of the document as title pages.
inbetween \start{titlepage} and \end{titlepage} it isn't possible i think...
I don't wanna make a new chapter is there a nice way to include 3 userdefined pages after the titlepage?
Thanks in advance
vivelafete
Page Layout ⇒ multiple title pages
NEW: TikZ book now 40% off at Amazon.com for a short time.
multiple title pages
Hi,
You're right, there's no such thing as \start{titlepage}.vivelafete wrote:...inbetween \start{titlepage} and \end{titlepage} it isn't possible i think...
Your question contains the answer... let the user define them.vivelafete wrote:...I don't wanna make a new chapter is there a nice way to include 3 userdefined pages after the titlepage?..
1,1,2,3,5,8,13,21,34,55,89,144,233,...
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
multiple title pages
I'm not sure what you mean with »user defined page« in this context. Please explain what you are aiming at.vivelafete wrote:I would like to have 4 pages at the beginning of the document as title pages. […] I don't wanna make a new chapter is there a nice way to include 3 userdefined pages after the titlepage? […]
Best regards
Thorsten¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 11
- Joined: Fri Nov 27, 2009 12:38 pm
multiple title pages
in general:
I'm using doxygen to create a .pdf documentation for C source code.
Doxygen uses the documentclass book.
You can add a titlepage. doxygen uses \begin{titlepage} ... \end{titlepage}. But there you can describe just one page. And I would have 4 title pages in a row.
Then the documentclass book enforces after titlepage and after every chapter an empty page. It wasn't possible for me to get rid of this empty page with /clearpage.
So I thought to make a cover and then I insert 4 "userdefined pages".
to "userdefined pages":
I mean pages that don't start with \chapter{ or something similar that shows a title or enforce a second page.
A page with just tables and some text.
I couldn't find a solution and so i switched to
\documentclass{scrreprt}
where i insert my 4 titlepages with
after \begin{document}.
It's not a nice solution bud it works so far. I just have now a problem with the total page number, then the index pages aren't added to the LastPage and I have now on the last page "page 78 of 75" so I posted before a question about that in the Forum MakeIndex.
I'm still interested how i can make my "userdefined page".
like:
usr_def_p.tex:
then in main.tex
\include_page{usr_def_p}
Thanks
I'm using doxygen to create a .pdf documentation for C source code.
Doxygen uses the documentclass book.
You can add a titlepage. doxygen uses \begin{titlepage} ... \end{titlepage}. But there you can describe just one page. And I would have 4 title pages in a row.
Then the documentclass book enforces after titlepage and after every chapter an empty page. It wasn't possible for me to get rid of this empty page with /clearpage.
So I thought to make a cover and then I insert 4 "userdefined pages".
to "userdefined pages":
I mean pages that don't start with \chapter{ or something similar that shows a title or enforce a second page.
A page with just tables and some text.
I couldn't find a solution and so i switched to
\documentclass{scrreprt}
where i insert my 4 titlepages with
Code: Select all
\chapter*{}
It's not a nice solution bud it works so far. I just have now a problem with the total page number, then the index pages aren't added to the LastPage and I have now on the last page "page 78 of 75" so I posted before a question about that in the Forum MakeIndex.
I'm still interested how i can make my "userdefined page".
like:
usr_def_p.tex:
Code: Select all
\begin{tabular}{|l c|c|c|}
\end{tabular}
\vspace{10mm}
\begin{tabular}{|l c|c|c|}
\end{tabular}
\include_page{usr_def_p}
Thanks