我正在尝试使用此处上传的简历模板:https://www.sharelatex.com/templates/cv-or-resume/smart-twenty-seconds-cv
但是,我的简历有两页,但此模板中的侧边栏没有延伸到第二页。
如果有人能帮助我解决这个问题我将不胜感激。
谢谢,Shiva
答案1
添加命令
\makeprofile
第二页的所有内容......
它将重新创建与第一页相同的侧边栏...如果您想更改内容...请更具体
答案2
现在很晚了,但你可以这样做:在第二页的新侧边栏中添加新信息。你可以在 .tex 文件中添加以下几行
\newpage %start a new page
\makenewprofile %new page with sidebar
并在 .cls 文件中添加以下几行以在第二页中显示第二个侧边栏,并添加您想要在简历第二个侧边栏中看到的信息(例如姓名(这是我的命名,您可以将其更改为爱好、课程、公式中的任何其他内容))。
\newcommand{\makenewprofile}{
\begin{tikzpicture}[remember picture,overlay]
\node [rectangle, fill=sidecolor, anchor=north, minimum width=8.25cm,
minimum height=\paperheight+1cm] (box) at (-5cm,0.5cm){};
\end{tikzpicture}
%------------------------------------------------
\begin{textblock}{6}(0.3, 0.2)
%------------------------------------------------
%{\normalsize\color{mainblue}\cvname}
%-------------------------------------------
\vspace{4mm}
%-------------------------------------------
\profilesection{name}\\
\name{whatever you want to add to this part}\\
\nametext
\scriptsize
%------------------------------------------------
\end{textblock}
}