回憶錄:如何將加星號的部分放入標題中?

回憶錄:如何將加星號的部分放入標題中?

我在章節末尾加了星號的部分沒有出現在標題中。 MWE 為:

\documentclass{memoir}
\usepackage{lipsum}
\begin{document}
\chapter{Some chapter}
\section*{Some section} % empty header if starred
\lipsum[1-9]
\end{document}

標題為空:

在此輸入影像描述

中建議的補救措施這個答案不適用於部分。如何將加星標部分的標題放入標題中?

答案1

不知道你為什麼要這樣做。

toc如果您希望該部分出現在目錄中,請刪除相關部分。

\documentclass{memoir}
\usepackage{lipsum}

\AtBeginDocument{%
  \edef\defaultsecnumdepth{\the\value{secnumdepth}}%
  \edef\defaulttocdepth{\the\value{tocdepth}}%
}

\newcommand{\specialsection}[1]{%
  \setcounter{secnumdepth}{0}%
  \addtocontents{toc}{\setcounter{tocdepth}{0}}%
  \section{#1}%
  \setcounter{secnumdepth}{\defaultsecnumdepth}%
  \addtocontents{toc}{\setcounter{tocdepth}{\defaulttocdepth}}%
}

\begin{document}

\tableofcontents*

\chapter{Some chapter}

\specialsection{Some section}

\lipsum[1-20]

\section{test}

\end{document}

在此輸入影像描述

相關內容