私は博士論文のいくつかの段落に番号を付けました。しかし、それらは\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 は理解しにくいと言わざるを得ません。セクションとフランス語と英語のコードをすべて削除しました。一部の段落を TOC に表示し、他の段落を TOC に表示しないための非常に簡単な方法は次のとおりです。
\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を整理するようお願いしなければなりません。最小限。