組織モードでLaTeXにエクスポートすると、コードブロックの後に新しい段落が生成されます。どうすればこれを避けることができますか?これは、最初のコードブロックの後にテキストその注 Org-modeでコードブロックの後に新しい段落を避けるには?
\begin{verbatim}
(setq foo "bar")
\end{verbatim}
A paragraph contains some text and this text only serves as example text.
\begin{verbatim}
(setq bar "foo")
\end{verbatim}
にエクスポート
#+TITLE: Example
#+BEGIN_SRC emacs-lisp
(setq foo "bar")
#+END_SRC
A paragraph contains some text and this text only serves as example text.
#+BEGIN_SRC emacs-lisp
(setq bar "foo")
#+END_SRC
:
は、次の例を考えてみ新しい段落として設定されます。私はそれを新しい段落として設定したくありません。私はEmacsの23.3.1で組織モード7.6を実行しています
\begin{verbatim}
(setq foo "bar")
\end{verbatim}
A paragraph contains some text and this text only serves as example text.
\begin{verbatim}
(setq bar "foo")
\end{verbatim}
:私はの出力がある
として設定することにしたいです。