第一个缩进比应有的短

第一个缩进比应有的短

我在章节开头使用\paragraph{}。我的所有段落都是自动缩进的,但第一个缩进总是比其他段落短一点(我的意思是空白)。有人遇到过这个问题吗?我不知道出了什么问题

\documentclass[a4paper,12pt,oneside,onecolumn,final,openany]{report}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[slovak]{babel}
\usepackage{ae}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{makeidx}
\usepackage[top=2.5cm, bottom=2.5cm, left=3cm, right=2.5cm, includefoot]{geometry} %total={17cm,25cm},
\usepackage{longtable}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{textcomp}
\pagestyle{fancy}
\usepackage{hyperref}
\usepackage{float}
\usepackage{subfig}
\usepackage{booktabs, multicol, multirow}
\usepackage{bigstrut}

\begin{document}

\def\baselinestretch{1.2}\normalsize

\chapter*{First one}

\paragraph{}
\bigskip

{\bf First} - aaaaaa\\

{\bf Second} - bbbbbb\\

{\bf Third} - ccccccc\\

\end{document}

答案1

\paragraph是一个分段命令,就像\chapter\section等一样,它不能用于开始新段落——空行可以做到这一点(或\par)。

在标准类中,章节/节的第一段没有缩进(为什么要缩进?),但该\paragraph命令会添加一些空格。因此,您看到的不是段落缩进,而是 \paragraph命令添加的空格。

如果您确实想缩进第一段,请使用indentfirstMario 提到的方法,然后删除\paragraph{}

\documentclass{article}
\begin{document}
\section{First section}
First paragraph. Not indented.

Second paragraph, indented.

\paragraph{Lower level heading}     \texttt{paragraph} is below \texttt{subsection} (and \texttt{subsubsection}).

\section{Second section}

\paragraph{} \texttt{paragraph} used wrongly, note extra space.
\end{document}

答案2

我认为你可以使用indentfirstDavid Carlisle 的软件包(可用这里),然后在你的序言中调用它:

\documentclass{report}

\usepackage{indentfirst}

\begin{document}
\chapter{First Chapter}
Hello.

This is my second paragraph.

\end{document}

相关内容