我正在尝试制作一份两列布局的简历,其中的内容如下
[部分名称] * 空格 * [详细信息]
例如:
Work experience[spaaaaaaaaaaaaaace]Some location, 2 years, etc
[spaaaaaaaaaaaaaace]Another location, 1 year
Education[spaaaaaaaaaaaaaaaaaaaace]Some degree
请注意,我希望右列与左对齐到相同的位置。
我一直在尝试为每个部分使用两个迷你页面。它似乎运行良好,但问题是 Latex 不会拆分迷你页面,而是强制它们单独成页。我希望各部分通常能够立即衔接,并在必要时中断。有些东西告诉我迷你页面无法胜任这项任务:有什么替代方案吗?
答案1
您可以使用labeling
属于KOMA 脚本类和scrextend
包。(是的,labeling
环境允许分页。)
\documentclass{article}
\usepackage{scrextend}
\addtokomafont{labelinglabel}{\bfseries\sffamily}
\begin{document}
\begin{labeling}{(longest item name)\quad}
\item[Work experience] Some location, 2 years, etc\\ Another location, 1 year
\item[Education] Some degree
\end{labeling}
\end{document}
如果需要在第一列换行,请使用长桌。
\documentclass{article}
\usepackage{array}
\usepackage{longtable}
\renewcommand*{\arraystretch}{1.5}
\begin{document}
\begin{longtable}{>{\bfseries\sffamily}p{3cm}p{10cm}}
Work experience & Some location, 2 years, etc \newline Another location, 1 year \\ Education & Some degree \\ A long item name with a line break & Works! \\ \end{longtable}
\end{document}