如何用列表旋转脚注?

How to rotate footnote with listings?

如何旋转包含列表的脚注?

目前我的代码如下所示:

\documentclass[12pt]{article}

\usepackage{listings} %kod programów
\usepackage{graphicx}

\begin{document}
\rotatebox{180}{\footnote{Trzeba zastosować
\begin{minipage}{0.23\textwidth}
        \begin{lstlisting}
            \draw[stealth-]\end{lstlisting}
\end{minipage}}}
\end{document}

素描:

非常感谢!

您可以像这样旋转脚注的内容:

\documentclass[12pt]{article}

\usepackage{listings} %kod programów
\usepackage{graphicx}
\newsavebox{\LstBox}

\begin{document}

\begin{lrbox}{\LstBox}
\begin{lstlisting}
\draw[stealth-]
\end{lstlisting}
\end{lrbox}

some text\footnote{\rotatebox{180}{Trzeba zastosować {\usebox{\LstBox}}}}


\end{document}