在条目中放置图像(Friggeri CV)

在条目中放置图像(Friggeri CV)

抱歉,这是最后一个与 Friggeri CV 相关的问题。我觉得使用 tikzpicture 节点应该很容易解决问题,但我就是无法让它工作……

我在用Friggeri 的简历模板相同friggeri-cv.cls(我只是将所有 Helvetica 字体更改为 Arial 并添加backend=biber\RequirePackage{biblatex}行中)。

我想要的是放置大学徽标(徽标是这个(但任何图像都可以)位于 3 行文本之间,而不是顶部。我在文件中使用的相关行friggeri-cv.cls如下:

%%%%%%%%%%%%%%%%%%%%
% List environment %
%%%%%%%%%%%%%%%%%%%%

\setlength{\tabcolsep}{0pt}
\newenvironment{entrylist}{%
  \begin{tabular*}{\textwidth}{@{\extracolsep{\fill}}ll}
}{%
  \end{tabular*}
}
\renewcommand{\bfseries}{\headingfont\color{headercolor}}
\newcommand{\entry}[4]{%
  #1&\parbox[t]{11.8cm}{%
    \textbf{#2}%
    \hfill%
    {\footnotesize\addfontfeature{Color=lightgray} #3}\\%
    #4\vspace{\parsep}%
  }\\}

我的 MWE 如下:

%!TEX TS-program = xelatex
\documentclass[]{friggeri-cv}
\listfiles
\addbibresource{bibliography.bib}


\begin{document}
\header{name}{surname}
       {occupation}

% In the aside, each new line forces a line break
\begin{aside}
  \section{about}
    aaa
    bbb
\end{aside}


\section{background}

\begin{entrylist}
  \entry
    {1991}
    {MSc {\normalfont in this and that}}
    {\includegraphics[width=2.5cm]{logo.png}}
    {{\thinfont Specialized in this and that}\\
    Honorary Mention}
  \entry
    {1993}
    {PhD {\normalfont in other stuff}}
    {\includegraphics[width=2.5cm]{logo.png}}
    {{\thinfont Specialized in other stuff}\\
    Honorary Mention}
\end{entrylist}

\end{document}

产生这

答案1

所有图像均设置为静止在基线上。您可以使用\smash\raisebox命令的组合来上下移动它们。前者可消除因上下移动而对垂直位移产生的任何影响。后者用于上下移动它。

例如,尝试

\smash{\raisebox{-\height}{\includegraphics[width=2.5cm]{logo_sapienza}}}

在此处输入图片描述

我没有新海尔维提卡在我的计算机上。

相关内容