我对页码编号有问题,Zusammenfassung
和Inhaltsverzeichnis
应该在右下角有罗马数字,但没有。见图片:
另外,我希望所有部分也都显示在标题中。但遗憾的是,我只有这个,这也是错误的,应该是1. Motivation
而不是Inhaltsverzeichnis
。
我还遇到了另一个问题,见下图。为什么我的部分编号从 0 开始?它应该1. Motivation
是1.1 Motivation 2
这是我的 title.txt:
\usepackage[a4paper, left={2.5cm}, right={2cm}, top={3cm}, bottom={3cm}]{geometry}
\usepackage{fancyhdr}
\usepackage{lipsum}% just to generate text for the example
\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{\thechapter\ \leftmark}
\fancyhead[R]{}
\renewcommand{\chaptermark}[1]{\markboth{#1}{#1}}
\fancyfoot[R]{\thepage}
\newcommand{\Title}[8]{
\begin{titlepage}
\normalfont \normalsize
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\center
{\LARGE \textsc{TITLE}} \\[4ex]
{\Large #1 #2}\\
\vspace*{8ex}
\HRule \\[0.4cm]
{ \huge \bfseries #3}\\[0.4cm]
\HRule \\[1.5cm]
\vspace*{8ex}
{\Large #4\\
#5\\}
\vspace*{16ex}
\begin{flushleft}
{\large
Betreuung: \\
#6 \\
#7 \\
\vspace*{4ex}
#8 \\}
\end{flushleft}
\end{titlepage}
}
这是我的 main.txt:
\documentclass[12pt]{report}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\input{vorlage.tex}
\begin{document}
%% TITLESEITE %%
\Title
{Test1}
{Test2}
{xy}
{zz}
{zz}
{test}
{test}
{17. Oktober 2021}
%% INHALT %%
\pagenumbering{roman}
\addcontentsline{toc}{section}{Zusammenfassung}
\begin{abstract}
\lipsum[1-5]
\end{abstract}
\newpage
\tableofcontents
%% TEXT %%
\pagenumbering{arabic}
\include{sections/motivation}
\end{document}
我还有一个 motivation.txt,如下所示:
\section{motivation}
\lipsum[1-6]
\subsection{motivation 2}
\lipsum[1-6]
答案1
从您的各种问题和评论来看,我认为您想要这样的东西:
笔记
report
是一个很好的文档类。它使用单独的标题页,单面,所有页面样式相同,并且有章节。- 我过去常常
titlesec
使章节看起来更像普通的章节标题,因为这似乎是你想要的。 - 我过去常常
fancyhdr
将当前的名称\chapter
(以及\abstractname
和\contentsname
)放在左上角的页眉中,并将页面放在右下角的页脚中。 - 我放弃了
abstract
环境,因为这被设置为report
,而你似乎更希望它像一个章节。 - 需要传递
headheight
到,geometry
因为 'Ü' 对于默认值来说有点高headheight
,并且会生成警告fancyhdr
。
平均能量损失
\documentclass[a4paper,12pt]{report}
\usepackage[ngerman]{babel}
\usepackage{blindtext}
\usepackage[headheight=15pt]{geometry}
\usepackage{titlesec}
\titleformat{\chapter}{\normalfont\huge\bfseries}{\thechapter}{1em}{}
\titlespacing*{\chapter}{0pt}{-4ex}{3.5ex plus 1ex minus .2ex}
\usepackage{fancyhdr}
\fancypagestyle{plain}{%
\fancyhf{}%
\fancyhead[L]{\nouppercase{\leftmark}}%
\fancyfoot[R]{\thepage}}
\pagestyle{plain}
\renewcommand{\chaptermark}[1]{\markboth{\thechapter.\ #1}{}}
\begin{document}
\title{My Document Title}
\author{Mr.~Hanky}
\maketitle
\clearpage
\pagenumbering{roman}
\chapter*{\abstractname}
\addcontentsline{toc}{chapter}{\abstractname}
\markboth{\abstractname}{}
\blindtext[1]
\tableofcontents
\clearpage
\pagenumbering{arabic}
\blinddocument
\blinddocument
\end{document}