org-mode Untertitel werden für BEISPIELblöcke nicht unterstützt?

8

Bitte beachten Sie die folgende in sich geschlossene .orgDatei MVE, die hoffentlich selbsterklärend ist:

#+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
-----

Ein org-latex-export-to-pdferzeugt die folgende Ausgabe:

Geben Sie hier die Bildbeschreibung ein

Ich verwende die folgenden Versionen der Software:

: 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

Ich habe mir die offizielle Dokumentation zum Organisationsmodus angesehen, konnte jedoch keine Informationen zu diesem Problem finden.

Reb.Cabin
quelle

Antworten:

1

Durch Versuch und Irrtum (und durch Eingraben in den Vorschlag von @Hatshepsut) stellte ich fest, dass Folgendes funktioniert:

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

während das Folgende NICHT funktioniert:

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

Für srcBlöcke und für die resultsAusgabe verwende ich derzeit Folgendes, da #+captiones nicht für #+RESULTSBlöcke funktioniert , genauso wie es nicht funktioniert #+begin_example(keine Ahnung, ob dieses Muster optimal ist):

#+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}

Iirc, #+RESULTSirgendwo im Handbuch zum Organisationsmodus werden Untertitelblöcke erwähnt . Ich konnte es kein zweites Mal finden. Der folgende Link ist etwas vage:

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

In keinem Fall habe ich noch den Org-Modus ausprobiert name, noch LaTeX labelund ref.

Reb.Cabin
quelle