我编写了一个包含多层切片的 latex 文件。我想要做的是更改每层的制表符/位置。也许还可以更改字体或其他内容。
但是我遇到的问题是,我知道如何逐部分地进行操作,但不知道如何总体上改变各个层。
我发现的唯一问题是通常如何更改章节标题,但不能更改下面的文本(同样)。
这是文件的一部分:
\documentclass[12pt, fleqn, a4paper]{report}
\usepackage{mathtools}
\usepackage{amsfonts}
\usepackage{graphicx}
\setcounter{secnumdepth}{2}
\setcounter{tocdepth}{2}
\setlength{\parindent}{0pt}
\title{xxx}
\date{xxx}
\author{xxx}
\begin{document}
\maketitle
\newpage
\tableofcontents
\newpage
\chapter{Geordende Verzamelingen}
\section{Definities}
\subsection{Geordende Verzamelingen}
This needs to be tabbed to the right, bold and dark blue
\subsubsection{Voorbeeld}
This needs to be double tabbed to the right, italic and light blue
感谢您阅读本文,希望您能帮助我。
答案1
对于文章类,\section
命令(例如)使用以下方式定义
\newcommand\section{\@startsection {section}{1}{\z@}%
{-3.5ex \@plus -1ex \@minus -.2ex}%
{2.3ex \@plus.2ex}%
{\normalfont\Large\bfseries}}
其中\@startsection
记录在source2e
(见https://www.ctan.org/pkg/source2e?lang=en) (并非旨在作为答案,但对于评论来说太复杂了。)