以下是该问题的一个简单重现:
\documentclass{scrreprt}
\usepackage{graphicx}
\usepackage[runs=2]{auto-pst-pdf}
\usepackage{subfig}
\usepackage{psfrag}
\usepackage{blindtext}
\usepackage{classicthesis}
\usepackage{hyperref}
\begin{document}
%\chapter{Test Chapter} % This line causes the problem
\blindtext
\begin{figure}[htbp]
\centering
\scriptsize
\psfrag{LS-DYNA keyword deck by LS-PrePost}{}
\psfrag{Nodal Temperature Data}{\small Knotentemperaturen in ^{\circ}\mathrm{C}}
\psfrag{Time}{\small Zeit in s}
\psfragfig[width=0.70\textwidth,keepaspectratio,angle=-90]{timestep_001.eps}
\caption{Figure from LS-PrePost}
\label{fig:prepost}
\end{figure}
\end{document}
如果\Chapter{}
删除则一切都很好但显然没有章节标题:
如果\Chapter{}
保留,则标题存在,但图形未正确生成:
这种情况仅在hyperref
加载包时发生。
classicthesis
似乎将、auto-pst-pdf
和一起使用会产生冲突hyperref
。原因是什么?有解决方法吗?
本示例的 .eps 文件可以下载这里。
我正在使用 TexWorks 进行编译:pdflatex -synctex=1 -interaction=nonstopmode --shell-escape %.tex
答案1
似乎可以通过不加载包来解决这个问题hyperref
,无论如何它都包含在内classicthesis
。