머리글에는 표시되지 않는 장 끝 부분에 별표 표시를 했습니다. 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}