如何在 Friggeri-CV 模板的条目列表中并排放置两个图形?

如何在 Friggeri-CV 模板的条目列表中并排放置两个图形?

请看下面的图片:

在此处输入图片描述

这是我的代码:

\entry

{2017}

{Certificado SolidWorks {\normalfont [nível Associate]}}

{\includegraphics[width=15mm]{CSWA.png}}{\includegraphics[width=15mm]{CSWA.png}}

{\vspace{-0.3cm}}

以下是完整代码:

% -- Encoding UTF-8 without BOM

% -- XeLaTeX => PDF (BIBER)
\documentclass[]{cv-style}          

\usepackage[most]{tcolorbox} 

\usepackage{tikz} 

\usepackage{graphicx}

\usepackage{amsfonts, amsmath, amsthm, latexsym}

\sethyphenation[variant=british]{english}{} 

\begin{document}

\header{José Pedro }{Amorim}           

\begin{aside}

%ASD

\end{aside}

\section{formação complementar}

{\vspace{-1.2cm}}

\begin{entrylist}

\entry

{2017}

{Certificado SolidWorks {\normalfont [nível Associate]}}

{\includegraphics[width=15mm]{CSWA.png}}{\includegraphics[width=15mm]{CSWA.png}}

{\vspace{-0.3cm}}

\end{entrylist}

\end{document}

答案1

您只是误用了模板。(很可能这个

两张图片都需要添加在同一对括号内。

弗里杰里

% -- Encoding UTF-8 without BOM
% -- XeLaTeX => PDF (BIBER)

\documentclass[]{cv-style}          % Add 'print' as an option into the square bracket to remove colours from this template for printing. 
                                    % Add 'espanol' as an option into the square bracket to change the date format of the Last Updated Text

\sethyphenation[variant=british]{english}{} % Add words between the {} to avoid them to be cut 

\begin{document}

\header{John}{Smith}           % Your name
\lastupdated

%----------------------------------------------------------------------------------------
%   SIDEBAR SECTION  -- In the aside, each new line forces a line break
%----------------------------------------------------------------------------------------

\begin{aside}
%
\section{contact}
123 Broadway
City, State 050022
Country
~
+0 (000) 111 1111
+0 (000) 111 1112
~
[email protected]
%
\section{languages}
English mother tongue
Spanish fluency
%
\section{programming}
{\color{red} $\varheartsuit$} R
VBA, SQL, Python
\LaTeX{}
%
\end{aside}


\begin{entrylist}
%------------------------------------------------
    \entry
    {2017}
    {Certificado Duck {\normalfont [nível Associate]}}
    {%
        \includegraphics[width=15mm]{example-image-1x1.png}
        \includegraphics[width=15mm]{example-image-1x1.png}
    }
    {\vspace{-1\baselineskip}}
    \entry
    {2017}
    {Certificado Capybara {\normalfont [nível Associate]}}
    {%
        \includegraphics[width=15mm]{example-image-1x1.png}
        \includegraphics[width=15mm]{example-image-1x1.png}
    }
    {\vspace{-1\baselineskip}}
\entry
  {2014--Now}
  {COMPANY 3}
  {City, Country}
  {\jobtitle{Wombat}\\
  Job description. Job description. Job description. Job description. Job description. Job description. Job description. Job description. Job description. Job description. Job description.}
\end{entrylist}


\end{document}

Adrien 过去没有为他的课程设置合适的许可证。它被许多人盗用,许可证确实允许这样做。很长一段时间以来,原始模板存储库已被删除。

相关内容