我正在使用这里的模板 https://www.sharelatex.com/templates/cv/moderncv-classic/
每次我排版简历时,我都希望 texworks 在文档结束前添加最新日期、地点和签名(.jpg 项目)。我应该怎么做?
答案1
只需在之前写出来\end{document}
,就像在任何其他文档类型中一样:)
您可以使用\today
日期,并\includegraphics
包含您的.jpg
。
答案2
对于日期,如果您想将其作为简历最后一页的页脚,可以使用 tikzpicture 环境,如下所示
\begin{tikzpicture}[remember picture,overlay]
\node[anchor=south, yshift=0.25cm] at (current page.south) {\textit{Last update: \today}};
\end{tikzpicture}
对于签名,请遵循Xavier的回答;)
答案3
在你的文档环境中,您可以合并以下代码:
\emptysection{}\closesection
\vfill
\begin{center}
\textit{\small\today}
\end{center}
此外,您还可以包括您的签名.jpg使用\includegraphics
命令。