我是 LaTeX 新手。我目前正在使用 overleaf 撰写论文,出于某种原因,自动生成的书签不会指向相应的部分。以下是我的论文格式与标准论文格式之间的几个主要差异:
我的大学对封面/标题页有特殊的格式。字体是 Verdana。我手动创建了封面和标题页的 PDF 并将其插入到我的论文中,而不是让 latex 为我生成一个。
对于摘要、致谢、目录、图表等,我的大学要求使用罗马页码,而对于正文,我的大学要求使用阿拉伯页码。
对于非正文部分,我的大学不允许使用连续标题,但正文必须有连续标题。
这就是我使用 fancyhf 在不同页面格式之间切换的原因。但不幸的是,除了我的结果部分,文件中的所有其他部分都因某种原因指向我的封面页。
我曾尝试解决该问题\phantomsection
\addcontentsline{toc}{section}{Summary}
,并\renewcommand{\summaryname}{Summary}
根据以下答案链接未指向正确的页面和书签链接到错误的页面,虽然书签可以引导到正确的章节,但章节标题却被遗漏了。此外,我不知道这种方法是否适用于小节和段落。
我可以动动脑筋吗?为什么结果部分的书签是唯一有用的?非常感谢!
\usepackage{graphicx}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=black,
filecolor=magenta,
urlcolor=black,
citecolor=black,
}
\usepackage{bookmark}
\usepackage[english]{babel}
\usepackage[ansinew]{inputenc}
\usepackage{csquotes}
\usepackage[tocbib,bibnewpage]{apacite}
\usepackage{multicol}
\usepackage{multirow}
\usepackage{booktabs}
\usepackage[table,xcdraw]{xcolor}
\usepackage{fancyhdr}
\usepackage{lineno}
\usepackage{amsmath}
\usepackage{setspace}
\usepackage{geometry}
\usepackage{pdfpages}
\usepackage{rotating} % <-- HERE
\usepackage{lscape}
\usepackage{caption}
\usepackage{ltablex}
\usepackage[referable]{threeparttablex}
\usepackage{threeparttable}[normal]
\usepackage{tabularx}
%\documentclass{article}
\usepackage{fontspec}%déjà chargé par luatextra
\defaultfontfeatures{Ligatures=TeX} % to have the automatics ligatures of TeX
\pagestyle{fancy}
\fancyhf{}
\rhead{\thepage}
\lhead{}
\fancypagestyle{main}{
\fancyhf{}
\lhead{\small\small THESIS}
\rhead{\thepage}
}
\geometry{
left=2.5cm,
right=2.5cm,
top=2.5cm,
bottom=2.5cm
}
% only necessary to change shorttitle as it is part of the header
\title{title}
\shorttitle{THESIS}
\author{name}
\affiliation{XXX UNIVERSITY}
\course{Masterthesis}
\professor{professor}
\duedate{\today}
\usepackage{titlesec}
\titlespacing\section{0pt}{12pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt}
\titlespacing\subsection{0pt}{12pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt}
\titlespacing\subsubsection{0pt}{12pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt}
\begin{document}
\setstretch{1.5} % 1.5 line spacing
\setromanfont{Verdana}
% --------------COVER------------------------
\thispagestyle{empty}
% --------------COVER PAGE------------------------
\begin{coverpage}
\includepdf{cover}
\end{coverpage}
%\vspace*{0cm}
% --------------BLANK PAGE------------------------
\clearpage\null\thispagestyle{empty}\clearpage
% --------------BLANK PAGE------------------------
\clearpage\null\thispagestyle{empty}\clearpage
% --------------BLANK PAGE------------------------
\clearpage\null\thispagestyle{empty}\clearpage
% --------------TITLE PAGE------------------------
% insert pdf due to special title page formatting
\begin{titlepage}
\includepdf{cover}
\end{titlepage}
% --------------BLANK PAGE------------------------
\clearpage\null\thispagestyle{empty}\clearpage
\clearpage
\setromanfont{Times New Roman}
\pagenumbering{Roman}
\pagestyle{fancy}
\Some {\fontsize{11}{15}\selectfont % font size 11
\setstretch{1.5}} % line spacing 1.5
\section{Summary}
\section{Acknowledgements}
\pdfbookmark[section]{\contentsname}{toc}
\renewcommand\contentsname{Table of Contents}
\tableofcontents
\phantomsection
\addcontentsline{toc}{section}{List of Tables}
\listoftables
\clearpage
\pagestyle{main}
\pagenumbering{arabic}
\setcounter{page}{1}
\pagestyle{main}
%\fancyhf{}
%\fancyhead[R]{\thepage}
\setlength{\parskip}{0.1mm}
\raggedbottom
\nopagebreak
\section{1. Introduction}
\section{2. Methods}
\section{3. Results}
\section{4. Discussion}
\section{5. Conclusion}
\end{document}```