Package rerunfilecheck 警告:檔案「******.out」已更改

Package rerunfilecheck 警告:檔案「******.out」已更改

警告不斷出現,我總是忽略它,但今天我想知道如何處理它。

我的 MWE 是

\documentclass[14pt]{beamer}% http://ctan.org/pkg/beamer
\let\Tiny\tiny% http://tex.stackexchange.com/q/58087/5764
\usetheme{Berkeley}
\makeatletter
\beamer@headheight=1.5\baselineskip
\makeatother
\setbeamercolor{normal text}{bg=black!10}
\title[Title]{My title}
\subtitle{Subtitle}
\author{Author}
\institute[Institute]{My institute}
\date[Date]{My date}
\logo{\color{blue!50}\scalebox{2}{\TeX}} % you can % it
\begin{document}

\begin{frame}
  \titlepage
\end{frame}

\section{A section}
\subsection{A subsection}
\begin{frame}
  \frametitle{Frame title}
  \framesubtitle{frame subtitle}
  Some text
\end{frame}



\end{document}

輸出如下:

Package rerunfilecheck Warning: File `model.out' has changed.
(rerunfilecheck)                Rerun to get outlines right
(rerunfilecheck)                or use package `bookmark'.

 )<C:/CTEX/MiKTeX/fonts/type1/public/amsfonts/cm/cmss10.pfb><C:/CTEX/MiKTeX/fon
ts/type1/public/amsfonts/cm/cmss12.pfb><C:/CTEX/MiKTeX/fonts/type1/public/amsfo
nts/cm/cmss17.pfb><C:/CTEX/MiKTeX/fonts/type1/public/amsfonts/cm/cmss8.pfb>
Output written on model.pdf (2 pages, 51454 bytes).
SyncTeX written on model.synctex.gz.
Transcript written on model.log.

gbk2uni, version 0.22, initially implemented by cxterm and ZLB in Jan. 2003
  enhanced by hooklee in Mar. 2003.
  please visit www.ctex.org and www.chinatex.org for more information.
gbk2uni model.out is finished!


_____________________________________________________________________

 PDFLaTeX Compilation Report (Pages: 2)

 Errors: 0   Warnings: 1   Bad Boxes: 0
_____________________________________________________________________

答案1

警告說:

Package rerunfilecheck Warning: File `model.out' has changed.
(rerunfilecheck)                Rerun to get outlines right
(rerunfilecheck)                or use package `bookmark'.

我不太清楚,問題是什麼?

  • hyperref.out為其書籤建立文件。需要兩次通過。因此重新運行 LaTeX。

  • 或添加\usepackage{bookmark}.然後使用更現代的書籤管理實現,無需.out文件。書籤更新較早,因此在大多數情況下只需要運行一次 LaTeX。

相關內容