IEEE Xplore 无书签

IEEE Xplore 无书签
\documentclass[conference]{IEEEtran}

IEEE Xplorepaper 要求删除书签,我不知道为什么,即使我添加了:

\usepackage[bookmarks=false]{hyperref}
\PassOptionsToPackage{bookmarks={false}}{hyperref}

它仍然在 pdf 的引用部分显示链接和书签。如能提供帮助,我将不胜感激。

% *** MISC UTILITY PACKAGES ***
%
%\usepackage{ifpdf}
% Heiko Oberdiek's ifpdf.sty is very useful if you need conditional
% compilation based on whether the output is pdf or dvi.
% usage:
% \ifpdf
%   % pdf code
% \else
%   % dvi code
% \fi
% The latest version of ifpdf.sty can be obtained from:
% http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/
% Also, note that IEEEtran.cls V1.7 and later provides a builtin
% \ifCLASSINFOpdf conditional that works the same way.
% When switching from latex to pdflatex and vice-versa, the compiler may
% have to be run twice to clear warning/error messages.





\else
\fi





% *** PDF, URL AND HYPERLINK PACKAGES ***
%
%\usepackage{url}
% url.sty was written by Donald Arseneau. It provides better support for
% handling and breaking URLs. url.sty is already installed on most LaTeX
% systems. The latest version can be obtained at:
% http://www.ctan.org/tex-archive/macros/latex/contrib/misc/
% Read the url.sty source comments for usage information. Basically,
% \url{my_url_here}.

\hyphenation{op-tical net-works semi-conduc-tor}

\usepackage[bookmarks=false]{hyperref}
\PassOptionsToPackage{bookmarks={false}}{hyperref}

\usepackage{graphicx}

答案1

此(最小)文档不生成书签。说出bookmarks=true或删除该语句bookmarks=false将启用它们(在这种情况下,可能需要单击查看器的书签面板才能看到它们)

一些与根本问题无关的评论

  • \else ...\fi对不匹配——将导致编译错误
  • \PassOptionsToPackage在这种情况下可能没有必要。
  • hyperref几乎在任何情况下都应该是最后一个包含的包(除非cleveref也使用)

\documentclass[conference]{IEEEtran}


\hyphenation{op-tical net-works semi-conduc-tor}



\usepackage{blindtext}
\usepackage{graphicx}

\usepackage[bookmarks=false]{hyperref}


\begin{document}
\tableofcontents
\section{first}
\blindtext[10]
\end{document}

在此处输入图片描述

相关内容