通过 Latex Beamer 中的星号参考图

通过 Latex Beamer 中的星号参考图

早上好,

而不是使用命令引用图形脚注在标题中,我希望我的图形没有标题以节省空间。相反,图形应由图形右下角的星号引用,如所附示例所示,并且引用应出现在框架的脚注处。如何最轻松地实现这一点,即无需根据某些坐标通过反复试验手动放置星号,直到其处于正确位置?在此处输入图片描述

答案1

类似这样?摘自精美的 LaTeX 电子书示例

在此处输入图片描述

\documentclass{beamer}
\renewcommand{\thefootnote}{(\fnsymbol{footnote})}

\begin{document}
 
\begin{frame}
\frametitle{Sample frame title}
\begin{figure}
\includegraphics[width=0.5\linewidth]{example-image}\footnote[1]{image description}
\end{figure}
\end{frame}

\end{document}

只需改变数字的值,您就可以插入您选择的符号。

  1. 星号 *
  2. 匕首 †
  3. 双匕首‡
  4. 章节符号 §
  5. 段落 ¶
  6. 平行线 ‖
  7. 两个星号 **
  8. 两把匕首††
  9. 两把双匕首‡‡

编号大小写 我不知道如何正确地做到这一点,因此它将非常手动和硬编码:

在此处输入图片描述

\documentclass{beamer}
\usepackage{graphicx}
\newcommand{\customfootnotetext}[2]{{% Group to localize change to footnote
\renewcommand{\thefootnote}{#1}% Update footnote counter representation
\footnotetext[0]{#2}}}% Print footnote text


\begin{document}

\begin{frame}
\frametitle{Sample frame title}
\begin{figure}[h]
\includegraphics[width=0.5\linewidth]{example-image} (1)\customfootnotetext{(1)}{Some text}
\end{figure}
\end{frame}

\end{document}

相关内容