文本对齐就像数字对齐

文本对齐就像数字对齐

我正在尝试对齐,以便

Some_Text  1. Other Text       
           2. Other Text

我用了

\begin{align*}
\text{Some_Text}&\text{Other Text}\\
&\text{Other Text}\\
\end{align*}

但它没有起作用。

以下是我的序言:

\documentclass{book}
\usepackage[paperwidth=500mm,paperheight=50]{geometry}

答案1

这是我的第一次尝试,我不擅长使用表格,但我想尝试一下:

\documentclass{amsart}
\begin{document}
\begin{tabular}{lp{\linewidth}}
Some\_Text  & \vspace{-1em}
\begin{enumerate}
  \item Other text
  \item Other text
\end{enumerate}
\end{tabular}
More text.
\end{document}

姆韦

这是另一种可能性(克服插入负数的技巧\vspace。这个答案取自 Marco 的答案,这里,使用enumitem包:

\documentclass{amsart}
\usepackage[inline]{enumitem}
\begin{document}
\begin{tabular}{lp{\linewidth}}
Some\_Text&
\begin{enumerate*}[itemjoin={\newline}]
\item foo
\item bar
\end{enumerate*}
\end{tabular}
More text.
\end{document}

感谢 David 在聊天室帮助我解决这个问题。

答案2

对于包含枚举的固定宽度列,以下是可能的:

在此处输入图片描述

\documentclass{article}
\newcommand{\myitem}{\par\refstepcounter{enumi}\theenumi.\ }
\begin{document}
\centering
\begin{tabular}{rp{0.5\linewidth}}
  Some\textunderscore text &
    \myitem Other text
    \myitem Other text
\end{tabular}
\end{document}

如果您希望使用不同类型的枚举显示,请\myitem根据自己的喜好进行调整。例如,

\newcommand{\myitem}{\par\refstepcounter{enumi}(\theenumi)\ }

在编号周围提供括号。第二列的宽度仍然是一个问题(比如说,它是足够还是不好),但是对于问题中可用的细节数量,我们能做的并不多。

相关内容