答案1
您想要将 设置为 4cm \leftmargin
(description
对 进行校正\labelsep
)。
\documentclass{article}
\usepackage{enumitem}
\usepackage{showframe} % just to show the margins of the text block
\begin{document}
\begin{description}[leftmargin=4cm,labelwidth=\dimexpr4cm-\labelsep]
\item[Description]
\begin{enumerate}[leftmargin=*]
\item Item
\item Another item
\item Last item
\end{enumerate}
\end{description}
\end{document}
答案2
如果您希望描述项和枚举项之间的距离最小,则可以使用calc
和轻松获得enumitem
:
\documentclass{article}
\usepackage[showframe]{geometry}
\usepackage{calc}
\usepackage{enumitem}
\begin{document}
\begin{description}[leftmargin=\widthof{\textbf{Description}} + \labelsep , style = unboxed]\item[Description]
\begin{enumerate}[wide=0pt, leftmargin =*]
\item Item
\item Another item. Some more text. Some more text. Some more text. Some more text. Some more text. Some more text
\item Last item
\end{enumerate}
\end{description}
\end{document}