对齐环境中的水平盒子过满-我该如何断线?

对齐环境中的水平盒子过满-我该如何断线?

我正在尝试创建一个合乎逻辑的论点,但是我得到了水平盒子过满的错误。

\documentclass[12pt]{article}
\usepackage{amsmath, amsthm, amssymb, amsfonts}

\begin{align*} 
P1\text{*}: & \quad \text{P1 is a mathematical abstraction of distance.} \\ 
P2\text{*}: & \quad \text{P2 is a statement regarding distances in the physical world.} \\
P3\text{*}: & \quad \text{The physical world requires a resolution to distinguish distance, while mathematics can use any resolution.} \\
C1\text{*}: & \quad \text{Therefore, Zeno's argument is flawed.}
\end{align*}

我想在“物理世界需要分辨率来区分距离,而数学可以使用任何分辨率。”这句话的逗号处拆分行,但我该怎么做呢?谢谢!

答案1

tabularx使用or有两种可能性itemize

\documentclass[12pt]{article}
\usepackage{tabularx}

\begin{document}
\noindent
\begin{tabularx}{\textwidth}{l<:X}
P1* & P1 is a mathematical abstraction of distance.\\
P2* & P2 is a statement regarding distances in the physical world. \\
P3* & The physical world requires a resolution to distinguish distance, while mathematics can use any resolution. \\
C1 & Therefore, Zeno's argument is flawed.
\end{tabularx}

\begin{itemize}
\item[P1*:] P1 is a mathematical abstraction of distance.
\item [P2*:]  P2 is a statement regarding distances in the physical world. 
\item[P3*:]  The physical world requires a resolution to distinguish distance, while mathematics can use any resolution. 
\item[C1:]  Therefore, Zeno's argument is flawed.
\end{itemize}
\end{document}

在此处输入图片描述

答案2

使用description环境和包enumitem

\documentclass[12pt]{article}
\usepackage[showframe]{geometry}
\usepackage{enumitem}

\begin{document}

\begin{description}[font = \normalfont, labelwidth=1cm, leftmargin=!, itemsep=2pt]
\item[P1\textsuperscript{*}:] P1 is a mathematical abstraction of distance.
\item[P2\textsuperscript{*}:] P2 is a statement regarding distances in the physical world. distinguish distance, while mathematics can use any resolution.
\item[P3\textsuperscript{*}:] The physical world requires a resolution to distinguish distance, while mathematics can use any resolution.
\item[C1\textsuperscript{*}:] Therefore, Zeno's argument is flawed.
\end{description}

\end{document}

在此处输入图片描述

相关内容