如何设置所有行之间的间距

如何设置所有行之间的间距

我如何才能将所有行设置为彼此之下(在一个小节中)。 例如图片中的这两句话:使用非线性规划和 GAMS 对复合材料生产过程进行调查及其在工业公司利润最大化中的应用

答案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@{}}

相关内容