LyX
我正在脚本文档类中编写文本KOMA
,并在文档->设置->页边距下设置了以下页边距
top: 2.5cm
bottom: 2.5cm
inner: 2.5cm
outer: 3cm
由于我受MLA
(现代语言协会)格式规则的约束,我使用 biblatex-mla 包,并且已经将引文环境更改为较小的字体大小和单倍行距。您可以在我的序言中看到这一点:
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=mla,backend=bibtex]{biblatex}
\addbibresource{<mybib.bib>}
\makeatletter
\g@addto@macro\quote\singlespace
\makeatother
\let\quoteOLD\quote
\def\quote{\quoteOLD\small}
但是,我已设置为 的LyX
“quote”段落环境中的长引文在右侧缩进,即右侧缩进不是 2.5 厘米,而是更多。我如何才能更改 中的“quote”段落环境的这种行为,LyX
并使设置为“quote”环境的长引文与其余文本的右侧缩进相同?
答案1
在文档的前言部分写入对环境Document->Settings->Preamble
的重新定义quote
:
\documentclass{article}
\usepackage{blindtext}
\renewenvironment{quote}
{\small\list{}{\rightmargin=2.5cm \leftmargin=2.5cm}%
\item\relax}
{\endlist}
\begin{document}
\blindtext
\begin{quote}
\blindtext
\end{quote}
\end{document}