我们如何在简历表中添加徽标?

我们如何在简历表中添加徽标?

在使用 latex 准备简历时,尝试在 minipage 中嵌入 4 个内容,如下所示

预期输出 下载图像或徽标

% LaTeX file for resume 
% This file uses the resume document class (res.cls)

\documentclass[margin]{res} 
% the margin option causes section titles to appear to the left of body text 
\textwidth=5.2in % increase textwidth to get smaller right margin
%\usepackage{helvetica} % uses helvetica postscript font (download helvetica.sty)
%\usepackage{newcent}   % uses new century schoolbook postscript font 

\begin{document} 




\begin{resume} 

\section{Experience}

% How to add Logo below \hspace{0.75\linewidth}\includegraphics[width=1.0\linewidth]{download.jpg}

{\bf System Consultant,} Fleet Van Lines, Bayridge, NY \hfill  Summer 1984
\begin{itemize} \itemsep -2pt %reduce space between items
\item Researched, implemented new computer accounting 
                 system 
\item Customized existing software for inventory 
                 management 
\item Trained employees on both accounting and inventory 
                 systems 
\end{itemize}


\end{resume} 
\end{document} 

或者,尝试过这个但仍然无法将徽标更新到表中!!!

% LaTeX file for resume 
% This file uses the resume document class (res.cls)

\documentclass[margin]{res} 
% the margin option causes section titles to appear to the left of body text 
\textwidth=5.2in % increase textwidth to get smaller right margin
%\usepackage{helvetica} % uses helvetica postscript font (download helvetica.sty)
%\usepackage{newcent}   % uses new century schoolbook postscript font 

\begin{document} 




\begin{resume} 

\begin{table}[h!]
  \begin{center}
  %  \caption{Multirow and -column table.}
    \label{tab:table1}
    \begin{tabular}{lSr}
      \textbf{Value 1} & \textbf{Value 2} & \textbf{Value 3}\\
      \hline
      \multicolumn{2}{c}{\multirow{2}{*}{1234}} & a\\ % <-- Multicolumn spanning 2 columns, content multirow spanning two rows
      \multicolumn{2}{c}{} & b\\ % <-- Multicolumn spanning 2 columns with empty content as placeholder
      \hline
      \includegraphics[width=1.0\linewidth]{download.jpg} & fgrzhfergherulglhrugntkgntrgmntrg & c\\
      4 & 25.113231 & d\\
 & fhfhrjfrjh & \\
& frjhfrhflrg & \\
265623774 & & \\

    \end{tabular}
  \end{center}
\end{table}

\end{resume} 
\end{document} 

相关内容