有一个自定义的环境,如何在定义的环境下出现图形/表格?
\newenvironment{example}[1]{%
\begin{exa}[#1]
}{%
\end{exa}
}
和
\begin{example}{something}
\table <----- here it fails (not in outer par mode)
\end table
\end{example}
答案1
这可行,但我会(以这种方式)使用它吗?不。
对于更复杂的设置,环境必须与参数一起使用,最好\NewDocumentEnvironment
与xparse
\documentclass{book}
\newenvironment{example}{%
\begin{tabular}{ll}
}{%
\end{tabular}
}
\begin{document}
\begin{example}
A & B
\end{example}
\end{document}