我正在尝试使用paracol
overleaf 模板中的包来制作简历。我似乎无法让第二页的列颜色填充,不知道我在这里做错了什么。
下面是显示问题和产生问题的 MWE 的图像。第 1 页和第 2 页之间的间隔之后,只有文本周围有颜色,而它应该是整列。我应该怎么做才能纠正这个问题?
先感谢您!
这是我的 MWE:
% a mashup of hipstercv, friggeri and twenty cv
% https://www.latextemplates.com/template/twenty-seconds-resumecv
% https://www.latextemplates.com/template/friggeri-resume-cv
\documentclass[lighthipster]{simplehipstercv}
% available options are: darkhipster, lighthipster, pastel, allblack, grey, verylight, withoutsidebar
% withoutsidebar
\usepackage[utf8]{inputenc}
\usepackage[margin=1cm, a4paper]{geometry}
\usepackage{lipsum}
\sffamily
%------------------------------------------------------------------ Variablen
\newlength{\rightcolwidth}
\newlength{\leftcolwidth}
\setlength{\leftcolwidth}{0.23\textwidth}
\setlength{\rightcolwidth}{0.75\textwidth}
%------------------------------------------------------------------
\title{New Simple CV}
\author{\LaTeX{} Ninja}
\date{June 2019}
\pagestyle{empty}
\begin{document}
\section*{} % this is needed.
\complexheader{headercolour}{Malakan}{Malakan}{Curriculum Vitae}{white}{
\infobubble{\faEnvelope}{cvgreen}{white}{[email protected]}
\infobubble{\faPhone}{cvgreen}{white}{555 123456789}
}
%------------------------------------------------
% this has to be here so the paracols starts..
\subsection*{}
\vspace{5em}
\setlength{\columnsep}{1.7cm}
\columnratio{0.24}[0.59]
\begin{paracol}{2}
\paracolbackgroundoptions
% 0.9,0.9,0.9 -- 0.8,0.8,0.8
\footnotesize
{\setasidefontcolour
\flushright
\large
\bg{cvgreen}{white}{Section}\\[0.3em]
{\normalsize
\lipsum[2-4]
% \phantom{turn the page}
% \phantom{turn the page}
}
%-----------------------------------------------------------
\switchcolumn
\small
\section*{Profile}
\lipsum[4-9]
\vfill{} % Whitespace before final footer
}
\end{paracol}
% \vspace*{\fill}
\centering{\textbf{References available upon request.}}
% \end{paracol}
\end{document}