答案1
有两点需要注意。首先,在 LaTeXdescription
环境中, 的参数\item
应该用方括号括起来,而不是用花括号。其次,要将 的参数中的多个项目\item
[双关语] 放置在垂直堆栈中,可以使用环境。以下示例代码提供了简化项目堆栈创建的tabular
简写宏。\mystack
\documentclass{article}
\newcommand\mystack[1]{\begin{tabular}[t]{@{}l@{}} #1 \end{tabular}}
\begin{document}
\begin{description}
\item[\mystack{Foo \\ Bar \\ Baz}]: Foo, Bar, and Baz are friends.
\item[a, b, c] \dots
\end{description}
\end{document}