我的大学模板的乳胶缩写

我的大学模板的乳胶缩写

我的大学提供了一个可以用来写论文的模板。

这个模板中有一个写论文缩写的基本方法。其实,这种方法并不适合我。我正在寻找一种允许我在每一章中都使用缩写的方法。

注意:每个章节都有一个单独的文件。

这是文件代码:

%% ----------------------------------------------------------------
%% Progress.tex
%% ---------------------------------------------------------------- 
\documentclass{ecsthesis}    % Use the progress Style

\usepackage[table, x11names]{xcolor}
\usepackage{array, booktabs, boldline} %
\usepackage{cellspace}
\graphicspath{{../Figures/}}   % Location of your graphics files
\hypersetup{colorlinks=true}   % Set to false for black/white printing
\input{Definitions}            % Include your abbreviations
\usepackage[sort]{cite}
\usepackage{amsmath}
\usepackage[framed,numbered,autolinebreaks,useliterate]{mcode}
\usepackage{upquote}
\usepackage{subfigure}
\usepackage{multirow}
\usepackage{xcolor,colortbl}
\usepackage[most]{tcolorbox}
\usepackage[section]{placeins}


 \usepackage{grffile}

\usepackage[section]{placeins}
\usepackage{float}

%% ----------------------------------------------------------------
\begin{document}
\frontmatter
\title      {Here is the title}
\authors    {\texorpdfstring
             {\href{mailto:[email protected]}{Name}}
             {Name}
            }

\date       {\today}
\subject    {}
\keywords   {}



\maketitle
\begin{abstract}
Here is the abstract.
\end{abstract}




\tableofcontents
\listoffigures
\listoftables
\lstlistoflistings
\listofsymbols{ll}{$w$ & The weight vector\\
    $E$ & The electric field}
\acknowledgements{ Thanks! }
%\dedicatory{To \dots}
\mainmatter
%% ----------------------------------------------------------------
\include{Introduction}
\backmatter
\bibliographystyle{IEEEtran}
\bibliography{Thesis_references}
\end{document} 
%% ----------------------------------------------------------------

您可以看到表格和图表的列表,他们并不要求我手动编写列表。

例如我使用这个代码来计算:

\begin{figure}[H]
    \centering
    \includegraphics[trim=3.5cm 6.2cm .5cm  .5cm,clip,scale=0.12]{Figures/crystalline.pdf}
    \caption{Scheme of crystalline. }
    \label{fig:crystalline}
\end{figure}

然后,它会自动将此图添加到图列表中。我可以对缩写做类似的事情吗?

相关内容