정렬 환경에서 hbox가 가득 찼습니다. 어떻게 줄을 끊어야 합니까?

정렬 환경에서 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

tabularxor 를 사용하는 두 가지 가능성은 다음과 같습니다 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}

여기에 이미지 설명을 입력하세요

관련 정보