Page Layout ⇒ multiple title pages
-
- Posts: 11
- Joined: Fri Nov 27, 2009 12:38 pm
multiple 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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
multiple title pages
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?..
- 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¹
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
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