在 \cventry 中为 modercv 插入徽标(经典风格)

在 \cventry 中为 modercv 插入徽标(经典风格)

我正在moderncv为我的简历使用它。我做了moderncvstyleclassic.sty不少调整,几乎已经达到了我想要的效果。只剩下最后一个我无法解决的问题:我想在简历的右端添加一个徽标\cventry

目前,我创建了一个新命令\cventrylogo

\renewcommand*{\cventrylogo}[8][.25em]{%
  \cvitem[#1]{#2}{%
    {\bfseries#3}%
    \ifthenelse{\equal{#4}{}}{}{, {\slshape#4}}%
    \ifthenelse{\equal{#5}{}}{}{, #5}%
    \ifthenelse{\equal{#6}{}}{}{, #6.}%
    \ifthenelse{\equal{#7}{}}{}{\hfill \includegraphics[scale=0.25]{#7}}%
    \strut%
    \ifx&#8&%
      \else{\newline{}\begin{minipage}[t]{\linewidth}\small#8\end{minipage}}\fi}}

然后我像这样使用:

\section{Experience}
\cventrylogo{2015}{Short Term Scientific Collaborator}{M\'et\'eosuisse}{Payerne}{Switzerland}{logo_meteosuisse}{}
\cventrylogo{2009--2014}{PhD. in Physical Chemistry}{ETH}{Zurich}{Switzerland}{logo_eth}{}
\cventrylogo{2006--2008}{Process Development Engineer}{STM S.p.A.}{Agrate Brianza}{Italy}{logo_st}{}
\cventrylogo{2004--2005}{Internship}{Alenia Spazio S.p.A.}{Turin}{Italy}{logo_tas}{}

执行结果如下:

在此处输入图片描述

我已经看过类似的问题,12,但这并不是我想要的。有两个问题。首先,图像在底部对齐,我希望它们在文本的中心对齐;其次,我希望在命令中指定图像的大小\cventrylogo,但实现这一点超出了我的能力范围。任何帮助都将不胜感激。


在 Harish Kumar 的帮助下我自己回答了这个问题,并提供了一个可供使用的 MWE。

答案1

\cventrylogo现在它可以按我想要的方式工作,使用如下定义的命令:

\renewcommand{\cventrylogo}[9][.25em]{% 
\cvitem[#1]{#2}{% 
  {\bfseries#3}% 
  \ifthenelse{\equal{#4}{}}{}{, {\slshape#4}}% 
  \ifthenelse{\equal{#5}{}}{}{, #5}% 
  \ifthenelse{\equal{#6}{}}{}{, #6.}% 
  \ifthenelse{\equal{#7}{}}{}{% 
    \ifthenelse{\equal{#8}{}}{}{\hfill \raisebox{-0.5\height}{\includegraphics[width=#8]{#7}}}}%
  \strut% 
  \ifx&#9&% 
    \else{\newline{}\begin{minipage}[t]{\linewidth}\small#9\end{minipage}}\fi} }

这是 MWE,可供可能使用它的人进一步参考:

\documentclass[11pt,a4paper,sans]{moderncv}
\moderncvstyle{classic}
\moderncvcolor{blue} 
\usepackage[utf8]{inputenc}

\usepackage[scale=0.8]{geometry} 

\name{Riccardo}{I.}
\title{Title title}
\address{XXX}{place ville}{}
\phone[mobile]{+00~(0)~00~000~00~00}    
\email{[email protected]} 

\begin{document}

\makecvtitle

\section{Experience}
\cventrylogo{2015}{Short Term Scientific Collaborator}{M\'et\'eosuisse}{Payerne}{Switzerland}{logo_meteosuisse}{16mm}{}
\cventrylogo{2009--2014}{PhD. in Physical Chemistry}{ETH}{Zurich}{Switzerland}{logo_eth}{25mm}{}
\cventrylogo{2006--2008}{Process Development Engineer}{STM S.p.A.}{Agrate Brianza}{Italy}{logo_st}{18mm}{}
\cventrylogo{2004--2005}{Internship}{Alenia Spazio S.p.A.}{Turin}{Italy}{logo_tas}{20mm}{}

\end{document}

相关内容