我正在尝试使用moderncv
和moderntimeline
包来创建我的 CV。但是,如果我指定moderntimelinecv
应为蓝色,则颜色与包中的蓝色不匹配moderncv
。
\documentclass[11pt,a4paper,sans]{moderncv}
\moderncvstyle{classic}
\moderncvcolor{blue}
\usepackage{moderntimeline}
\tlwidth{0.8ex}
\tltext{\tiny}
\tllabelcventry[blue]{1999}{2000}{1999--2000}{Paramedic}
{\href{http://www.croix-rouge.fr/}{French Red Cross}}{Paris Suburbs}{}
{Served in several volunteer missions as a paramedic}
有没有办法让两者都是蓝色的moderncv
?
感谢您的帮助。
答案1
正如 Johannes_B 指出的那样,“浅蓝色”已经在通过\moderncvcolor{blue}
as加载的 sty 文件中定义
\definecolor{color1}{rgb}{0.22,0.45,0.70}% light blue
因此,您只需在文档中使用此颜色即可,如下所示:
\documentclass[11pt,a4paper,sans]{moderncv}
\moderncvstyle{classic}
\moderncvcolor{blue}
\usepackage{moderntimeline}
\tlwidth{0.8ex}
\tltext{\tiny}
\tllabelcventry[color1]{1999}{2000}{1999--2000}{Paramedic} % change blue to color1 here
{\href{http://www.croix-rouge.fr/}{French Red Cross}}{Paris Suburbs}{}
{Served in several volunteer missions as a paramedic}
...