so I have this problem that I have a multicolumn setup and I have two columns. I specified the first column to be left centered and the second column to be 10.5 cm long. I don't understand why the second column in all three sections are not aligned underneath each other.
I'm not sure how to create a minimal working example - here is my code:
\documentclass[a4paper,11pt]{article} % Default font size and paper size
\usepackage{fontspec}
\defaultfontfeatures{Mapping=tex-text}
\setmainfont[SmallCapsFont = Fontin SmallCaps]{Fontin} % Main document font
\usepackage{xunicode,xltxtra,url,parskip} % Formatting packages
\usepackage{graphicx,tabularx,lipsum}
\usepackage{fancyhdr}
\usepackage[usenames,dvipsnames]{xcolor} % Required for specifying custom colors
\usepackage[german]{babel}
\usepackage{setspace}
\usepackage[big]{layaureo} % Margin formatting of the A4 page, an alternative to layaureo can be \usepackage{fullpage}
% To reduce the height of the top margin uncomment: \addtolength{\voffset}{-1.3cm}
\usepackage{hyperref} % Required for adding links and customizing them
\definecolor{linkcolour}{rgb}{0,0.2,0.6} % Link color
\hypersetup{colorlinks,breaklinks,urlcolor=linkcolour,linkcolor=linkcolour} % Set link colors throughout the document
\usepackage{titlesec} % Used to customize the \section command
\titleformat{\section}{\Large\scshape\raggedright}{}{0em}{}[\titlerule] % Text formatting of sections
\titlespacing{\section}{0pt}{3pt}{3pt} % Spacing around sections
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\fancyfoot[R]{{\footnotesize \textit{Stand: \today}}}
\fancyfoot[C]{\thepage}
\pagestyle{fancy}
\begin{document}
%----------------------------------------------------------------------------------------
% NAME AND CONTACT INFORMATION
%----------------------------------------------------------------------------------------
%\includegraphics[scale=.3]{fd.jpg}
\newlength{\oldparindent} \setlength{\oldparindent}{\parindent}
\setbox0=\hbox{}
\noindent \begin{tabularx}{\textwidth}{@{}Xc@{}}
\hskip\oldparindent \par{{\Huge My \textsc{Name}}\bigskip\par} {\large Curriculum Vitae} & \raisebox{-\ht0}{\usebox0}% \\
\end{tabularx}
\vskip 40pt
\section{Personal Data}
\begin{tabular}{lp{10.5cm}}
\textsc{born:} & \hspace{0.6cm} Birthday \\
\textsc{Nationality:} & \hspace{0.6cm} Deutsch, US-Amerikanisch\\
\textsc{Family:} & \hspace{0.6cm} Ledig\\
\textsc{Adress:} & \hspace{0.6cm} my street, my postcode, my town\\
\textsc{Telefon:} & \hspace{0.6cm} my phone number\\
\textsc{Mail:} & \hspace{0.6cm} my mail adress\\
\end{tabular}
%----------------------------------------------------------------------------------------
% EDUCATION
%----------------------------------------------------------------------------------------
\section{Education}
\begin{tabular}{lp{10.5cm}}
\textsc{Okt 2012 - Sep 2015} & Master of Arts\\
& University\\
& \footnotesize{Thesis: "`Title of Thesis"'}\\
\multicolumn{2}{c}{}\\
%------------------------------------------------
\textsc{Okt 2007 - Sep 2011} & Bachelor of Science\\
& University\\
& \footnotesize{Thesis: "`Title of Thesis"'}\\
\multicolumn{2}{c}{}\\
%------------------------------------------------
\textsc{Okt 1995 - Aug 2005} & Highschool\\
& Town of Highscool, City\\
& \footnotesize{Highschool diploma}\\
\multicolumn{2}{c}{}\\
\end{tabular}
%----------------------------------------------------------------------------------------
% ACADEMIC WORK EXPERIENCE
%----------------------------------------------------------------------------------------
\section{Work Experience}
\begin{tabular}{lp{10.5cm}}
\textsc{Since Apr 2016} & Research Associate\\
& Institut for Research\\
& \footnotesize{Projekt 1 (LALA): Here I did a lot of things. Like lalala and some more lalala. Here I did a lot of things. Like lalala and some more lalalaHere I did a lot of things. Like lalala and some more lalalaHere I did a lot of things. Like lalala and some more lalalaHere I did a lot of things. Like lalala and some more lalalaHere I did a lot of things. Like lalala and some more lalala}\\
& \footnotesize{Specific tasks: Here I did a lot of things. Like lalala and some more lalalaHere I did a lot of things.}\\[0.5 cm]
& \footnotesize{Projekt 2 (LULU): Here I did a lot of things. Like LULU and some more lululu. Here I did a lot of things. Like LULU and some more lululu.Here I did a lot of things. Like LULU and some more lululu.Here I did a lot of things. Like LULU and some more lululu.Here I did a lot of things. Like LULU and some more lululu.Here I did a lot of things. Like LULU and some more lululu}\\
& \footnotesize{Specific tasks: Here I did a lot of things. Like LULU and some more lululu.Here I did a lot of things.}\\
\multicolumn{2}{c}{}\\
\end{tabular}
\end{document}
