メモワール: スター付きのセクションをヘッダーに取り込むにはどうすればいいですか?

メモワール: スター付きのセクションをヘッダーに取り込むにはどうすればいいですか?

章末のヘッダーに表示されないセクションに星印を付けました。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}

ここに画像の説明を入力してください

関連情報