如何在不使用表格的情况下使单词左对齐?

如何在不使用表格的情况下使单词左对齐?

我想要实现图中的格式。在此处输入图片描述 但是当我使用 tabular 时,会出现缩进。如何解决这个问题?

\subsection*{Time allowed for this section}
\begin{tabular}{l l}
Reading time before commencing work: & five minutes \\
Working time: & fifty minutes
\end{tabular}

在此处输入图片描述

答案1

通常您可以使用flushleft环境,但在这里您需要一些对齐,因此我建议使用tabbing

示例输出

\documentclass{article}

\begin{document}

\subsection*{Time allowed for this section}

\begin{tabbing}
Reading time before commencing work: \= five minutes \\
Working time: \> fifty minutes
\end{tabbing}

\end{document}

第一\=行设置制表位,\>第二行移动到制表位。

相关内容