如何更改页码和章节编号?

如何更改页码和章节编号?

我对 LaTeX 还很陌生。目前我有这个:

\documentclass[11pt]{scrbook}
\usepackage[a4paper,left=2.5cm,right=2.5cm,top=2.5cm,bottom= 3.2cm]{geometry}
%
%
%
\usepackage[pdftex]{graphicx}   %{graphicx} in order to load pictures.
\usepackage[english,german,ngerman]{babel}  %{babel} enables to choose a language.
\usepackage[utf8]{inputenc} %[utf8]{inputenc} enables UTF8-characters not only ASCII.
\usepackage{ae}     %Uses "Latin Modern" instead of "Computer Modern".
\usepackage[colorlinks=false,pdfborder={0 0 0}]{hyperref}%Automatically turns all internal references into "hyperlinks". "pdfborder={0 0 0}" disables red border around hyperrefs.


\begin{document}

\input{./Title.tex}
\input{./blabla.tex}

\tableofcontents




\renewcommand{\thechapter}{\Roman{chapter}}
\renewcommand{\thesection}{\Roman{section}}
\pagenumbering{roman}
\input{./Abstract.tex}


\pagenumbering{arabic}
\renewcommand{\thechapter}{\arabic{chapter}}
\input{./Introduction.tex}
\input{./MyStuff.tex}


\end{document}

我想实现的目标

\renewcommand{\thechapter}{\Roman{chapter}}
\renewcommand{\thesection}{\Roman{section}}

页码编号方案如下:

一、摘要.....I

  1. 简介..1

  2. 我的东西.......2

另外,我希望我纳入章节的部分能够按以下方式编号:阿拉伯也。

但当前的输出有所不同。所有章节、部分和页面仍以阿拉伯语编号。

答案1

这是我提出的方案;该kantlipsum包只是用于生成模拟文本。

\documentclass[11pt]{scrbook}
\usepackage[a4paper,left=2.5cm,right=2.5cm,top=2.5cm,bottom= 3.2cm]{geometry}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english,ngerman]{babel}

\usepackage{lmodern}

\usepackage{graphicx}

\usepackage[colorlinks=false,pdfborder={0 0 0}]{hyperref}

\usepackage{kantlipsum}% for mock text


\begin{document}

\pagenumbering{alph}
\pagestyle{empty}

%\input{./Title.tex}
%\input{./blabla.tex}

\tableofcontents

\frontmatter
\pagestyle{headings}

\begingroup

\renewcommand{\cleardoublepage}{}
%\input{./Abstract.tex}
\chapter{\abstractname}
\kant[1]

\begin{otherlanguage}{english}
\chapter{\abstractname}
\kant[2]
\end{otherlanguage}

\endgroup

\mainmatter

%\input{./Introduction.tex}
%\input{./MyStuff.tex}

\chapter{Introduktion}
\kant[3]

\section{Title}
\kant



\end{document}

我利用前言中的章节没有编号这一事实,并使用了一个技巧将两个章节放在同一页中,这假设你的两个摘要是合适的。

但我的观点是全部页码应该有,即使没有出现。因此摘要将位于页码上,例如(标题页、标题页封底、献词、献词封底、两页的目录)。

相关内容