This may be more of a LaTeX question, but here goes. I have been using the
following in my preamble to set page numbers on non-first page of chapters
in the upper right hand corner of the page, rather than centered in the
bottom. This works very well.
%%% Set up page number headings
\newcommand{\ps@pnum}{
\renewcommand{\@oddhead}{\hfil{\thepage}}
\renewcommand{\@evenhead}{\@oddhead}
\renewcommand{\@oddfoot}{}
\renewcommand{\@evenfoot}{}
}
%%% End of heading definition
However, when I use the standard LyX Table of Contents and List of Figure
commands, the headers CONTENTS and LIST OF FIGURES appear. I would like to
remove these headers (I have to conform to my university's thesis
preparation guidelines).
I have tried:
\contentsname{}
\listfigurename{}
But the output is the same.
Any suggestions would be greatly appreciated.
Kevin