align 環境で hbox がいっぱいです - どのように行を分割すればよいですか?

align 環境で hbox がいっぱいです - どのように行を分割すればよいですか?

論理的な議論を作成しようとしていますが、hbox がいっぱいであるというエラーが発生します。

\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または を使用した 2 つの可能性を次に示します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}

ここに画像の説明を入力してください

関連情報