我在 Latex 生成的文档中看到了这种列表类型,但我无论如何也无法弄清楚它的语法应该是什么。
以下是该列表的图片:
我知道这可能不是最好的表述问题,但我已经用尽了所有的 LaTeX 资源,我不知道该怎么办。
答案1
这是一张表格,使用tabular
环境。左列右对齐,右列左对齐。
\documentclass{article}
\usepackage{colortbl}
\arrayrulecolor[gray]{0.7}
\begin{document}
\begin{tabular}{r|l}
2012 - Nu & IT \\
2009 - 2012 & Net \\
\end{tabular}
\vspace*{\baselineskip}
\begin{tabular}{r|l}
\textbf{Dansk} & \textbf{Fly} \\
Engelsk & Fly \\
\end{tabular}
\end{document}