如何使用 \paragraph 而不在最终的 pdf 中看到标题?

如何使用 \paragraph 而不在最终的 pdf 中看到标题?

我正在写一篇评论,并使用 Latex 创建文档。由于我必须回顾很多参考文献,所以我想利用我写的每个段落的折叠选项,这样我就可以轻松地从完全折叠的文档中引用段落标题,以快速了解每个段落的内容。折叠后的样子如下:

+     23 lines: \section{Introduction}------------------------------------------
        \section{Background and literature review}
                \subsection{This is the title of the subsection}
                        \subsubsection{This is the tittle of the subsubsection}
---+   5 lines: > > > \paragraph{This paragraph is about xyz}
---+  19 lines: > > > \paragraph{This paragraph is about abc}  -----------------
---+   5 lines: > > > \paragraph{}----------------------------------------------
---+   5 lines: > > > \paragraph{}----------------------------------------------

这是展开的文档。如您所见,前两段有标题,而后两段没有:

\subsubsection{This is the title of the subsubsection}
    \paragraph{This paragraph is about xyz}
    This is the content of the first paragraph
    \paragraph{This paragraph is about abc}
    This is the content of the second paragraph
    \paragraph{}
    This is the content of the third paragraph
    \paragraph{}
    This is the content of the fourth paragraph

当我制作 pdf 时,我看到了以下内容:


这是子节的标题

本段关于 xyz这是第一段的内容

本段关于 abc这是第二段的内容

这是第三段的内容

这是第四段的内容


如您所见,前两个段落(大括号内有标题)在实际段落之前显示段落标题,而其他段落(大括号内没有任何内容)仅显示段落。当我将文件编译为 pdf 时,我希望只查看段落,但仍在 .tex 文件的折叠处保留段落标题以供快速参考。像这样:


这是子节的标题

这是第一段的内容

这是第二段的内容

这是第三段的内容

这是第四段的内容


有可能吗?谢谢。

答案1

Vim 的 Latex-suite%%fake为该用例提供了标记。

来自Latex-Suite 手册

%%fakesection节是为用户提供的一种将行分组为“假”节的方法。特别是,折叠不属于子节的节的介绍很有用:

\section{Latex-Suite}
%%fakesubsection Introduction
A short introduction of the features of Latex-Suite.
\subsection{Installation}
Installation instructions.

如果没有,%%fakesubsection介绍就不会与部分分开折叠。


对于给定的例子,这意味着:

我们用%%fakeparagraph而不是%%fakesubsection来标记每个段落。

展开

\subsubsection{This is the title of the subsubsection}                              
    %%fakeparagraph This paragraph is about xyz
    This is the content of the first paragraph
    %%fakeparagraph This paragraph is about abc
    This is the content of the second paragraph
    %%fakeparagraph
    This is the content of the third paragraph
    %%fakeparagraph
    This is the content of the fourth paragraph

折叠

\subsubsection{This is the title of the subsubsection}
-+     2 lines: > %paragraph This paragraph is about xyz----------------------------
-+     2 lines: > %paragraph This paragraph is about abc----------------------------
-+     2 lines: > %paragraph--------------------------------------------------------
-+     2 lines: > %paragraph--------------------------------------------------------

注意 Latex-Suite 将如何删除fake并仅显示paragraph您的注释。

相关内容