teks mode-org tidak didukung untuk blok CONTOH?

8

Harap pertimbangkan .orgfile MVE berikut yang lengkap dan mandiri , yang saya harap cukup jelas:

#+OPTIONS: toc:nil

Figure [[captions-work-for-src-blocks]] shows that captions are correctly exported
for SRC blocks. The second figure, in an EXAMPLE block, does not receive an
exported caption. Furthermore, cross references to figure
[[captions-dont-work-for-example-blocks]] incorrectly resolve to figure
[[captions-work-for-src-blocks]].

-----
#+NAME: captions-work-for-src-blocks
#+CAPTION: Captions work for SRC blocks
#+BEGIN_SRC
  foo(bar) == baz(qux);
#+END_SRC
-----

-----
#+NAME: captions-dont-work-for-example-blocks
#+CAPTION: Captions don't work for EXAMPLE blocks
#+BEGIN_EXAMPLE
  foo(bar) == baz(qux);
#+END_EXAMPLE
-----

Aktif org-latex-export-to-pdf, ini menghasilkan output berikut:

masukkan deskripsi gambar di sini

Saya menggunakan versi perangkat lunak berikut:

: Emacs version: GNU Emacs 25.1.1 (x86_64-apple-darwin13.4.0, NS appkit-1265.21 Version 10.9.5 (Build 13F1911))
:  of 2016-09-17
: org version: 9.0.7

Saya melihat dokumentasi resmi mode org, tetapi saya tidak dapat menemukan informasi yang berkaitan dengan masalah ini.

Reb.Cabin
sumber

Jawaban:

1

Dengan mencoba-coba (dan dengan menggali saran dari @Hatshepsut), saya menemukan bahwa yang berikut ini berfungsi:

#+begin_example
/usr/local/share/guile/site/2.2$ tree math/
math/
`-- bessel.scm
#+end_example
#+latex: \caption{Directory structure for Guile extension module}

sedangkan yang berikut ini TIDAK berfungsi:

#+caption: Directory structure for Guile extension module
#+begin_example
/usr/local/share/guile/site/2.2$ tree math/
math/
`-- bessel.scm
#+end_example

Untuk srcblok dan untuk resultsoutput, saya saat ini menggunakan yang berikut karena #+captiontidak bekerja pada #+RESULTSblok, sama seperti itu tidak berfungsi #+begin_example(tidak tahu apakah pola ini optimal):

#+caption: How to find out where Guile expects to find extension modules
#+begin_src scheme :exports both
(%site-dir)
#+end_src

#+RESULTS:
: /usr/local/share/guile/site/2.2
#+latex: \caption{This is the answer that Guile gives, live in org-babel}

Namun, ada beberapa penyebutan #+RESULTSblok teks di suatu tempat di manual mode-org. Saya belum dapat menemukannya untuk kedua kalinya. Tautan berikut agak kabur:

https://orgmode.org/manual/Captions.html

Dalam beberapa kasus saya belum mencoba mode-org name, juga LaTeX labeldan ref.

Reb.Cabin
sumber