答案1
修改短语的最简单方法是向文档中添加几行.tex
。
我将以示例文档为基础,您会发现自解释注释之间的变化:
%% ----------------------------------------------------------------
%% Thesis.tex -- MAIN FILE (the one that you compile with LaTeX)
%% ----------------------------------------------------------------
% Set up the document
\documentclass[a4paper, 11pt, oneside]{Thesis} % Use the "Thesis" style, based on the ECS Thesis style by Steve Gunn
\graphicspath{{Figures/}} % Location of the graphics files (set up for graphics to be in PDF format)
% Include any extra LaTeX packages required
\usepackage[square, numbers, comma, sort&compress]{natbib} % Use the "Natbib" style for the references in the Bibliography
\usepackage{verbatim} % Needed for the "comment" environment to make LaTeX comments
\usepackage{vector} % Allows "\bvec{}" and "\buvec{}" for "blackboard" style bold vectors in maths
\hypersetup{urlcolor=blue, colorlinks=true} % Colours hyperlinks in blue, but this can be distracting if there are many links.
%%%% We want to change the phrase `Doctor of Philosophy' in the abstract
%%%% Replace `Anything I want' with the phrase you want (even with nothing)
\usepackage{etoolbox}
\patchcmd{\abstract}{Doctor of Philosophy}{Anything I want}{}{}
%%%% End of change
%% ----------------------------------------------------------------
\begin{document}
无需进行其他更改。
这些模板的一个问题是它们使用了vmargin
包,这可能会导致其他包出现问题,尤其是pdfpages
。另一个问题是颜色的选择。