如何在小节后强制换行?

如何在小节后强制换行?

我有这个代码:

\subsection{Definitions}

\subsection{Two important results}

\textbf{Proposition}. Let $(\mathbb R^{n},d)$ be a metric space and suppose $X,Y\subset \mathbb R^{n}$ are compact subsets. Then $X\cup Y$ is compact.

我想要的是小节后面的换行符。我试过添加\\,但没有成功。而且,它似乎无法识别\newline

非常感谢您的帮助。

答案1

添加以下代码;

\hfill\\

命令之后\subsection{...}。 用\hfill空白填充该行,这样\\就可以结束该行而不会出现错误。

答案2

相比于您的问题,我更关心 Johannes_B 的评论(*),我猜(*) 您使用的是 document 类amsart或类似的 document 类。如果(*) 这是真的,那么 barbara 的评论就指向了正确的方向:

MWE

\documentclass{amsart}
\theoremstyle{plain}
\newtheorem*{prop*}{\propositionname}
\providecommand{\propositionname}{Proposition}
\begin{document}
\section{Some section}
\subsection{Definitions}
    Some text in the same line.
\subsection{Two important results}
\begin{prop*}
   Let $(\mathbb{R}^{n},d)$ be a metric space 
   and suppose $X,Y\subset \mathbb{R}^{n}$ are
   compact subsets. Then $X\cup Y$ is compact.
\end{prop*}
\end{document}

(*)这就是为什么我们总是需要A 最小工作示例(MWE)这说明了您的问题,以 开始\documentclass{...}并以 结束\end{document}

答案3

插入类似

\vskip\baselineskip

在...前面\textbf{Proposition}

相关内容