
我已經嘗試了幾個小時來實現本文檔的這種安排。
http://home.uchicago.edu/klecha/klecha_cv.pdf
例如,它看起來有兩欄,一欄有日期等,另一欄有出版物等,但這兩欄始終保持固定距離。實現這種安排的程式碼是什麼,以便每個部分的第二列從同一點開始?
答案1
您可以自己創建。
下面是一個 MWE:
\documentclass{article}
\setlength\parindent{0pt}
\usepackage[margin=1.5cm]{geometry}
\usepackage{hyperref}
\usepackage{tabularx}
\begin{document}
\begin{center}
\textbf{Your name}
\emph{June 2013}
\end{center}
Department of Linguistics \hfill [email protected]
University of Nowhere \hfill \url{http://www.mydomain.com}
1010 E. 59th St., Chicago, IL, 60637 \hfill 810-111-9999
\hrulefill\vspace*{\baselineskip}
\begin{tabularx}{\linewidth}{@{}p{5cm}X@{}}
\textbf{Education} & \\
2007--2013 (expected) & PhD Program in Linguistics, University of Chicago\newline
\emph{Dissertation: Scalarity and Modality} (in progress)\newline
\emph{Chair:} Prof. Chris Kennedy \\
2012 & Visiting Scholar, University of Massachusetts, Amherst\newline
\emph{Sponsor:} Prof. Angelika Kratzer
\end{tabularx}
\end{document}
輸出: