I am trying to create a footnote symbol * in a tcolorbox environment and the result is not the symbol nor at the bottom of the page instead within the box!
\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}
This outputs:
First of all tcolorbox is not reading the correct symbol for '1' in the footmisc package nor is the footnote at the bottom of the page. Please advise!


tcolorboxdoes not claim that footnotes appear at the bottom of the page. It's the same issue you would have with footnotes intabularenvironment. Besides that, your document is not compilable – Jan 04 '19 at 14:57\it,\bf, etc. font macros are deprecated because they do not use the new font selection scheme introduced with LaTeX2e. Please use{\itshape ..},{\bfseries ..}or\textit{..},\textbf{..}instead. See Does it matter if I use\textitor\it,\bfseriesor\bf, etc. and Will two-letter font style commands (\bf,\it, …) ever be resurrected in LaTeX? for more information. – samcarter_is_at_topanswers.xyz Jan 04 '19 at 15:00tcolorboxusesmpfootnoteactually, that's why it does use the correct symbol – Jan 04 '19 at 15:08