I need to keep multiple language versions of my CV and was thinking of doing it in LaTeX. However, i'm not sure how to do it the way i thought of doing it and that's where i need your help if possible.
My idea was to have one single Tex source file where i could input the specific field data in two languages (grouped by some command as \selectlanguage or so), and then the rendering would construct two output files each, in its own language.
Something like this: (the environment names are completely imagined up)
Code: Select all
...
\begin{document}
\begin{Employment History}
\begin{employment_item}
\employment_date{06/2010, 12/2011}
\employment_place{Hotéis Nacionais, SGPS}
\begin{employment_description}
\selectlanguage{portuguese}
Gestor responsável pelas unidades hoteleiras do Sul do país, ....
\selectlanguage{english}
Responsible manager for hotel units in south Portugal,...
\end{employment_description}
\end{employment_item}
\end{Employment History}
$bla bla bla other stuff
\end{document}
And the end result would make me two pdf files, where the content would be selected in function of the language and the description files such as employment_date would be translated and fulfilled with the data inserted .
example:
Portuguese.PDF
English.PDF...
Historial de Emprego
De Junho 2010 a Dezembro 2011: Hotéis Nacionais, SGPS
Gestor responsável pelas unidades hoteleiras do Sul do país, ....
Am i asking for too much?...
Employment History
From June 2010 to December 2011: Hotéis Nacionais, SGPS
Responsible manager for hotel units in south Portugal,...
(also, i would really appreciate if you could point me to some good looking resume templates!)
Thanks!