段落编号和目录

段落编号和目录

我为博士论文中的一些段落赋予了编号。但它们\paragraph在目录中显示为。我还有“真实”\paragraph标题,我希望它们出现在目录中。

目前,如果“假”段落是\paragraph*,则不会出现在目录中,但它们不再为这些段落编号。如果是\paragraph,它们会为段落编号,但它们在目录中以单个数字显示。

基本上,我希望它们出现在文本中,但不出现在目录中。

如果您有想法,非常感谢!

可编译的示例,其中包括\paragraph

\documentclass{memoir}
\usepackage[french]{babel}
\frenchbsetup{FrenchFootnotes=false}
\setcounter{secnumdepth}{5}
\usepackage{chngcntr}
\counterwithout{paragraph}{subsubsection}
\renewcommand*{\theparagraph}{\arabic{paragraph}.}
\newcommand\p{\paragraph{}}

^这就是\paragraph我正在谈论的。

\begin{document}

\section*{\noun{\textemdash{} }Section 1 \textemdash \noun{}\protect \\
\noun{Lorem impsum}}

\addcontentsline{toc}{section}{\protect\numberline{}Section 1 --- Lorem ipsum}

\selectlanguage{english}%
\p{}\foreignlanguage{french}{XXXXXXXX}

\selectlanguage{french}%

\subsection*{§1 \textemdash{} Ipsum lorem}

\addcontentsline{toc}{subsection}{\protect\numberline{}§1 --- Ipsum lorem}

\selectlanguage{english}%
\p{}\foreignlanguage{french}{XXXXXXXXX}

\tableofcontents{}

\end{document}

现在是什么样: 现在的情况 我希望它是什么样,而不会丢失文本中段落前面的数字: 我希望它是什么

答案1

我必须说,您的 MWE 并不容易理解。我刚刚放弃了那里的所有章节以及法语和英语的代码。这是一种非常简单的方法,可以让某些段落出现在目录中,而其他段落则不出现:

\documentclass{memoir}
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\newcommand\simpleparagraph[1]{%
  \stepcounter{paragraph}\paragraph*{\theparagraph\quad{}#1}}
\begin{document}
\tableofcontents
\simpleparagraph{normal} paragraph (not in the toc)
\paragraph{special} paragraph that will appear in the toc.
\simpleparagraph{normal} paragraph (not in the toc)
\paragraph{special} paragraph that will appear in the toc.
\end{document}

输入图片描述

如果你对版面布局等做了很多更改,我建议标题安全包裹。

如果这不是你想要的,我还必须要求你清理你的 MWE最小

相关内容