我使用 2013 年制作的模板编写了简历,从那时起它就一直有效。现在,由于几个月前我重新安装了 Windows 7 和所有东西,我无法再编写这些简历。我可以编写其他文档,例如scrartcl
或scrrprt
。经过反复试验,我发现问题出在行上
\makecvtitle
和
\section{Hobbies}
\cvlistitem{Watching the Grass grow}
当包含这两个之一时,它不会生成 PDF。它将生成文件CV.synctex.(busy)
。但它实际上并不忙 - 任务管理器中没有进程,我可以删除此文件。没有错误通知,但有以下警告,我记得我一直有这个警告,它仍然生成了正确的 PDF:
You have requested package `moderncvheadi',but the package provides `moderncvheadi'.
我正在使用Texmaker 5.0.2
、MikTeX 2.9
和moderncv 2.0.0
。
在 Texmaker 的设置中,我在 pdflatex 字段中(默认情况下存在):
pdflatex -synctex=1 -interaction=nonstopmode %.tex
非常感谢您告诉我需要更改安装或设置等哪些内容,这样我就可以编写我的简历而不用转到另一个课程。
梅威瑟:
\documentclass[11pt,a4paper]{moderncv}
\usepackage[british,ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\moderncvstyle{classic}
\moderncvcolor{blue}
\firstname{John}
\familyname{Smith}
\address{Avocado Avenue}{1234 Longyearbyen}
\mobile{+99 (0)12 345 67 89}
\email{[email protected]}
\title{CV}
\begin{document}
%\makecvtitle %This line causes the compiler to fail
\section{Personal Data}
\cvitem{Date of birth}{1st January 1980}
\section{Experience}
\cventry{1998 -- 2005}{Researcher}{Umbrealla Corporation}{Longyearbyen}{}{Researching Stuff}
\section{Hobbies}
% \cvlistitem{Watching the Grass grow} %This line causes the compiler to fail
\end{document}