While wrapping up final edits on my dissertation, I have run into a few issues with the BeavTeX.cls style file that many Oregon State University graduate students use. In a previous post I found the source of “Table of Contents (Continued)” not displaying on odd pages. I found a similar problem with the “List of Tables (Continued)” header on odd pages. In the BeavTeX.cls style file the following lines of code are at fault:
\def\ps@lotb{\def\@evenhead{\vbox to \headheight{
\centerline{LIST OF TABLES (Continued)}\hfil\break\strut
\rm\protect\underline{Table}\hfill
\rm\hfill\protect\underline{Page}\break }}
\def\@evenhead{}
\def\@oddfoot{}
\def\@evenfoot{}
}
Changing them to the following will fix the problem:
\def\ps@lotb{\def\@evenhead{\vbox to \headheight{
\centerline{LIST OF TABLES (Continued)}\hfil\break\strut
\rm\protect\underline{Table}\hfill
\rm\hfill\protect\underline{Page}\break }}
\def\@evenhead{\vbox to \headheight{
\centerline{LIST OF TABLES (Continued)}\hfil\break\strut
\rm\protect\underline{Table}\hfill
\rm\hfill\protect\underline{Page}\break }} %this has been added in
\def\@oddfoot{}
\def\@evenfoot{}
}
I hope this helps future graduate students!