Solution for “List of Tables (Continued)” missing from LaTeX documents using the BeavTeX.cls style file

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!

Solution for “Table of Contents (Continued)” not showing up when using the BeavTeX.cls style file in LaTeX

I am currently finishing up final edits on my dissertation and ran across an issue with the BeavTeX.cls style file that grad students have been using at Oregon State University to publish their dissertations for many years.  After the first page of a multi-page table of contets, every other page of the table of contents was missing its header.  I opened up the BeavTeX.cls file and found the following lines of code:

\def\ps@tocb{\def\@evenhead{\vbox to \headheight{
\centerline{TABLE OF CONTENTS (Continued)}\hfil\break
\rm\flushright\protect\underline{Page}\break}}
\def\@oddhead{}
\def\@oddfoot{}
\def\@evenfoot{}
}

The problem originates in the \def@oddhead{} where the odd headers are defined to be blank. I fixed the issue by copying the contents of the even headers into the odd header definition. The code snippet now looks like:

\def\ps@tocb{\def\@evenhead{\vbox to \headheight{
\centerline{TABLE OF CONTENTS (Continued)}\hfil\break
\rm\flushright\protect\underline{Page}\break}}
\def\@oddhead{\vbox to \headheight{
\centerline{TABLE OF CONTENTS (Continued)}\hfil\break
\rm\flushright\protect\underline{Page}\break}} %added this stuff in
\def\@oddfoot{}
\def\@evenfoot{}
}

Hopefully this will help out a few fellow Beavers as they wrap up edits to their dissertations and theses.

Yet Another YouTube Fail

Another day, another YouTube/Google fail.  This time they have decided that a video I took of flood water passing under the Irish Bend Covered Bridge is not worthy of monetization.  Yet they still place ads on the page with my video.  Interestingly, unlike the video that was rejected outright from monetization, this video still has the option in the video manager on YouTube of re-enabling ads.  I wonder if I should try my luck and re-enable.

Google and YouTube continue to disappoint me.  If only Vimeo didn’t charge for their service.