我已经读过了简历/履历表的 LaTeX 模板。我需要的只是一个简单的两列乳胶简历。它应该看起来像这样:
请注意,这是在现有文档的底部添加的。并且此文档已经使用了自定义类。因此,我认为,仅对 CV 使用另一个类是不可行的。
基本上,我只是想知道如何实现类似于图像中的格式。
答案1
和longtable
\documentclass{article}
\usepackage{array,longtable}
\usepackage{lipsum}
\begin{document}
\begin{center}
\bfseries\Large
Curriculum Vitae
\end{center}
\begin{longtable}{@{}>{\raggedleft}p{0.25\linewidth}|
p{\dimexpr0.75\linewidth-2\tabcolsep-\arrayrulewidth\relax}@{}}
Address & Some address \\
& Again some address\\
& and again\\[1em]
Date of birth & 12.02.2015 \\[1em]
Education & \lipsum[1] \\[1em]
& xxxxx \\[1em]
& \lipsum[2] \\[1em]
& xxxxx \\[1em]
& \lipsum[3] \\[1em]
& xxxxx
\end{longtable}
\end{document}