在 moderncv 中的 cventry 中插入图像

在 moderncv 中的 cventry 中插入图像

我用它moderncv来创建我的简历。在经验部分,我通过输入每个元素

\cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description}

我想在左栏(即年份下方)插入公司或大学的小徽标。
我该怎么做?

答案1

\includegraphics您可以使用包中的标准命令graphicx(包含年份信息的框的宽度是样式中的\hintscolumnwidth默认宽度);一个小例子:0.175\textwidthclassic

\documentclass{moderncv}
\usepackage{graphicx}
\moderncvstyle{classic}

\firstname{John}
\familyname{Doe}

\begin{document}

\makecvtitle
\cventry{year--year\\\includegraphics[width=\hintscolumnwidth]{ctanlion}}{Degree}{Institution}{City}{\textit{Grade}}{Description}

\end{document}

在此处输入图片描述

CTAN 狮子绘画由 Duane Bibby 绘制。

相关内容