
Im Bild unten versuche ich herauszufinden, wie ich (a) horizontal ausrichten kann, damit es mit Implications übereinstimmt. Effektiv sollte (a) dort beginnen, wo xxx ist. Was mache ich falsch?
\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}
Antwort1
Mit enumitem
dem Paket ist es ganz einfach:
Bearbeiten:
Wenn Sie eine Liste mit einem Stern erstellen möchten, enumerate
in dem sich bisher ein Wort befand xxxx
, und diese vertikal mit dem Text in der ersten Spalte ausrichten möchten, müssen Sie die Liste vertikal verschieben. Zum Beispiel durch Einfügen in minipage˛. One option, how to do this is use
das etoolbox-Paket:
\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}
Ist es das, wonach Sie suchen?