マークダウンからLaTeXに変換するためにpandocを使用しています。私の問題は、Pandoc がブロック引用に続く段落テキストを新しい段落の開始として解釈するように見えることです。多くの場合、これは私が望んでいることですが、引用の前の段落を続けたいと思うことがよくあります。これはLaTeXで簡単に実現できます---次のように、引用と周囲の行の間に空白行を残さずに、引用環境を段落に挿入するだけです:
This is the first sentence of paragraph ONE.
\begin{quote}
This is a block quote.
\end{quote}
This is the second sentence of paragraph ONE.
This is the first sentence of paragraph TWO.
しかし、Pandoc ではブロック引用符の後に空白行が続く必要があるため、私が管理できる唯一の出力は次のようになります。
This is the first sentence of paragraph ONE.
\begin{quote}
This is a block quote.
\end{quote}
This is the first sentence of paragraph TWO.
This is the first sentence of paragraph THREE.
私の最初の例のように、pandocにLaTeXを出力させるにはどうすればよいですか?