我正在使用 Lyx 撰写一篇法律论文,其中编号应该是字母数字,更具体地说:
A. ---> Part
I. ---> Chapter
1. ---> Section
a) -- > Subsection
aa)
我确实在网上找到了一些指导,现在我正在使用它作为乳胶序言
\renewcommand{\thepart}{\Alph{part}}
\renewcommand{\thechapter}{\Roman {chapter}}
\renewcommand{\thesection}{\arabic{section}}
\renewcommand{\thesubsection}{\alph{subsection})}
\renewcommand{\thesubsubsection}{\alph{subsection}\alph{subsubsection})}
问题在于,罗马数字 VII 和 VIII 的间距不正确,并且超出了章节标题(见截图)
我需要一些帮助,在章节号后添加一个空格,可能还有一个要点(例如 I. II. III.)
提前致谢
勘误表 抱歉,但我忘了提到新的结构应该如下:
§ 1 Introduction
§ 2 TOPIC
A. Section or chapter?
I. sub-section 1
II. sub section 2
III. sub 3
1. sub sub
2.
3.
4.
5.
....
你能帮助我实现这个吗?非常感谢
答案1
我认为您发布的图像是目录的图像。
为了在 ToC 中实现你想要的功能,你可以加载包titletoc
\usepackage{titletoc}
并将以下几行添加到你的序言中:
\titlecontents{chapter}
[2.65em]
{\addvspace{10pt}\bfseries}
{\contentslabel{2.3em}}
{\hspace*{-2.3em}}
{\space.\hfill\contentspage}
因此,以下 MWE
\documentclass{book}
\usepackage{titletoc}
\renewcommand{\thepart}{\Alph{part}}
\renewcommand{\thechapter}{\Roman{chapter}}
\renewcommand{\thesection}{\arabic{section}}
\renewcommand{\thesubsection}{\alph{subsection})}
\renewcommand{\thesubsubsection}{\alph{subsection}\alph{subsubsection})}
\titlecontents{chapter}
[2.65em]
{\addvspace{10pt}\bfseries}
{\contentslabel{2.3em}}
{\hspace*{-2.3em}}
{\space.\hfill\contentspage}
\begin{document}
\tableofcontents
\part{1st part}
\chapter{1st chap}
\chapter{2nd chap}
\chapter{3rd chap}
\chapter{4th chap}
\chapter{5th chap}
\chapter{6th chap}
\chapter{7th chap}
\chapter{Swiss Law}
\section{Definition}
\section{Investors}
\section{Requirements}
\end{document}
产量