带有大学徽标的标题页

带有大学徽标的标题页

我是 Latex 的初学者,我意识到以前有人问过类似的问题,但我真的不知道该怎么做。以下是示例标题页的代码,它对我来说不起作用:http://www.mat.univie.ac.at/~cap/spl/titlepage.tex以下是论文标题页的示例:http://othes.univie.ac.at/32753/1/2014-04-16_0348909.pdf我收到的第一个错误是!LaTeX 错误:未找到文件“RZ_Logo_Uni_sw”。这是撰写论文的人的文件吗?我确实在计算机上下载了大学徽标,并在其位置写入了文件的名称:\includegraphics{uni_logo_farbe_01}。我收到了相同的错误消息。

删除 \includegraphics 后,我仍然收到错误消息:段落在 \text@command 完成之前结束。尽管如此,我肯定需要 uni 徽标,但似乎这不是唯一的问题。

答案1

\documentclass{report}

\usepackage[demo]{graphicx}

\begin{document}

\input{titlepage.tex} %Following the advice given in the template

\end{document}

% >>>>> BEGINN TITEL >>>>>如果在相应的代码块(和之间)添加标题和名称,%``The Creation of a Title Page''并且作者也相同,则可以很好地进行编译:

\LARGE{\textsf{  % Hier kommt der eigentliche Titel, bei Bedarf mit \\
                 % ACHTUNG: Deutsche Anfuehrungszeichen: ,,Titel``
                 %          English quotes:              ``title''
    % >>>>> BEGINN TITEL >>>>>
    This is my Title
    %``The Creation of a Title Page''
    % <<<<< ENDE TITEL <<<<<
}}

模板中的空白行造成了问题,它标记了一个新段落。

相关内容