Curricula Vitae / Résumés ⇒ How do I add a country line after the address line?
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
How do I add a country line after the address line?
Thanks in advance!
Yassir
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
How do I add a country line after the address line?
moderncv.cls
as “\newcommand*{\address}[3]{\def\@addressstreet{#1}\def\@addresscity{#2}\def\@addressthird{#3}}
” (no quotation marks)and you have to change the corresponding lines of whichever style file (
.sty
) you are using. for example, i have changed the line 111 and 268 of moderncvstyleclassic.sty as
Code: Select all
\ifthenelse{\isundefined{\@addressstreet}}{}{\makenewline\addresssymbol\@addressstreet}%
\ifthenelse{\isundefined{\@addresscity}}{}{\makenewline\addresssymbol\@addresscity}%
\ifthenelse{\isundefined{\@addressthird}}{}{\makenewline\addresssymbol\@addressthird}%
arkadasim
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: How do I add a country line after the address line?
Yasir