答案1
以下是针对该环境的解决方案description
。它可以跨页面拆分:
\documentclass{article}
\usepackage{enumitem}
\begin{document}
Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text.
\begin{description}[font=\mdseries, labelwidth=20mm, leftmargin=\dimexpr\labelwidth+\labelsep]
\item[Aug. 2015] \textbf{Investigation in the Composite Production Process and their Applications in Industry}
\item[Jan. 2016] Manufacturing Process 2
\item[Aug. 2016]\textbf{Company’s Profit Maximisation Using Nonlinear Programmation and GAMS}
\end{description}
\end{document}
答案2
您可以使用tabularx
及其X
列类型。
\documentclass{article}
\usepackage{tabularx}
\begin{document}
\noindent
\begin{tabularx}{\textwidth}{lX}
Aug. 2015 & \bfseries Investigation in the Composite Production Process and
Their Applications in Industry\\
Jan. 2016 & Manufacturing Process 2\\
Aug. 2016 & \bfseries Company Profit Maximization Using Nonlinear Programming
and GAMS
\end{tabularx}
\end{document}
如果你想要外层空间被删除后,您可以使用\begin{tabularx}{\textwidth}{@{}lX@{}}
。