标题中引用*

标题中引用*

我想在图表标题中插入引文。我使用了两种不同的标题,下面举个例子:

我用

\caption{Title of caption that appears in list of tables/figures}

用于表格或图表列表中出现的标题。

另外我使用

\caption*{Source: Eidgenössischer Turnverein (1881), own illustration}

在表格或图片的底部,写上表格或图片的来源。但是,我想用

\caption*{来源:\tcite{turnzeitung81},自己的插图}

这样我就可以在参考书目中获得实际条目,而如果只是将来源写成文本则无法获得实际条目。不幸的是,它无法与标题内的 \tcite 配合使用。我该如何实现这一点?

以下是我的引用的相关代码:

\usepackage{natbib}
\bibliographystyle{apalike}
\newcommand\mycite[2][]{%
  \citeauthor{#2}\ (\citeyear{#2})\ifx#1\undefined\else, #1\fi}
  \newcommand\myfootcite[2][]{\footnote{\mycite[#1]{#2}}}
  \def\prevcite{} % initialize \prevcite
%% macro for in-text citation
\newcommand\tcite[2][]{%  
  \def\newcite{#2} 
  \ifx\prevcite\newcite 
    Ibid.%
  \else%
    \gdef\prevcite{#2}% update \prevcite
    \citeauthor{#2}\ (\citeyear{#2})%
  \fi
  \ifx#1\undefined\else, #1\fi}
%% macro for in-footnote citation
\newcommand\fcite[2][]{\footnote{\tcite[#1]{#2}}}

\bibliographystyle{apalike}
\bibliography{biblio}

非常感谢您的帮助!

编辑:

下面是该问题的一个简单例子:

\documentclass{report}  
\begin{document}  
 \begin{table}[htbp]

    \begin{tabulary}
    \end{tabulary}

    \caption*{Source: \tcite{turnzeitung81}, own illustration}
  \label{tab:addlabel}
\end{table}
\end{document} 



\usepackage{filecontents}

\begin{filecontents*}{\biblio.bib}
  @Article{turnzeitung81,
  Title                    = {Statistik des belgischen {T}urnerbundes für das {J}ahr 1881},
  Author                   = {{Eidgenössischer Turnverein}},
  Journal                  = {Schweizerische Turnzeitung},
  Year                     = {1881},
  Number                   = {5},
  Volume                   = {24},

\end{filecontents*}

\bibliography{\biblio} % if you’re using BibTeX

相关内容