我希望的前景是:
1 简介(章节) 1.1 第一小节 1.2 第二小节.. 等等
2 第 2 章(节)2.1 小节等
但 LaTeX 输出
1.1 简介 1.1.1 小节
1.2 第 2 章 1.2.1 小节
我该如何修复我的序言?
附录 以下是迄今为止的序言:
\documentclass[12pt, onesided]{report}
\usepackage{geometry}
\geometry{letterpaper}
\usepackage{graphicx}
\usepackage{amssymb}
\setcounter{tocdepth}{6}
\setcounter{secnumdepth}{6}
\setcounter{chapter}{1}
答案1
从评论来看,您正在使用report
(顺便说一下,类选项是oneside
而不是onesided
),因此您的较高部分单元(假设您不会使用\part
)应该用 生成\chapter
;较低部分单元可以使用\section
、\subsection
、\subsubsection
、 段落 和生成\subparagraph
(其中每一个都有其计数器从属于紧邻上方单元的计数器):
\documentclass[12pt,oneside]{report}
\setcounter{tocdepth}{5}
\setcounter{secnumdepth}{5}
\begin{document}
\chapter{Introduction}
\section{A test section}
\subsection{A test subsection}
\subsubsection{A test subsubsection}
\paragraph{A test paragraph}
\subparagraph{A test subparagraph}
\subsection{Another test subsection}
\section{Another test section}
\chapter{Another test chapter}
\section{A test section}
\section{Another test section}
\subsection{A test subsection}
\subsection{Another test subsection}
\end{document}
也许您想通过删除“章节”一词并将标题与编号放在同一行来更改章节标题的格式?如果是这样,titlesec
软件包可以为您完成这项工作:
\documentclass[12pt,oneside]{report}
\usepackage{titlesec}
\titleformat{\chapter}[block]
{\normalfont\huge\bfseries}{\thechapter}{20pt}{}
\titlespacing*{\chapter}
{0pt}{20pt}{20pt}
\setcounter{tocdepth}{5}
\setcounter{secnumdepth}{5}
\begin{document}
\chapter{Introduction}
\section{A test section}
\subsection{A test subsection}
\subsubsection{A test subsubsection}
\paragraph{A test paragraph}
\subparagraph{A test subparagraph}
\subsection{Another test subsection}
\section{Another test section}
\chapter{Another test chapter}
\section{A test section}
\section{Another test section}
\subsection{A test subsection}
\subsection{Another test subsection}
\end{document}
另一种选择是使用article
而不是report
和\section
,\subsection
,\subsubsection
和\paragraph
(文章中\subparagraph
没有)。\chapter