自定义环境中的表格/图形

自定义环境中的表格/图形

有一个自定义的环境,如何在定义的环境下出现图形/表格?

\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

这可行,但我会(以这种方式)使用它吗?

对于更复杂的设置,环境必须与参数一起使用,最好\NewDocumentEnvironmentxparse

\documentclass{book}

\newenvironment{example}{%
  \begin{tabular}{ll}
}{%
  \end{tabular}
}

\begin{document}
\begin{example}
A & B
\end{example}
\end{document}

相关内容