我想将我的学校徽标添加到教育部分。这是我使用的 Overleaf 模板。 https://www.overleaf.com/latex/templates/a-customised-curve-cv/mvmbhkwsnmwv
我尝试在 education.tex 文件中添加 \includegraphics。
\begin{rubric}{Education}
\entry*[2009 -- 2013]%
\textbf{Ph.D., Unseen University} High Energy Magic.
\par Thesis title: \emph{Low-Cost Mana Generation in Under-Resouced Evironments.}
\includegraphics[scale=0.2]{photo.jpg}
%
\entry*[2003 -- 2006]%
\textbf{M.Sc.~Computer Science, Unseen} in High Energy Magic.\par
Thesis title: \emph{Applying ant algorithms in automatic design of novel magic charms}.
\end{rubric}
结果如下:
显然,这看起来非常奇怪。我不知道如何将徽标移到左侧或右侧。
答案1
要插入学校徽标,您需要做两件事:
multirow
在序言中添加该包。\documentclass[a4paper,skipsamekey,11pt,english]{curve} \usepackage{settings} \RequirePackage{multirow} %<<<<<<<<<<<< added % Change the fonts if you want ...
将原始文件替换
education.tex
为以下内容:\newcommand{\marker}{ \hspace*{1.2em}\relscale{.9}\color{MarkerColour!80!black}\faBookmark} \newcommand{\unilogo}{\includegraphics[width=50pt]{example-grid-100x100pt}} % <<<<<<<<<<<< scholl /uni logo here \newcommand{\titleii}{% title PhD <<<<<<<<<<<<<<<< \textbf{Ph.D. Unseen University} in High Energy Magic. Thesis title: \emph{Low-Cost Manual Generation in Under-Resourced Environments.} } \newcommand{\titlei}{% title MSc <<<<<<<<<<<<<<<<<<<< \textbf{M.Sc.~Computer Science, Unseen} in High Energy Magic. Thesis title: \emph{Applying new algorithms in automatic} \emph{design of novel magic charms.} } \begin{rubric}{Education} \begin{tabular}{@{}l @{}p{15pt} >{\raggedright\arraybackslash}p{4in} r} 2009 -- 2013 &\marker & \titleii & \multirow{4}{*}{\unilogo} \\ 2003 -- 2006 &\marker & \titlei & \\ \end{tabular} \end{rubric}