报告有三个编号级别,内联文本

报告有三个编号级别,内联文本

我是乳胶的新手,所以如果这个问题已经被问过/很明显,请原谅我。

我希望文档看起来像这样:

1. 章节

1.1 章节

1.1.1 此处“小节”中的段落文本

问题在于,小节将文本推到下一行,并且以粗体显示等,基本上就像它应该的那样(小节)。有没有一种通用方法可以让小节像段落一样显示?

我的乳胶文档目前看起来像

\documentclass[12pt,a4paper,twoside]{memoir}
\chapterstyle{hangnum}
\begin{document}
\setcounter{secnumdepth}{3}
\chapterstyle{section}
\chapter{something}
\section{blah}
\subsection{}
This is offset on the next line, it should be on the same line.
\end{document}

答案1

文档memoir类提供了钩子来轻松定制部分单元标题;在这种情况下,您需要为\subsecheadstyle和设置适当的值\aftersubsecskip(此处的负值将给出一个连续标题):

\documentclass[12pt,a4paper,twoside]{memoir}

\setcounter{secnumdepth}{3}
\chapterstyle{section}

\renewcommand\subsecheadstyle{\normalfont}
\setlength\aftersubsecskip{-0.5em}

\begin{document}

\chapter{First Level Unit}
\section{Second Level Unit}
\subsection{}
This is on the same line.

\end{document}

在此处输入图片描述

相关内容