如何删除不必要的括号?

如何删除不必要的括号?

这是我的完整代码:

\begin{filecontents*}{mybiblio.bib}
@article{Chua1999,
author = {Chua},
title = {A title},
journal = {A Journal},
year = {1999},
}\end{filecontents*}
\documentclass{article}
\usepackage[backend=biber,authordate-trad]{biblatex-chicago}
\addbibresource{mybiblio.bib}
\usepackage[demo]{graphicx}
\begin{document}
  \begin{figure}
    \centering
    \includegraphics{foo}  ...
    \caption[Caption for LOF]{Real caption\protect\footnotemark}
  \end{figure}
\footnotetext{\footfullcite{Chua1999}}
\printbibliography
\end{document}

我对这个命令有疑问:

\footnotetext{\footfullcite{Chua1999}}

我在 \footnotetext 中添加了 \footfullcite 命令,因为我想在脚注中添加图形的标题引用,但在输出中我得到了不必要的括号,正如我在屏幕截图中红色箭头所提到的那样。

我想知道如何删除这里不必要的括号。 在此处输入图片描述

答案1

你只需要\fullcite。该命令\footfullcite用于在文本中的脚注完整引用,而不是在\footnote(或\footnotetext)内。

\begin{filecontents*}{\jobname.bib}
  @article{Chua1999,
  author = {Chua},
  title = {A title},
  journal = {A Journal},
  year = {1999},
}
\end{filecontents*}

\documentclass{article}
\usepackage[backend=biber,authordate-trad]{biblatex-chicago}
\usepackage{graphicx}

\addbibresource{\jobname.bib}

\setlength{\textheight}{4.5cm} % just to make a smaller picture

\begin{document}

\begin{figure}[!htp]
\centering

\includegraphics[width=3cm]{example-image}

\caption[Caption for LOF]{Real caption\protect\footnotemark}

\end{figure}
\footnotetext{\fullcite{Chua1999}}

%\printbibliography

\end{document}

在此处输入图片描述

相关内容