如何纠正这个缩进问题?

如何纠正这个缩进问题?

我用这个makro来定义一个问题:

\def\bigfreequestion#1\par{#1\par\nobreak
    \begingroup\nobreak
    \advance\leftskip by 1pc
    \hrule width 0pt height 1.7\baselineskip\hrulefill
    \hrule width 0pt height 1.7\baselineskip\hrulefill
    \hrule width 0pt height 1.7\baselineskip\hrulefill
    \hrule width 0pt height 1.7\baselineskip\hrulefill
    \hrule width 0pt height 1.7\baselineskip\hrulefill
    \par
    \medskip
    \endgroup
    }

然后我像这样使用它:

\section{Remarks}
\bigfreequestion What did you like the most? \par \bigskip
\bigfreequestion What didn't you like? \par \bigskip
\bigfreequestion Please share your suggestions how to improve the prototype: \par \bigskip
\bigfreequestion Please share any other remarks: \par

但问题是,第一个问题的缩进是正确的: 在此处输入图片描述

有什么提示可以纠正这个问题吗?

答案1

你可以尝试\def\bigfreequestion#1\par{\noindent #1\par\nobreak

请注意,您还可以通过以下方式全局设置新段落第一行的零缩进\setlength{\parindent}{0pt}

相关内容