如何在段落开头插入间距?

如何在段落开头插入间距?

我该如何从下图中的黑色箭头开始添加一些间距?例如,我试图将文本向右移动一点,就像开始一个新段落一样。谢谢。

在此处输入图片描述

\documentclass[11pt,a4paper]{report}
    \usepackage{amsmath,amsfonts,amssymb,amsthm,epsfig,epstopdf,titling,url,array}


\theoremstyle{plain}
\newtheorem{thm}{Theorem}[chapter] % reset theorem numbering for each chapter
\newtheorem{lem}[thm]{Lemma}
\newtheorem{prop}[thm]{Proposition}
\newtheorem*{cor}{Corollary}

\theoremstyle{definition}
\newtheorem{defn}[thm]{Definition} % definition numbers are dependent on theorem numbers
\newtheorem{exmp}[thm]{Example} % same for example numbers
\newtheorem{conj}[thm]{Conjecture}

\theoremstyle{remark}
\newtheorem*{rem}{Remark}
\newtheorem*{note}{Note}


\title{My Thesis Title}
\author{My Name}
\date{\today}
\renewcommand\labelenumi{(\theenumi)}
\renewcommand\theenumi{\roman{enumi}}

\begin{document}

\chapter{Addition}

\begin{exmp}
This is just an example. This is just an example.This is just an example.
\\
\\    \textit{This is just an example.}
\\
\\    \textit{This is just an example.This is just an example.This is just an example.This is just an example.}
\\
\\    \textit{This is just an example.This is just an example.gsdasdasdasdasfdasfaxbcxbcxb}
\\
\\    \textit{Prove that for $4 < x < 122$,
\begin{equation}
x^2 + 5x = 235325y \nonumber
\end{equation}
is the solution to $n^2$.}
\end{exmp}
\end{document}

答案1

[编辑] 问题是您使用 来\\\\开始新段落。只需使用一个空行即可。(感谢 David)[/编辑]

你可能想使用

\setlength{\parindent}{1em}

或更方便的长度。虽然1em很常见。

相关内容