我正在使用该hyperref
包为目录生成书签和链接。但是,在双列模式下呈现文档时,章节链接锚点会放置在实际章节标题下方,导致使用任何这些链接/书签时视图都会从章节标题下方开始。有办法解决这个问题吗?
我正在使用 koma-scriptscrreprt
类,但是普通报告类也出现此问题。
例子:
\documentclass[twocolumn]{scrreprt}
\usepackage{lipsum}
\usepackage{hyperref}
\begin{document}
\tableofcontents
\chapter{First chapter}
\lipsum
\chapter{Second chapter}
\lipsum
\end{document}
答案1
这可能不是一个理想的解决方案,但它确实有效。
\documentclass{scrreprt}
\usepackage{lipsum}
\usepackage{multicol}
\usepackage{hyperref}
\begin{document}
\tableofcontents
\chapter{First}
\begin{multicols}{2}
\lipsum[1-6]
\end{multicols}
\chapter{Second}
\begin{multicols}{2}
\lipsum[7-12]
\end{multicols}
\end{document}