使不可见的章节标题出现在 PDF 书签中

使不可见的章节标题出现在 PDF 书签中

我的文章中有一个部分是表格。由于空间限制,我无法将部分标题与表格放在同一页中。另一方面,我希望我的部分标题出现在 pdf 书签中。我如何定义隐藏的部分名称并确保它将出现在目录中,更重要的是出现在 pdf 书签中。顺便说一句,我不想​​让我的表格变小。

我尝试了建议的解决方案使章节标题不可见但它不起作用。

答案1

我的页面基本上是一个大表格,我没有机会输入部分名称。但是,我希望部分名称出现在 pdf 书签中。

\documentclass[12pt]{article}
\usepackage{url}
\usepackage[pdftex]{hyperref} %% comes last
\hypersetup{ 
pdftitle={}, 
pdfauthor={},
bookmarks=true, bookmarksopen=true, pdftoolbar=true, 
pdffitwindow=false,
colorlinks=false,
linkcolor=red, 
citecolor=red,
filecolor=magenta,
urlcolor=black }
\usepackage{bookmark}

\begin{document}    
\newpage%

% LOCATION A

\begin{table}[htb] \centering
% LOCATION B

可能的解决方案1:

\newcommand\invisiblesection[1]{%
  \refstepcounter{section}%
  \addcontentsline{toc}{section}{\protect\numberline{\thesection}#1}%
  \sectionmark{#1}}
enter chapter title here
\invisiblesection{text you want to appear in pdf file}

可能的解决方案2:

\pdfbookmark[1]{title}{comment}

我的错误:我在位置 A 中尝试了每个解决方案。
后果:奇怪的是,pdf 文件书签链接到了一个非常不同的页面。

解决方案:在位置 B 尝试一下

相关内容