Page Layout ⇒ page numbering on multiple documents
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
page numbering on multiple documents
The code provided in my last reply keeps the table inside the text body. Add the showframe option to the geometry package and the result.
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
NEW: TikZ book now 40% off at Amazon.com for a short time.
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Re: page numbering on multiple documents
Problem solved! Two possible solutions:
Add the command "\pagestyle{plain}" right above the "\pagenumbering{roman}" command in thesis.tex.
OR (preferred)
Change "\pagestyle{empty}" to "\thispagestyle{empty}" on the copyright and signature pages. (The \pagestyle{plain} in the abstract was why you were getting page numbers in that span, and the \pagenumbering commands were the reason you were getting page numbers elsewhere.)
By the way: the lineno package isn't doing anything for you; the only time you use it is to turn off line numbers, which is the default (unless that's there from a time when you actually did want line numbers).
Add the command "\pagestyle{plain}" right above the "\pagenumbering{roman}" command in thesis.tex.
OR (preferred)
Change "\pagestyle{empty}" to "\thispagestyle{empty}" on the copyright and signature pages. (The \pagestyle{plain} in the abstract was why you were getting page numbers in that span, and the \pagenumbering commands were the reason you were getting page numbers elsewhere.)
By the way: the lineno package isn't doing anything for you; the only time you use it is to turn off line numbers, which is the default (unless that's there from a time when you actually did want line numbers).
Re: page numbering on multiple documents
Pretty much all my problems are resolved, however, I still have a discrepancy in my TOC with respect to my list of figures page number. I am not sure what is going on there, I had taken all of the \clearpage lines out from my main program (thesis.tex) as well as all of the other documents, and that still did not work. Localghost supposedly had the problem resolved, but this was without any actual figures in the document. I may just have to accept it as-is, unless someone else knows what is going on...