我正在尝试在页面背景中添加一个徽章,就像 Lapo. F. More 在“用 latex 写论文”中所做的那样https://tug.org/pracjourn/2008-1/mori/mori.pdf。但是我无法在当前文档中执行它。
我正在使用以下内容,并且我想将徽章放在标题所在的页面中:
\documentclass[12pt,openany, letterpaper, pagesize]{scrbook}
...packages I need for my document...
\begin{document}
\newpage{\pagestyle{empty}\cleardoublepage}
\newpage
\begin{center}
\thispagestyle{empty}
\vspace*{0cm}
\textbf{\huge My title!!!}\\[3.5cm]
\Large\textbf{My name!!!}\\[3.3cm]
\small Submitted in partial fulfillment of the requirements for the degree of:\\
\textbf{Master of Science in Economics}\\[3.3cm]
Director:\\
Mr. something\\[3.3cm]
Line of research:\\
many...\\
2018\\
\end{center}
\end{document}
我需要使用什么软件包以及我应该使用哪些其他附加命令?非常感谢
答案1
您可以在链接的文档中找到它。这是解决方案。(您应该example-image
用自己的图片替换)
\documentclass[12pt,openany, letterpaper, pagesize]{scrbook}
\usepackage{eso-pic,graphicx}
\begin{document}
\newpage{\pagestyle{empty}\cleardoublepage}
\newpage
\begin{center}
\thispagestyle{empty}
\AddToShipoutPicture*{\AtPageCenter{\makebox (0 ,0){\includegraphics[ width =0.9\paperwidth ]{example-image}}}}
\vspace*{0cm}
\textbf{\huge My title!!!}\\[3.5cm]
\Large\textbf{My name!!!}\\[3.3cm]
\small Submitted in partial fulfillment of the requirements for the degree of:\\
\textbf{Master of Science in Economics}\\[3.3cm]
Director:\\
Mr. something\\[3.3cm]
Line of research:\\
many...\\
2018\\
\end{center}
\end{document}