如何将 moderncv 中的引用移动到文档底部

如何将 moderncv 中的引用移动到文档底部

我正在使用 moderncv 模板编写简历,并希望将引言移至文档的最末尾。有什么简单的方法可以实现吗?

答案1

这是一个解决方案

\documentclass[11pt,a4paper,sans]{moderncv}
\moderncvstyle{casual} 
\moderncvcolor{blue}
\name{Some}{One}
\title{Some Title} 
\address{99, somwhere}{city}{country}
\phone[mobile]{000000}
\phone[fixed]{11111}
\phone[fax]{222222}
\email{[email protected]}
\homepage{www.mysite.com}
\social[linkedin]{me}
\social[twitter]{someone}
\social[github]{someone}
\extrainfo{more informations}
\photo[64pt][0.4pt]{myfoto}
\quote{some bla bla}

\makeatletter
\AtEndDocument{\ifthenelse{\isundefined{\@quote}}%
    {}%
    {\par\centering\begin{minipage}{\quotewidth}\centering\quotestyle{\@quote}\end{minipage}}}
\let\oldmakecvtitle\makecvtitle
\renewcommand*{\makecvtitle}{%
{\let\@quote\undefined%
\oldmakecvtitle}}
\makeatother

\begin{document}
\makecvtitle
\section{First section}
\cventry{2014-2015}{Foo}{Bar}{Brest}{bla bla}{more bla bla}

\section{Last section}
\cvitem{How}{To do}
\end{document}

相关内容