moderncv 类不适用于紫色

moderncv 类不适用于紫色

我最近才开始使用 LaTeX。
我看过一份很好的简历,它可以用来moderncv,但是我无法将颜色改为紫色。我不明白为什么。
它可以与其他颜色一起使用,蓝色、橙色等。

\moderncvtheme[purple]{casual} 

有人知道如何变成紫色或者为什么会发生这种情况吗?

平均能量损失

\documentclass[11pt,a4paper]{moderncv}

 % moderncv themes
\moderncvtheme[purple]{casual}
% character encoding
\usepackage[utf8]{inputenc}                   % replace by the encoding you are using
% adjust the page margins
\usepackage[scale=0.8]{geometry}
%\setlength{\hintscolumnwidth}{3cm}  

\firstname{First Name}
\familyname{Family Name}
\title{Curriculum Vitae} 

\begin{document}
\maketitle \\[-4.5em]

\section{Personal details}
\cvline{e-mail}{\small \\[-1.65em]
\cvline{mobile} {\small }\\[-1.65em]
 \cvline{nationality}{\small }\\[-1.65em]
\cvline{date of birth}{\small }\\[-2.5em]

\end{document}

答案1

颜色purple选项是在 0.13.0 版本moderncv(2011 年 11 月 6 日发布)中添加的。

根据你使用的 LaTeX 发行版(是的,我正在看 Ubuntu <12.10...),你可能仍在使用非常的版本已过时moderncv。请检查您的版本.log,以查明这是否是导致您出现问题的原因,并从以下位置更新 moderncv卡坦或者发射台因此。

答案2

您给出的 MWE 对我有用(删除您的几个之后\\[-1.65em])。如果我将您的线条更改\moderncvtheme[purple]{casual}\moderncvtheme[blue]{casual}文档中的颜色也会改变。

我认为您使用的 pdf 查看器没有显示颜色变化。我建议您将紫色和蓝色简历存储在两个 pdf 文件中。然后使用 Acrobat Reader 或 SumatraPDF 查看简历,您将看到颜色变化。也可能是您必须调整屏幕...

改变后的 MWE:

%http://tex.stackexchange.com/questions/83528/moderncv-doesnt-work-with-purple
\documentclass[11pt,a4paper]{moderncv}

 % moderncv themes
 \moderncvtheme[purple]{casual} % purple color in CV
%\moderncvtheme[blue]{casual}   % blue color in CV
% character encoding
\usepackage[utf8]{inputenc}                   % replace by the encoding you are using
% adjust the page margins
\usepackage[scale=0.8]{geometry}
%\setlength{\hintscolumnwidth}{3cm}  

\firstname{First name}
\familyname{Family name}
\title{Curriculum Vitae} 

\begin{document}
\maketitle 

\section{Personal details}
\cvline{e-mail}{\small} 
\cvline{mobile}{\small} 
\cvline{nationality}{\small}  
\cvline{date of birth}{\small}

\end{document}

相关内容