I'm using this template with Overleaf as an editor:
http://www.latextemplates.com/template/wilson-resume-cv
Under the references section they have two examples contained in "\parbox". Ideally what I'd like to do is create two additional boxes above the columns that simply are a subheading/subsection titled "Personal" and "Professional", and then have three rows or boxes under each column with said references. Preferably I'd like the subheadings to be the same color and font of the standard sections, just slightly smaller.
I've tried copy/pasting the given box's dimension codes and just inserting a \subsection into where the reference text would be, but it comes back with errors. What I have is something like this:
Code: Select all
%----------------------------------------------------------------------------------------
% REFEREE SECTION
%----------------------------------------------------------------------------------------
\section{References}
\parbox{0.5\textwidth}{
\begin{tabbing}
\hspace{2.75cm} \= \hspace{4cm} \= \kill
{\subsection{Personal}} \> \\
\end{tabbing}}
\hfill
\parbox{0.5\textwidth}{
\begin{tabbing}
\hspace{2.75cm} \= \hspace{4cm} \= \kill
{\subsection{Professional}} \> \\
\end{tabbing}}
\hfill
\parbox{0.5\textwidth}{ % First block
\begin{tabbing}
\hspace{2.75cm} \= \hspace{4cm} \= \kill % Spacing within the block
{\bf Name} \> Bill Lumbergh \\ % Referee name
{\bf Relation} \> Initech Inc. \\ % Referee company
{\bf Position} \> Vice President \\ % Referee job title
{\bf Contact} \> \href{mailto:bill@initech.com}{bill@initech.com} % Referee contact information
\end{tabbing}}
\hfill % Horizontal space between the two blocks
Thanks,
David