で作成された長い引用ブロックの後に段落を意図しない方法はありますかdisplayquote
?
私見では、このような blockquote/displayquote の後の垂直方向のスペースは既に新しい段落を示しているため、見た目が醜く、何の役にも立ちません。また、引用の後には新しい段落が来るのは明らかです。結局のところ、見出しの後には . もありません\parindent
。
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}
\usepackage{blindtext}
\title{csquotes}
\date{August 2020}
\begin{document}
\maketitle
\section{Introduction}
\blindtext
For example Someone said:
\begin{displayquote}
bla bla
\end{displayquote}
% here I want no intend
\blindtext
\end{document}
\noindent
そこに空白行を配置したり削除したりすることはできますが、これは引用ごとに手動で行う面倒な作業です。人々はそれを推奨する。
答え1
あなたは強制する新しい段落では、displayquote
インデントを作成するのは ではありません。
新しい段落を開始しない場合はインデントはありません。
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}
\usepackage{blindtext}
\title{csquotes}
\date{August 2020}
\begin{document}
\maketitle
\section{Introduction}
\blindtext
For example Someone said:
\begin{displayquote}
bla bla
\end{displayquote}
% here I want no indent
\blindtext
\end{document}