在 tcolorbox 环境中使用 footmisc 包

在 tcolorbox 环境中使用 footmisc 包

我试图在tcolorbox环境中创建脚注符号 *,但结果不是符号,也不是在页面底部,而是在框内!

\usepackage[most]{tcolorbox}
\usepackage[symbol]{footmisc}

\begin{document}
\begin{tcolorbox}[colback=yellow!20!white,colframe=green!40!gray]
\color{green!40!gray}{\large {\bf Definitions}}\color{black} \ \ \ {\bf 
Strategy 
for Sketching Graphs}\footnote[1]{This strategy is refined further, for 
rational 
functions, in Section 2.3.}

\begin{enumerate}
\item[{\bf a)}]
\item[{\bf b)}]
\item[{\bf c)}]
\item[{\bf d)}]
\item[{\bf e)}]
\item[{\bf f)}]
\end{enumerate}

\end{tcolorbox}
\end{document}

输出:

在此处输入图片描述

首先,包装tcolorbox中的“1”符号读得不正确,footmisc页面底部的脚注也不正确。请指教!

答案1

您可以使用\footnotemark\footnotetext宏:

\documentclass{article}

\usepackage{enumitem}

\usepackage[most]{tcolorbox}
\usepackage[symbol]{footmisc}

\begin{document}
\begin{tcolorbox}[colback=yellow!20!white,colframe=green!40!gray]
    \textcolor{green!40!gray}{\large \textbf{Definitions}}
    \quad\textbf{Strategy for Sketching Graphs}\footnotemark[1]

    \begin{enumerate}[label=\textbf{\alph*)}]
        \item
        \item
        \item
        \item
        \item
        \item
    \end{enumerate}

\end{tcolorbox}
\footnotetext[1]{This strategy is refined further, for 
    rational functions, in Section 2.3.}
\end{document}

在此处输入图片描述

相关内容