我正在使用refcheck
包来检查我的论文中未引用哪个方程式。但是,它与包“书签”冲突。我该如何解决这个问题,但仍然使用bookmark
包
\documentclass[preprint,12pt, sort&compress]{elsarticle}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsmath,mathtools}
\usepackage{framed}
\usepackage{refcheck}
\usepackage[bookmarks,bookmarksopen,bookmarksdepth=2]{hyperref}
\usepackage{bookmark}% http://ctan.org/pkg/bookmark
\begin{document}
\begin{equation}\label{eq:1}
1+1=2
\end{equation}
\begin{equation}\label{eq:2}
1-1=0
\end{equation}
The Eq. (\ref{eq:1}) is cited.
\end{document}
答案1
refcheck
需要挂接到和其他相关命令,但如果这些命令稍后(再次)被和\ref
更改,则不再可能:hyperref
bookmarks
解决方案:加载refcheck
后 bookmarks
refcheck
hyperref
是少数必须在etc.之后加载的软件包之一。
\documentclass[preprint,12pt, sort&compress]{elsarticle}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsmath,mathtools}
\usepackage{framed}
\usepackage[bookmarks,bookmarksopen,bookmarksdepth=2]{hyperref}
\usepackage{bookmark}% http://ctan.org/pkg/bookmark
\usepackage{refcheck}
\begin{document}
\begin{equation}\label{eq:1}
1+1=2
\end{equation}
\begin{equation}\label{eq:2}
1-1=0
\end{equation}
The Eq. (\ref{eq:1}) is cited.
\end{document}