これで、ブロックの外側のLaTeXスニペットのみがレンダリングされるため、動作が変更されたようです。
アクティブポイントの場所によって異なります。以下は、org-toggle-latex-fragmentのドキュメントからの抜粋です。
If the cursor is on a LaTeX fragment, create the image and overlay
it over the source code, if there is none. Remove it otherwise.
If there is no fragment at point, display all fragments in the
current section.
With prefix ARG, preview or clear image for all fragments in the
current subtree or in the whole buffer when used before the first
headline. With a double prefix ARG C-u C-u preview or clear images
for all fragments in the buffer.
方程式をタイプセットして、バベルソースブロックが許可するのと同じ方法でバッファに保存され、インラインで挿入される画像ファイルを生成させたいのですが。それは可能ですか?
はい、次のようにorg-babelブロックを囲むだけです。
#+name: hello-world
#+BEGIN_SRC latex :exports results :file test.png
\LaTeX
#+END_SRC
組織モードのドキュメントのLaTeXソースコードブロックの2番目の例は、ラテックスで生成されたグラフィックをpngファイルとして組織ファイルに埋め込む方法を示しています。
#+BEGIN_EXPORT latex
and#+END_EXPORT
(ここを参照)