问题的解答moderncv 中的要点不再起作用,但将来使用起来似乎不错。
\documentclass[11pt,a4paper]{moderncv}
\usepackage[utf8]{inputenc}
\moderncvstyle{casual}
\moderncvcolor{green}
\usepackage[scale=0.75]{geometry}
\name{Some}{John Doe}
\title{Resume title}
\address{Dirección}{CP, Ciudad}{País}%
\phone[mobile]{000-000-000-000}
\phone[fixed]{+2~(345)~678~901}
\phone[fax]{+3~(456)~789~012}
\email{[email protected]}
\homepage{www.johndoe.com}
\extrainfo{additional information}
\photo[64pt][0.4pt]{picture}
\renewcommand*{\footersymbol}{\qquad}
%----------------------------------------------------------------------------------
% content
%----------------------------------------------------------------------------------
\begin{document}
\maketitle
\end{document}
我无法编译这段代码。
有任何想法吗?
答案1
不幸的是,仍然没有手册moderncv
,所以我查看了源代码。
要删除项目符号,请更改footersymbol
为footsymbol
。以下代码现在应该可以编译:
\documentclass[11pt,a4paper]{moderncv}
\usepackage[utf8]{inputenc}
\moderncvstyle{casual}
\moderncvcolor{green}
\usepackage[scale=0.75]{geometry}
\name{Some}{John Doe}
\title{Resume title}
\address{Dirección}{CP, Ciudad}{País}%
\phone[mobile]{000-000-000-000}
\phone[fixed]{+2~(345)~678~901}
\phone[fax]{+3~(456)~789~012}
\email{[email protected]}
\homepage{www.johndoe.com}
\extrainfo{additional information}
%\photo[64pt][0.4pt]{picture}
\renewcommand*{\footsymbol}{\qquad} %change from 'footersymbol' to 'footsymbol'
%----------------------------------------------------------------------------------
% content
%----------------------------------------------------------------------------------
\begin{document}
\maketitle
\end{document}