패키지 재실행 파일 검사 경고: `******.out' 파일이 변경되었습니다.

패키지 재실행 파일 검사 경고: `******.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 실행은 한 번만 필요합니다.

관련 정보