LyX ⇒ Thesis HELP!!!!! (format and page numbers)
Thesis HELP!!!!! (format and page numbers)
I need to have the front matter in Roman numerals and the title page has to count as page one, but not have a visible page number.
so far I have got the roman numerals working but when it passes by my abstract it stops counting and then starts counting form one afterwards again.
I am using the Report document class. Can anyone help. This is urgent.
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
Thesis HELP!!!!! (format and page numbers)
Code: Select all
\setcounter{page}{5}
Thesis HELP!!!!! (format and page numbers)
How do I force the abstract to have a page number though, because so far one is not presentphp1ic wrote:I don't know a general way to stop the page counter reseting, but you could try usingor whatever number you need before/after the abstract, if you run out of time and no other solutions are suggested.Code: Select all
\setcounter{page}{5}
Thesis HELP!!!!! (format and page numbers)

You could add the abstract 'manually' using page breaks as needed, and the \setcounter command previously mentioned, something like
Code: Select all
\pagenumbering{roman}
\thispagestyle{plain}
\hfill
\vspace{0.3\textheight}
\begin{center}
\textbf{Abstract}\\[1em]
This is my abstract
\end{center}
\cleapage
Thesis HELP!!!!! (format and page numbers)
Thanks you were a big help. I managed to get it in there ok and just dropped the "abstract" section and made my own using \newline and such.php1ic wrote:I'm sorry, I don't know![]()
You could add the abstract 'manually' using page breaks as needed, and the \setcounter command previously mentioned, something like
This seems like an ugly hack so you may need to change the above code for your case. However, it should work.Code: Select all
\pagenumbering{roman} \thispagestyle{plain} \hfill \vspace{0.3\textheight} \begin{center} \textbf{Abstract}\\[1em] This is my abstract \end{center} \cleapage