I've been humming along on my LaTeX docs lately and feeling pretty good about what I've learned (though, I've only scratched the surface), but I've hit a minor mystery. I've got a header and footer that appears on every page (except the title page, of course) but not on the table of contents page. Here's the code for the header and footer:
Code: Select all
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[RO,LE]{\tiny\bfseries Product Name}
\fancyfoot{}
\fancyfoot[LE,RO]{\tiny\thepage}
\fancyfoot[LO,RE]{\tiny User Guide}
\fancyfoot[C]{\tiny\copyright 2008 Product Inc.}
The only thing in the footer is the page number in roman numerals. Is there a way to get the header and footer to appear on this page as well?
Thanks.
-Trip