如何在不缩进的情况下创建新行?

如何在不缩进的情况下创建新行?

如何在不缩进的情况下创建新行?以下是我目前所做的事情:

\documentclass[11pt, oneside, reqno]{article}
\usepackage{amssymb, amsthm, amsmath, amsfonts}
\usepackage{bardmacros}

\begin{document}

\demo

However, since $y \notin B$, we have $\mathbb{X\restriction_B} = 0$.  This is a contradiction, because $1 \neq 0$.  Therefore, $A=B$ must be true for $\mathbb{X\restriction_A} = \mathbb{X\restriction_B}$.\\\

$\Rightarrow$  Let $\mathbb{X\restriction_A} \neq \mathbb{X\restriction_B}$ and let $A=B$.
\edemo
\end{document}

输出结果如下。我想消除 => 之前的缩进:

And the output

我对 LaTeX 还很陌生,所以感谢您的耐心!

答案1

为什么不使用\\。这将开始新的一行而不开始新的段落。如果您在环境中,您也可以使用\newline。要开始新的段落,您可以使用\par\noindent仅当段落不直接跟随另一个段落而是跟随其他内容(例如表格或章节标题)时才应使用 (大多数样式会自动执行此操作)。

相关内容