从表格环境中的表格列表中删除引用标记

从表格环境中的表格列表中删除引用标记

我使用 captionof 命令在不同的表格环境中使用标题,大多数表格都有引用或脚注标记,这些标记出现在我的表格列表中,请问如何删除这些标记?

\documentclass[12pt,a4paper,oneside,openright]{report}
\usepackage{caption}
\begin{document}

\begin{center}
   \begin{tabular}{|p{2cm}|p{2cm}|}
      \hline 
         Column 1 & Column 2 \\
     \hline
         line     & line     \\
     \hline 
  \end{tabular}
\captionof{table}{Title\protect\cite{bookmark}}
\end{center}

\end{document}

答案1

[Title]只需在命令中添加简短标题\captionof{table}[Title]{Title\protect\cite{bookmark}}

以下 MWE

\documentclass[12pt,a4paper,oneside,openright]{report}

\usepackage{caption}

\begin{document}

\listoftables

\begin{center}
   \begin{tabular}{|p{2cm}|p{2cm}|}
      \hline 
         Column 1 & Column 2 \\
     \hline
         line     & line     \\
     \hline 
  \end{tabular}
\captionof{table}[Title]{Title\protect\cite{bookmark}} % <==================
%                ^^^^^^^   <================================================
\end{center}

\end{document}

给你:

在此处输入图片描述

我之所以会出现问号是因为我没有您的 bib 文件来编译...

相关内容