在下图中,我试图弄清楚如何水平对齐 (a) 以与 Implications 保持一致。实际上,让 (a) 从 xxx 开始。我做错了什么?
\begin{longtable}{p{2.5cm}p{12cm}}
Statement: & These principles of information management apply to all organizations within the enterprise. \\
Rationale: & The only way we can provide a consistent and measurable level of quality information to decision-makers is if all organizations abide by the principles. \\
Implications: & xxx
\begin{enumerate}[label={(\alph*)}]
\setlength\itemsep{0.5em}
\item Without this principle, exclusions, favoritism, and inconsistency would rapidly undermine the management of information
\item Information management initiatives will not begin until they are examined for compliance with the principles
\item A conflict with a principle will be resolved by changing the framework of the initiative
\end{enumerate}
\end{longtable}
答案1
使用enumitem
包装很简单:
编辑:
如果您喜欢将enumerate
迄今为止的单词放在星号列表中xxxx
,并将其与第一列中的文本垂直对齐,那么您需要垂直移动列表。例如,将其插入minipage˛. One option, how to do this is use
etoolbox` 包中:
\documentclass{article}
\usepackage{enumitem} % <---
\AtBeginEnvironment{longtable}% <---
{
\setlist[enumerate]{label={(\alph*)},
align=left,
leftmargin=*,
itemsep=0ex,
after=\end{minipage}, % <---
before=\begin{minipage}[t]{\linewidth}\raggedright
}
}
\usepackage{longtable}
\begin{document}
\begin{longtable}{p{2.5cm}p{12cm}}
Statement: & These principles of information management apply to all organizations within the enterprise. \\
Rationale: & The only way we can provide a consistent and measurable level of quality information to decision-makers is if all organizations abide by the principles. \\
Implications: & \begin{enumerate}
\item Without this principle, exclusions, favoritism, and inconsistency would rapidly undermine the management of information
\item Information management initiatives will not begin until they are examined for compliance with the principles
\item A conflict with a principle will be resolved by changing the framework of the initiative
\end{enumerate}
\end{longtable}
\end{document}
这就是你所追求的吗?