将标题文字插入正文

将标题文字插入正文

\ref命令只能引用表的编号,如下面的代码。

\documentclass{article}
\begin{document}
According to Table \ref{table} [[HERE]], we blah blah.
\begin{table}[tb]
  \caption{The caption of the table}
  \label{table}
  \begin{center}
    \begin{tabular}{ll}\hline foo & bar \\ \hline\end{tabular}
  \end{center}
\end{table}
\end{document}

我想将标题文本插入到正文之后\ref(位置[[HERE]])。

喜欢

根据表1:“表格的标题”,我们等等等等。

不是

根据表1,我们等等等等。

有什么方法可以将标题文字插入正文吗?

答案1

例如,包namereftitleref提供引用标题(和部分,...):

\documentclass{article}
\usepackage{booktabs}% nicer table lines
\usepackage{nameref}
\usepackage{csquotes}% quotes with multilingual support
\usepackage{caption}% fixes the spacing around caption for tables
\begin{document}
According to Table \ref{table} \enquote{\nameref{table}}, we blah blah.
\begin{table}[tb]
  \centering % avoids additional vertical space of environment center
  \caption{The caption of the table}
  \label{table}
  \begin{tabular}{ll}
    \toprule
    foo & bar \\
    \bottomrule
  \end{tabular}
\end{table}
\end{document}

结果

含包装titleref

\usepackage{titleref}
...\titleref{...}...

另请参阅评论以获得更多提示。

相关内容