段落編號和目錄

段落編號和目錄

我已經給我的博士論文的一些段落編號了。但它們\paragraph在目錄中顯示為 a。我也有“真實”\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最小的

相關內容