如何修复 LaTeX 附录标题的问题?

如何修复 LaTeX 附录标题的问题?

如何输入附录的页眉,以使其不碰到页边距?

我在 LaTeX 上有这样的代码:

\documentclass[a4paper,12pt,oneside]{book}
\usepackage[left=3cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\usepackage{lipsum}
\usepackage[toc,page]{appendix}
\renewcommand{\appendixtocname}{Lampiran}
\renewcommand{\appendixpagename}{Lampiran}

\begin{document}
    \begin{appendices}
        \chapter{Penurunan dari perkiraan solusi analitik untuk opsi Asia dengan volatilitas stokastik}
        \lipsum
    \end{appendices}
\end{document}

这是输出: 在此处输入图片描述

答案1

bookreport类中chapter,命令可以采用可选参数:

\chapter[<toc-header-title>]{<title>}

其中,可选项toc-header-title放入目录和页眉中,而title用作文档正文中的章节标题;通常toc-header-title是 的缩写版本title。如果不使用可选项参数,则title在所有三个位置都使用。对于较低级别的划分(例如\section等) ,情况也类似。

我不知道您使用的语言,所以我无法建议您附录标题的缩写版本。

如果您需要目录、标题和正文的三个不同版本,则该类(和memoir的超集)可以通过提供两个可选参数来扩展它:reportbook

\chapter[<toc-title>][<head-title>]{<title>}

没有可选参数 title在这三个地方都使用

一个可选参数 toc-title用于目录和标题

两个可选参数 toc-title用于目录并head-title用于标题。

在所有情况下title都用作文档正文中的章节标题。

对于\section下文和同样如此。

相关内容