Curricula Vitae / RésumésHow to create more lines underneath the Name

ModernCV, Friggeri, Plasmati, Classicthesis-CV, and more
Post Reply
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

How to create more lines underneath the Name

Post by templateuser »

Hi,



I have updated my entire CV using this medium length professional template. Thank you very much. I can see the improvement visually. It's very much appreciated.

Underneath the name, I would like to add a line for the university address, and another line for webpage. I checked the resume.cls file, it doesn't seem to be straightforward to modify. Would you help?

Another thing is that how to add a formatted Reference section at the end (for three committee members)?

Thanks a lot!!!

tracy_su

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

How to create more lines underneath the Name

Post by Vel »

Hi Tracy,

The template currently only supports three address lines under the name. In order to add more you will have to go into res.cls and modify it to add more lines. Look out for anything that says \address.

Regarding adding a references section, why not make it look similar to the Technical Strengths section in the template and have the name of the referee on the left in bold and their contact information to the right?

Cheers,
Vel
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

How to create more lines underneath the Name

Post by templateuser »

Thanks a lot! I created more address lines sucessfully in .cls file. I will try add the reference according to your suggestion.

Thank you.

tracy_su
Ingmar123
Posts: 1
Joined: Sun Oct 22, 2017 11:11 am

How to create more lines underneath the Name

Post by Ingmar123 »

Could you tell me how you created more address lines ?
I already added the line four by doing this underneath the specific sections:

\let \@addressfour \relax

\@ifundefined{@addressfour}{
\def \@addressfour {#1}
}{

\@ifundefined{@addressfour}{}{
\printaddress{\@addressfour}}

But now an error occurs at line 123? `{\bf #1} \hfill {#2}`

What am I doing wrong? Or how did you do it?
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

How to create more lines underneath the Name

Post by Johannes_B »

Hi Ingmar,

the template is very badly designed. Do not bother to try to add additional lines by messing with the class file. Just just it as in the snippet below.

Code: Select all

\newcommand{\separator}{~\addressSep~}
\name{John Smith} % Your name
\address{%
\begin{tabular}{r@{\separator}l}
	short & Very very long text \\
	longer text & Ant \\
	Not so Short but long & Busy bee \\
	124 56 79 & Duckburg \\
\end{tabular}
} % Your phone number and email
.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply