My teacher has asked me to add my name on every page of my report. Is there a nice way of doing this so my name appears in a subtle way?
[Tex/LaTex] How to add the name on every page corner in Lyx
header-footerlyx
header-footerlyx
My teacher has asked me to add my name on every page of my report. Is there a nice way of doing this so my name appears in a subtle way?
Best Answer
For adding your name to the header/footer, LyX provides "fancy" heading via the
fancyhdr
package. First, activate these style headings (Document > Settings... > Page Layout > Heading Style):Now add the following code to your LaTeX Preamble (also under Document > Settings...):
The first three lines set clears the header/footer, and sets the
L
andR
footer respectively. The last three lines replaces theplain
page style (typically associated with title pages and the like) to be equivalent to thefancy
page style. This might not be necessary in your case.