http://hea-www.harvard.edu/~alexey/emulateapj
Instead of the title being Table 1, Table 2,
I'd like it to be Supplemental Table 1, Supplemental Table 2, etc.
So, as a kludge, I found that if I go into the emulateapj,cls file and change:
Code: Select all
\if@chicago
\def\@eapj@cap@font{\scshape}
\def\@eapj@figname{Fig.}
\def\@eapj@tabname{TABLE}
\else
\def\@eapj@cap@font{\bfseries}
\def\@eapj@figname{Figure}
\def\@eapj@tabname{Table}
\fi
Code: Select all
\if@chicago
\def\@eapj@cap@font{\scshape}
\def\@eapj@figname{Fig.}
\def\@eapj@tabname{SUPPLEMENTAL TABLE}
\else
\def\@eapj@cap@font{\bfseries}
\def\@eapj@figname{Figure}
\def\@eapj@tabname{Table}
\fi
But I would rather not touch the cls file, obviously.
So, I'm trying to figure out how to just put something into my .tex file.
I tried something like this:
Code: Select all
\newcommand\startsupplement{%
\makeatletter
\renewcommand\def\@eapj@tabname{SUPPLEMENTAL TABLE}
\makeatother}
And I tried playing with redefining this line:
Code: Select all
\def\fnum@table{{\@eapj@cap@font \@eapj@tabname~\thetable}}
I've spent several hours now googling and trying things, so I'm just going to ask the Forum.
Thanks.