更改 gatech-thesis 文档类别中的大学名称

更改 gatech-thesis 文档类别中的大学名称

我正在尝试使用 gatech-thesis 文档类撰写论文,但它在文档的各个地方一直显示佐治亚理工学院。我该如何将其更改为另一所大学的名称?可以在类文件中找到这里

答案1

gatech-thesis.cls在文件中找到以下代码:

\newcommand{\title@text}{
  \开始{中心}
    \如果论文提案
       论文提案
       呈现给\\
       学术人员
    \别的
       \ifdissertation 学位论文\else 论文\fi\\
       呈现给\\
       学术人员
    \fi
    \ \\
    经过\\
    \ \\
    {\@作者}\\
    \vspace*{1.1in}
    部分实现 \\
    学位要求 \\
    {\@学位
    \iflist主要
       \\ {\@主要的}\\
       \vfill
       {\@部门}\\
    \别的
       部门}\\
       \vfill
    \fi
       佐治亚理工学院\\%
    {\@提交日期}%
    \如果版权
      \\ \vspace*{.3in}% 一行 + 0.3in
      版权所有 \copyright\ {\@copyrightyear} 归 {\@author} 所有
    \fi
  \结束{中心}
}

更改佐治亚理工学院任何你想要的。

答案2

这是在类文件中硬编码的。您必须重新定义标题宏:

\documentclass[12pt]{gatech-thesis}
\makeatletter
\renewcommand\title@text{
  \begin{center}
    \ifthesisproposal
       A Thesis Proposal\\
       Presented to\\
       The Academic Faculty\\
    \else
       A \ifdissertation Dissertation\else Thesis\fi\\
       Presented to\\
       The Academic Faculty\\
    \fi
    \ \\
    by\\
    \ \\
    {\@author}\\
    \vspace*{1.1in}
    In Partial Fulfillment \\
    of the Requirements for the Degree \\
    {\@degree} in
    \iflistmajor
       \\ {\@major}\\
       \vfill
       {\@department}\\
    \else
       the\\ {\@department}\\
       \vfill
    \fi
%       Georgia Institute of Technology\\%%%%%%%%%%%%%%%%%%%%%%%%
        My University\\                  %%%%%%%%%%%%%%%%%%%%%%%%
    {\@submitdate}%
    \ifcopyright
      \\ \vspace*{.3in}% one line + 0.3in
      Copyright \copyright\ {\@copyrightyear} by {\@author}
    \fi
  \end{center}
}

\makeatother
\usepackage{amsmath,amssymb,latexsym,float,epsfig,subfigure}
\title{The Elements of Thesis}
[...]

相关内容