我试图在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}