禁止引文第一段缩进

禁止引文第一段缩进

我正在使用 LyX。是否可以将某些内容格式化为“引文”,这样第一段不缩进,但后面的段落缩进,就像大多数课程中格式化为“标准”的文本不缩进第一段一样?

我读到过一些文章说引号的缩进是特定于语言的,但我尝试将文本格式化为丹麦语、德语和英语,结果相同。

答案1

我的quoting软件包为显示文本提供了一个统一的环境,可以控制首行缩进。如果没有 LyX,只需在环境开始前不添加空行,就可以防止缩进:

\documentclass{article}

\usepackage{quoting}

\newcommand*{\sometext}{Hello, here is some text without a meaning. This
    text should show, how a printed text will look like at this place.
    If you read this text, you will get no information.}

\begin{document}

\sometext
% <-- No indentation of first `quoting` line
\begin{quoting}
\sometext

\sometext
\end{quoting}

\sometext

\end{document}

使用 LyX 可能很难避免“空行”,但您可以indentfirst=false在将包添加到 LaTeX 前言时使用该选项:

\documentclass{article}

\usepackage[indentfirst=false]{quoting}

\newcommand*{\sometext}{Hello, here is some text without a meaning. This
    text should show, how a printed text will look like at this place.
    If you read this text, you will get no information.}

\begin{document}

\sometext

\begin{quoting}
\sometext

\sometext
\end{quoting}

\sometext

\end{document}

两个示例的输出:

在此处输入图片描述

相关内容