使用 \noindent 和 \indent

使用 \noindent 和 \indent

我该如何用这种风格写文字?在\section和文本之间,我想放置一些字体较小的项目符号。请注意无缩进项目符号和段落第一行的缩进。

我已经写了这个,但是第一段没有缩进。

\section{The Section}
\noindent
    \begin{itemize}
      \item \textit{good}
      \item \textit{bad}
    \end{itemize}
\indent In this section....

在此处输入图片描述

答案1

首先,请注意环境后没有段落分隔符itemize,因此无论是否使用都不会缩进\indent

首先要修复的是在那里添加一个段落:

\section{The Section}
\begin{itemize}
\item \textit{good}
\item \textit{bad}
\end{itemize}

In this section....

第一的

现在,你得到了缩进,但这可能不是你想要的。你可能不喜欢项目符号也缩进。这是的默认样式itemize。如果你想改变它,最简单的方法可能是使用包enumitem

\documentclass{article}
\usepackage{enumitem}
\begin{document}
\section{The Section}
\begin{itemize}[leftmargin=\parindent]
\item \textit{good}
\item \textit{bad}
\end{itemize}

In this section....
\end{document}

第二

这看起来几乎和你的文档(我猜是 Word?)一样,只是项目符号本身没有与边距左对齐。如果你也想要这样(我建议不要这样做),你需要进行一些调整:

\documentclass{article}
\usepackage{enumitem}
\begin{document}
\section{The Section}
\hrule\vskip 6pt
\begin{itemize}[leftmargin=\parindent, labelwidth=\parindent, labelsep=0pt, align=left]
\item \textit{good}
\item \textit{bad}
\end{itemize}

In this section....
\end{document}

第三

但请注意,章节编号看起来也没有与左边距完全对齐。

相关内容