Hello,
I am writing a document using the template available here:
http://openwetware.org/wiki/LaTeX_te...for_PhD_thesis
I can't remove the line at the top of the second page. The text of this page can be removed easily because it's present in the source file "thesis.tex". However, for the rule, I removed the header pages, and look at the code on the document class "PhDthesisPSnPDF.cls", but without success.
Thank you very much for your help.
Page Layout ⇒ Remove Rule from Header
NEW: TikZ book now 40% off at Amazon.com for a short time.

-
- Posts: 45
- Joined: Fri Mar 16, 2012 8:22 pm
Remove Rule from Header
Hi and welcome to the board
http://openwetware.org/wiki/LaTeX_templ ... PhD_thesis
I just want to make sure I have the right one.
The line is part of the header. By looking trough the class, they used the fancyhdr package to make those headers. To remove the line, simply add the following before the
Have a nice day
Alain Rémillard
First, your link didn't work in my browser. A little research on the website gave me the following:poilou2607 wrote:Hello,
I am writing a document using the template available here:
http://openwetware.org/wiki/LaTeX_te...for_PhD_thesis
http://openwetware.org/wiki/LaTeX_templ ... PhD_thesis
I just want to make sure I have the right one.
Don't ever modify the class file unless you know exactly what you're doing.poilou2607 wrote:I can't remove the line at the top of the second page. The text of this page can be removed easily because it's present in the source file "thesis.tex". However, for the line, I removed the header pages, and look at the code on the document class "PhDthesisPSnPDF.cls", but without success.
The line is part of the header. By looking trough the class, they used the fancyhdr package to make those headers. To remove the line, simply add the following before the
\begin{document}
in your source file.
Code: Select all
\pagestyle{fancy}\renewcommand{\headrulewidth}{0pt}
Alain Rémillard
-
- Posts: 4
- Joined: Mon Nov 05, 2012 3:38 pm
Re: Remove Rule from Header
Thank you very much! it works.