如何在 Beamer 中删除脚注标记(数字)?

如何在 Beamer 中删除脚注标记(数字)?

你好这是我的最小工作环境:

\documentclass[compress]{beamer}
\usepackage[version=4]{mhchem}
\usepackage{graphicx}
\begin{document}
\section{Introduction}
\subsection{Germanium Catenates}
\begin{frame}[t]{\ce{Ge-F} Containing Compounds} \vspace{20pt}

\begin{itemize}

\item There are 134 compounds in total that contain \ce{Ge-F} bond.

\begin{figure}[ht]

\includegraphics[width=0.4\textwidth]{Figures/Images1.png}
\end{figure}


\end{itemize}
\footnotetext[1]{{\tiny A test footnote in the first column}}

\end{frame}

\end{document}

我怎样才能删除该标记号码?

它看起来像这样:

在此处输入图片描述

另外,当我使用此解决方案最终结果是这样的:

在此处输入图片描述

提前致谢。

答案1

作为@marmot 的出色答案的替代,您还可以使用 beamers 自己的机制来改变脚注的外观。

要更改文本的大小:

\setbeamerfont{footnote}{size=\tiny}

要获得未编号的脚注:

\setbeamertemplate{footnote}{%
  \parindent 1em\noindent%
  \raggedright
  \insertfootnotetext\par%
}

这两种设置都可以全局应用(如下例所示),或者如果在组内使用,则可以仅在一个脚注中本地应用。

figure还请注意,在没有浮点数的类中,您的环境不需要任何浮点说明符。

\documentclass[compress]{beamer}

\usepackage[version=4]{mhchem}

\setbeamerfont{footnote}{size=\tiny}

\setbeamertemplate{footnote}{%
  \parindent 1em\noindent%
  \raggedright
  \insertfootnotetext\par%
}

\begin{document}
\section{Introduction}
\subsection{Germanium Catenates}
\begin{frame}[t]{\ce{Ge-F} Containing Compounds} \vspace{20pt}

\begin{itemize}

\item There are 134 compounds in total that contain \ce{Ge-F} bond.

\begin{figure}
\includegraphics[width=0.4\textwidth]{example-image-duck}
\end{figure}


\end{itemize}

\footnotetext{A test footnote in the first column}

\end{frame}

\end{document}

答案2

欢迎使用 TeX.SE!您需要做的就是使用\blfootnote来自这个很好的答案。顺便说一句,如果您使用该类beamer,则无需加载graphicx包。我也不知道您在哪里使用该mhchem包,但我保留了它以表明没有冲突。

\documentclass[compress]{beamer}
\usepackage[version=4]{mhchem}
\newcommand\blfootnote[1]{%
  \begingroup
  \renewcommand\thefootnote{}\footnote{#1}%
  \addtocounter{footnote}{-1}%
  \endgroup
}

\begin{document}
\section{Introduction}
\subsection{Germanium Catenates}
\begin{frame}[t]{\ce{Ge-F} Containing Compounds} \vspace{20pt}

\begin{itemize}

\item There are 134 compounds in total that contain \ce{Ge-F} bond.

\begin{figure}[ht]

\includegraphics[width=0.4\textwidth]{example-image-duck}
\end{figure}


\end{itemize}
\blfootnote{\tiny A test footnote in the first column}

\end{frame}

\end{document}

在此处输入图片描述

相关内容