我用模板写了我的论文清洁论文。现在我想在我的论文中添加一份简历,我想用 modernCV 类来写简历。由于 modernCV 是一个类,我需要将其单独复制为 pdf 文档并将其包含在我的 cleanthesis 模板中。我已经调整了颜色和字体,如中所述更改 moderncv 使用的字体和为 moderncv 创建附加颜色。然而,cleanthesis 中的页脚如下所示
是否可以将此页脚集成到 modernCV 中并用“简历”一词替换“内容”?
这是 moderncv 的 latex 版本,字体和颜色均已更改
\RequirePackage{filecontents}
\begin{filecontents*}{moderncvcolorburgundy.sty}
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{moderncvcolorburgundy}[2013/02/09 v1.3.0 modern curriculum vitae and letter color scheme: burgundy]
\definecolor{color0}{rgb}{0,0,0}% black
\definecolor{color1}{cmyk}{1, .50, .10, .01}% burgundy
%\definecolor{color1}{rgb}{0.2,0.2,0.2}% Testcolor
\definecolor{color2}{rgb}{0.45,0.45,0.45}% dark grey
\endinput
\end{filecontents*}
\documentclass[11pt,a4paper]{moderncv}
\RequirePackage[T1]{fontenc} % font types and character verification
\usepackage{lmodern} % font set: Latin Modern
\usepackage{charter} % font set: Charter
\renewcommand{\sfdefault}{\rmdefault}
\RequirePackage{microtype} % typographic tuning
\newcommand{\tgherosfont}{\fontfamily{qhv}\selectfont}
\moderncvstyle{casual} % las opciones de estilo son 'casual' (por omision),'classic', 'oldstyle' y 'banking'
\moderncvcolor{burgundy} % opciones de color 'blue' (por omision), 'orange', 'green', 'red', 'purple', 'grey' y 'black'
\usepackage[scale=0.75]{geometry}
%\setlength{\hintscolumnwidth}{3cm} % si desea cambiar el ando de la columna para las fechas
% datos personales
\name{John}{Doe}
\begin{document}
%\begin{CJK*}{UTF8}{gbsn} % para redactar el CV en chino usando CJK
%\maketitle
{\Huge \tgherosfont Curricula Vitae}
\vspace*{20pt}
\section{ \tgherosfont Personal}
\cvitem{Surname:}{Max}
\cvitem{Forename:}{Muster}
\cvitem{Date of birth:}{16.01.1918}
\cvitem{Birthplace:}{Berlin}
\cvitem{Citizenship:}{German}
\section{\tgherosfont Studies}
\cventry{since 2013}{Freie Universit\"at Berlin}{Promotion}{}{}{Somewhere}
\end{document}