Thank you for your quick response Stephan, here are a compilable portion of the code and the Packages calling file as well:
Code: Select all
\documentclass[a4paper,12pt]{article}
\include{cv-commands}
\begin{document}
\setmainfont
\header
{\textbf{\LARGE{Jacques Cousteau}}}
%{R\&D Software engineer}
{\footnotesize {{Address: 1443 Random Avenue, Apt 312\\ Seattle, WA USA}\\
\footnotesize {Email: \textcolor{Blue}{JacquesCousteau@email.com}}\\
\footnotesize {Phone: {(222) 333 4444}}}
\bigskip
{\color{blue}\framebox{\color{black}\begin{minipage}[c]{0.96\textwidth}
\normalsize\textbf{\newline
French naval officer, explorer, ecologist, filmmaker, innovator, scientist, photographer, author and researcher who studied the sea and all forms of life in water. He co-developed the Aqua-Lung, pioneered marine conservation and was a member of the Académie française. He was also known as "le Commandant Cousteau" or "Captain Cousteau".\vspace{1.2mm}}
\end{minipage}}}
\bigskip
}
\begin{resumeblock}{\bf{EDUCATION}}
\resumeitem{\bf PhD}{\small{\textbf{University of Phoenix }}, Civil Engineering, Phoenix, USA, 2011}
\newline {Cousteau was born on 11 June 1910, in Saint-André-de-Cubzac, Gironde, France to Daniel and Élisabeth Cousteau. He had one brother, Pierre-Antoine. Cousteau completed his preparatory studies at the prestigious Collège Stanislas in Paris. }
\newline{In 1930, he entered the École Navale and graduated as a gunnery officer. After an automobile accident cut short his career in naval aviation, Cousteau indulged his interest in the sea.}
\largeskip
\resumeitem{\bf MS}{\small{\textbf{Georgia Institute of Technology}}, Software Engineering, Atlanta, USA, 2005\newline Course work: In Toulon, where he was serving on the Condorcet, Cousteau carried out his first underwater experiments, thanks to his friend Philippe Tailliez who in 1936 lent him some Fernez underwater goggles, predecessors of modern diving masks.[2] Cousteau also belonged to the information service of the French Navy, and was sent on missions to Shanghai and Japan (1935–1938) and in the USSR (1939). }
\largeskip
\resumeitem{\bf MS}{\small{\textbf{Berkley}}, Petroleum Engineering, Berkley, USA, 2003\newline His sons took part in the adventures of the Calypso. In 1991, one year after his wife Simone's death from cancer, he married Francine Triplet. They already had a daughter Diane Cousteau (born 1980) and a son Pierre-Yves Cousteau (born 1982), born during Cousteau's marriage to his first wife.}
\largeskip
\end{resumeblock}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{resumeblock}{\bf RESEARCH AND TEACHING EXPERIENCE}
\resumeitem{Jan 20012 - Present}{\small{\textbf{Researcher}} \newline
Department of Aerospace Engineering, UCI} \newline
{The years of World War II were decisive for the history of diving. After the armistice of 1940, the family of Simone and Jacques-Yves Cousteau took refuge in Megève, where he became a friend of the Ichac family who also lived there. Jacques-Yves Cousteau and Marcel Ichac shared the same desire to reveal to the general public unknown and inaccessible places}
\largeskip
\resumeitem{Sep 2004 - Nov 2008}{\small{\textbf{Assistant}} \newline
Department of Psychology, Stanford} \newline
{In 1943, they made the film Épaves (Shipwrecks), in which they used two of the very first Aqua-Lung prototypes. These prototypes were made in Boulogne-Billancourt by the Air Liquide company, following instructions from Cousteau and Émile Gagnan.When making Épaves, Cousteau could not find the necessary blank reels of movie film, but had to buy hundreds of small still camera film reels the same width, intended for a make of child's camera, and cemented them together to make long reels}
\end{resumeblock}
\end{document}
Now the package calling file is :
Code: Select all
% Set of commands used by cv.tex
\usepackage[dvipsnames,usenames]{color}
\usepackage{simplemargins}
\usepackage{graphicx}
\usepackage{amssymb,amsmath}
\usepackage{framed}
\usepackage{xcolor}
\usepackage{fancybox}
%\usepackage{framed}
\setleftmargin{2.0cm}
\setrightmargin{2.0cm}
\settopmargin{1.8cm}
\setbottommargin{0cm}
%\renewcommand\familydefault{\sfdefault}
% starting commands
\newfont{\myfonta}{cmr10 at 9pt}
\newfont{\myfontb}{cmr10 at 10pt}
\newfont{\myfontc}{cmr10 at 15pt}
\newfont{\myfontd}{cmr10 at 12pt}
\newcommand{\largeskip}[0]{\vspace{2.5mm}\\}
\newcommand{\shortskip}[0]{\vspace{0.4mm}\\}
% small caps
\newcommand{\smcp}[1]{\sc{\myfonta{#1}}}
\renewcommand{\textsc}[1]{\smcp{#1}}
\newcommand{\header}[3]{
\hspace{0cm}
\begin{tabular}{p{11cm}p{6cm}}
{\raggedright {\headline {#1}}
\\\vspace*{2mm}
\headline{#2}}
&
\raggedleft{#3}
\end{tabular}}
\newcommand{\blocktitle}[1]{
\parbox{\textwidth}{
\vspace{2mm}
\noindent
\textcolor{Blue}{
{\myfontd {#1}
\vspace*{1mm}
\hrule}
\vspace*{3mm}
\noindent
} } }
\newcommand{\headline}[1]{{\myfontc{#1}}}
\newcommand{\setmainfont}[0]{\myfontb}
%%%%%%
\newenvironment{resumeblock}[1]{\blocktitle{#1}\begin{tabular}{p{4cm}p{13cm}}}{\end{tabular}}
\newcommand{\resumeitem}[2]{\noindent\raggedright{\textsc{#1}} & #2}
%%%%%%
\newcommand{\interest}[2]{
\includegraphics[height=12pt]{#1}
~\raisebox{1mm}{#2}}
%%%%%%
\newenvironment{interestsblock}[1]
{\blocktitle{#1}\begin{tabular}{p{10cm}p{10cm}}}
{\end{tabular}}
\setlength{\parindent}{0mm}
\pagestyle{empty}
Many thanks for your help, I hope you will be able to spot the issue and find the workaround !