how can I push the last line (which contains "Word Three") lower to make it have a more sophisticated look?
Code: Select all
\documentclass[
fontsize=12pt,
english
]{scrartcl}
\usepackage{lmodern}
\usepackage[T1]{fontenc}
\newcommand{\mini}[1]{\begin{minipage}[t]{9cm}#1\end{minipage}}
\begin{document}
\begin{center}
\begin{tabular}{ll}
01/02 & Word One\\
03/04 & Word Two\\
05/06 & \mini{Some more words which are usesless but have the purpose of forming a sentence.}\\
07/08 & Word Three
\end{tabular}
\end{center}
\end{document}