如何在 LyX 中的 Classicthesis 中自定义子部分以具有通常的四位数字

如何在 LyX 中的 Classicthesis 中自定义子部分以具有通常的四位数字

我正在使用 classicthesis 模板的最新 LyX 版本。

我想要的是包含数字的,这是文档设置“书籍”下的正常设置: 在此处输入图片描述

我在文档设置“classicthesis”下获得的内容是以下没有数字的内容: 在此处输入图片描述

[更新!]

“文档设置”->“编号和目录”只能获取 Classicthesis LyX 文件中子章节的编号,但不能获取生成的 PDF 中的子章节的编号。

那么还有其他解决方案吗?我的论文还有不到一周就要交了,非常需要紧急帮助!

答案1

我不知道如何在 LyX 中做到这一点,但添加

\setcounter{secnumdepth}{4}

文件序言完成了这项工作。

\documentclass{scrbook}

\usepackage{classicthesis}
\setcounter{secnumdepth}{4}

\begin{document}
\mainmatter
\chapter{A}
\section{B}
\subsection{C}
\subsubsection{D}
Is it numbered?
\end{document}

在此处输入图片描述


我实际使用的代码是 titlesec 2.10.1,

\documentclass{scrbook}

\usepackage{classicthesis}
\setcounter{secnumdepth}{4}

%% This is only necessary if you have titlesec
%% version 2.10.1 (released 2016/03/15).
%% Version 2.10.2 should fix the bug, which
%% doesn't affect older versions.
\usepackage{etoolbox}
\makeatletter
\patchcmd{\ttlh@hang}{\parindent\z@}{\parindent\z@\leavevmode}{}{}
\patchcmd{\ttlh@hang}{\noindent}{}{}{}
\makeatother
%% End of workaround

\begin{document}
\mainmatter
\chapter{A}
\section{B}
\subsection{C}
\subsubsection{D}
Is it numbered?
\end{document}

相关内容