如何在tcolorbox中调用tcbitemize环境的\tcbitem的内容

如何在tcolorbox中调用tcbitemize环境的\tcbitem的内容

如何在 tcolorbox 的选项部分调用 tcbitemize 环境的 \tcbitem 的内容。示例代码如下:

\documentclass{article}
\usepackage[most]{tcolorbox}

\begin{document}
\tcbset{figure/.style={...} % or figure/.code
\begin{tcbitemize}
  \tcbitem[figure] myfigure.jpg % This will typeout a figure as the content of this \tcbitem
\end{tcbitemize}

\end{document}

答案1

如果您想少输入一些内容,只需创建一个宏(这里我将其称为\myinc):

\documentclass{article}
\usepackage[most]{tcolorbox}

\newcommand{\myinc}[1]{\includegraphics[width=\textwidth]{#1}}

\begin{document}
\begin{tcbitemize}
  \tcbitem \myinc{example-image-a.jpg} 
  \tcbitem \myinc{example-image-b.jpg}
\end{tcbitemize}
\end{document}

在此处输入图片描述

相关内容