在一个部分中,我有纯文本和一个段落。该部分以普通文本开始,然后是一个简短的段落,最后是普通部分文本。文本的最后一部分应该与段落不同,并以与该部分第一部分相同的样式继续。
段落如何结束?这是我的代码:
\section{My_section}
%...text here...
\paragraph{My_paragraph}
%...text paragraph...
%?How to end the paragraph?
%...the text of the section continues
答案1
\paragraph
只标记段落的开始;没有办法关闭它。
我建议使用自定义环境相反,因为它允许您控制其中发生的事情。
例如,为了模仿\paragraph{}
命令,你可以定义
\newenvironment{para}[1]
{%here comes what is processed before
\noindent\textbf{#1}\hspace{1em}\ignorespaces}
{%and here what is processed after
\par}
现在,您可以使用
\begin{para}{My_paragraph}
here goes the paragraph text
\end{para}
...and you can continue your section.
您可以在环境定义中添加任何您喜欢的内容,例如\small
将文本设置为较小的字体,或者以特殊符号结尾,就像 Nils 建议的那样。