我对脚注有些困惑。
这就是我想要做的:
\begin{figure}[H]
\subfigure[WSML Varianten\protect\footnotemark]
{\includegraphics[width=0.5\textwidth]{wsml-space.pdf}
\label{subfigure:wsml-space}}
\hfill
\subfigure[Schichten der WSML Varianten\protect\footnotemark]
{\includegraphics[width=0.4\textwidth]{wsml-layering.pdf}}
\caption[WSML Varianten und Schichten]{WSML-Varianten und deren Zusammenspiel im Überblick}
\label{subfigure:WSML-layer}
\end{figure}
\footnotetext{\url{http://www.w3.org/2004/12/rules-ws/paper/44/}~~(aufgerufen am 31.01.2014)}
\footnotetext{\url{http://www.wsmo.org/TR/d16/d16.1/v0.3/20050320/}~~(aufgerufen am 31.01.2014)}
现在,这两个子图分别标记为“1”和“2”,但从逻辑上讲,脚注文本两次标记为“2”。
有什么办法可以解决这个问题吗?
欢迎光临 fliflaflex
答案1
您可以使用可选参数\footnotetext
:
\documentclass{article}
\usepackage{subfigure}
\usepackage[demo]{graphicx}
\usepackage{float}
\usepackage{url}
\begin{document}
\begin{figure}[H]
\subfigure[WSML Varianten\protect\footnotemark]
{\includegraphics[width=0.5\textwidth]{wsml-space.pdf}
\label{subfigure:wsml-space}}
\hfill
\subfigure[Schichten der WSML Varianten\protect\footnotemark]
{\includegraphics[width=0.4\textwidth]{wsml-layering.pdf}}
\caption[WSML Varianten und Schichten]{WSML-Varianten und deren Zusammenspiel im Überblick}
\label{subfigure:WSML-layer}
\end{figure}
\footnotetext[1]{\url{http://www.w3.org/2004/12/rules-ws/paper/44/}~~(aufgerufen am 31.01.2014)}
\footnotetext{\url{http://www.wsmo.org/TR/d16/d16.1/v0.3/20050320/}~~(aufgerufen am 31.01.2014)}
\end{document}
subfigure
是一个过时的软件包;你应该考虑使用subfig
或者subcaption
反而。
答案2
我建议使用\addtocounter{footnote}{-1}
和,\stepcounter{footnote}
因为脚注的编号经常变化。
\documentclass{article}
\usepackage{subfigure}
\usepackage[demo]{graphicx}
\usepackage{float}
\usepackage{url}
\begin{document}
\begin{figure}[H]
\subfigure[WSML Varianten\protect\footnotemark]
{\includegraphics[width=0.5\textwidth]{wsml-space.pdf}
\label{subfigure:wsml-space}}
\hfill
\subfigure[Schichten der WSML Varianten\protect\footnotemark]
{\includegraphics[width=0.4\textwidth]{wsml-layering.pdf}}
\caption[WSML Varianten und Schichten]{WSML-Varianten und deren Zusammenspiel im Überblick}
\label{subfigure:WSML-layer}
\end{figure}
\addtocounter{footnote}{-1}
\footnotetext{\url{http://www.w3.org/2004/12/rules-ws/paper/44/}~~(aufgerufen am 31.01.2014)}
\stepcounter{footnote}\footnotetext{\url{http://www.wsmo.org/TR/d16/d16.1/v0.3/20050320/}~~(aufgerufen am 31.01.2014)}
\end{document}