我想创建一份包含照片的简历。我使用以下代码
\documentclass[11pt,a4paper,sans]{moderncv}
\usepackage{tabularx}
\moderncvstyle{classic}
\moderncvcolor{blue}
\usepackage[scale=0.75, top=3cm, bottom=1cm]{geometry}
\newcolumntype{C}{>{\centering\arraybackslash}X}
\firstname{Z}
\familyname{L}
\mobile{+1~(000)~47~05}
\email{[email protected]}
%\photo[64pt][0.4pt]{picture}
\begin{document}
\vspace*{-5\baselineskip}
\makecvtitle
\vspace*{-3\baselineskip}
\section{Education}
\cventry{1453 -- 1233}{Master of Science in nothing}{University of
paparia}{}{}{GPA: 3.99/4.00}
\end{document}
没有添加照片的命令,输出就是我想要的。但是当我输入命令 \photo[64pt][0.4pt]{picture}(其中 picture 是包含我的照片的文件夹的名称)时,会出现错误
未找到文件‘图片’。\makecvtitle
答案1
其中 picture 是包含我的照片的文件夹的名称,然后出现错误
也许我误解了这一点。但我认为您应该在 tex 文件旁边放置一个名为 picture.jpg 或 picture.png 的图形(在工作目录中)。
如果你的图形位于工作目录内的图片目录中,它应该是
\photo[64pt][0.4pt]{picture/graphic-name}
此致