更改章节/节样式

更改章节/节样式

我想要实现的是:

Chapter 1. Introduction
Section 1.1 Name of the section 1.1 
Section 1.2 Name of the section 1.2 
...

另外,我想将章节和部分“名称”更改为希腊语。我的所有文档都是希腊语。例如,它将看起来像:

Κεφάλαιο 1. Εισαγωγή
Υποκεφάλαιο 1.1 Δοκιμή 
Υποκεφάλαιο 1.2 Ανάλυση

我也希望在目录中看到类似的内容。

Κεφάλαιο 1. Εισαγωγή ............2
Υποκεφάλαιο 1.1 Δοκιμή ..........2
Υποκεφάλαιο 1.2 Ανάλυση .........3

现有代码:

\documentclass{book}
\usepackage[english]{babel} 
\usepackage{fancyhdr} 
\addto\captionsenglish{\renewcommand{\chaptername}{Lecture}}
 \addto\captionsenglish{\renewcommand{\sectionname}{Δοκιμή}} 
\begin{document} 
\chapter{Test chapter} 
\section{Dokimi} 
\end{document} 

相关内容