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.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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}
\cleapageThesis 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