Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 35 additions & 37 deletions authesis.cls
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
% SOFTWARE.
% SOFTWARE.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\NeedsTeXFormat{LaTeX2e}[2025/11/01]
\ProvidesClass{authesis}[2026/06/03 v1.0.0 Auburn University Graduate School Dissertation/Thesis]
Expand Down Expand Up @@ -142,7 +142,7 @@
\newcommand{\degreetype}[1]{\def\@degreetype{#1}}
\newcommand{\keywords}[1]{\def\@keywords{#1}}
\newcommand{\committee}[1]{\def\@committee{#1}}
\newcommand{\committeemember}[1]{\item{\hspace{-1.5em}#1}}
\newcommand{\committeemember}[1]{\item\parbox[t]{\textwidth}{\centering #1}}
\ifdissertation
\def\thesistype{dissertation}
\else
Expand All @@ -151,9 +151,8 @@
\renewcommand{\maketitle}{%
\newgeometry{margin=1in,top=2in,bottom=1in}
\thispagestyle{empty}
\begin{center}
\newpage
\singlespacing
\begin{singlespace}
\begin{center}
\setlength{\parskip}{0pt}
\tagstructbegin{tag=Title}
\tagmcbegin{tag=Title}
Expand All @@ -165,17 +164,17 @@
\tagpdfsetup{para/tagging=true}
\tagmcend
\tagstructend

%
\vspace{\baselineskip}

%
by \par

%
\vspace{\baselineskip}

%
\@author\par

\vspace{4\baselineskip}

%
\vspace{4\baselineskip}
%
% Handle default degree type
\ifdefined\@degreetype
\def\@@degreetype{\@degreetype}
Expand All @@ -192,33 +191,32 @@
in partial fulfillment of the\\
requirements for the Degree of\\
\@@degreetype \par

%
\vspace{\baselineskip}

%
Auburn, Alabama \par
\@date \par

\vspace{4\baselineskip}

\ifdefined\@keywords
Keywords: \@keywords \par
\vspace{2\baselineskip}
\fi

\ifcopyright
Copyright {\the\year{}} by \@author \par
\vspace{2\baselineskip}
\fi

Approved by\par
\begin{itemize}[label={}]
\setlength{\itemsep}{0pt}
\setlength{\parskip}{0pt}
\setlength{\parsep}{0pt}
\centering
\@committee
\end{itemize}
\end{center}
%
\vspace{4\baselineskip}
%
\ifdefined\@keywords
Keywords: \@keywords \par
\vspace{2\baselineskip}
\fi
%
\ifcopyright
Copyright {\the\year{}} by \@author \par
\vspace{2\baselineskip}
\fi
%
Approved by\par
\end{center}
\begin{list}{}{\leftmargin=0em \itemsep=0pt}
\sloppy
\setlength{\parskip}{0pt}
\@committee
\end{list}
\end{singlespace}
\restoregeometry
}

Expand Down Expand Up @@ -265,4 +263,4 @@
\RequirePackage[backend=biber, biblabel=brackets, defernumbers=true]{biblatex}
\DeclareCiteCommand{\citenum}{}{\bibhyperref{\printfield{labelnumber}}}{\multicitedelim}{}
\setlength{\bibitemsep}{\baselineskip}
\AtBeginBibliography{\singlespacing}
\AtBeginBibliography{\singlespacing}
8 changes: 4 additions & 4 deletions main.tex
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@

% one entry per committee member
\committee{
\committeemember Bob Barnard, Chair, Professor of Nutritional Sciences
\committeemember Charlie Clarke, Associate Professor of Nutritional Sciences
\committeemember Dan Drower, Professor of Nutritional Sciences
\committeemember Eve Earlsfield, Professor of English
\committeemember{Bob Barnard, Chair, Professor of Nutritional Sciences}
\committeemember{Charlie Clarke, Associate Professor of Nutritional Sciences with a Really Really Really Really Really Really Long Title}
\committeemember{Dan Drower, Professor of Nutritional Sciences}
\committeemember{Eve Earlsfield, Professor of English}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

Expand Down
Loading