手动指定目录和标题页中的边距

手动指定目录和标题页中的边距

我刚刚开始接触乳胶。我正在用给定的模板写论文。模板很大,我无法从中推断出最少的工作示例,太多东西了,我无法理解哪些是重要的,哪些不是这个问题的重点。

事实是,计算出的 PDF 中的标题边距和目录超出了范围。请参阅所附图片

我认为解决这个问题的简单方法是手动指定这两页的边距。

我尝试了很多方法\linespread{}但都没有解决问题。

这是模板的一部分(再次抱歉,这不是一个最低限度的工作示例,我不明白什么是相关的,什么是不相关的)

%\documentclass[12pt,a4paper,oneside, titlepage,fleqn,italian]{book} %stampa
\documentclass[12pt,a4paper,twoside,openright,titlepage,fleqn,italian]{book}

\usepackage[colorlinks=false]{hyperref}%<--inserisce segnalibri e riferimenti indice

\setlength{\parindent}{0pt}
\frenchspacing
\linespread{1.25}

%\addtolength{\voffset}{-1,5cm} %stampa
%\addtolength{\textheight}{-1,5cm} %stampa
%\addtolength{\textwidth}{-1,5cm} %stampa
%inverto i margini per la rilegatura
%\linespread{1} %stampa

\makeatletter
\renewcommand{\thesection}{\if@mainmatter\thechapter.\arabic{section}\else\arabic{section}\fi}
\makeatother

\usepackage{titlesec}

    \titleformat {\chapter}
        [display] 
        {\normalfont\bfseries}
        {\large\thechapter}
        {0ex}
        {\LARGE \titlerule[1pt] }

    \titleformat{\section}
        {\normalfont\large\bfseries}
        {\thesection}
        {1ex}
        {}

    \titleformat{\subsection}
        {\normalfont\bfseries}
        {\thesubsection}
        {1ex}
        {}

\usepackage{fancyhdr}

\pagestyle{fancy}

\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\renewcommand{\subsectionmark}[1]{\markright{\thesubsection\ #1}}

\fancyhf{}
\lhead{\rightmark}
\chead{}
\rhead{\bfseries\thepage}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0pt}
\newcommand{\tab}{\hspace*{2em}}
\DeclareMathOperator*{\argmax}{arg\,max}
\setlength{\headheight}{15pt}%
\fancypagestyle{plain}{\fancyhead{}\renewcommand{\headrulewidth}{0pt}}%
\fancyhead[RO]{\textbf{\thepage}}  %Displays the page number in bold in the header,
                                                       %to the left on even pages and to the right on odd pages.
%\fancyhead[RE]{\nouppercase{\leftmark}} % Displays the upper-level (section) information -
                                                                  % as determined above - in non-upper case in the 
                                                                  % header, to the left on odd pages.
\fancyhead[LO]{\nouppercase{\rightmark}} % Displays the lower-level (chapter) information - as
                                                                  %determined above - in the header, 
                                                                  % to the left on odd pages.

看图片:第二页的红色框应该在标题页中,并且目录超出了边距。

有人能提供一些提示吗?!

在此处输入图片描述

相关内容