如何替换 Latex 中的某个单词

如何替换 Latex 中的某个单词

这是我第一次在 Latex 上工作,我遇到了问题 - 我从下载了一个模板

Latex 模板

这是一个非常好的模板。但是,直到我转到第 4 页(摘要)。我无法用其他内容替换“哲学博士”。我搜索了主文件Thesis.texThesis.cls但没有希望。我猜它属于某种链接文件。

我尝试过这样的事情可能的解决方案但它不起作用。我正在使用 TeXstudio 和 MiKTeX 2.9

在此处输入图片描述

答案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。另一个问题是颜色的选择。

在此处输入图片描述

相关内容