0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-21 08:18:33 +00:00

org-e-latex: Don't ignore num:number option

* EXPERIMENTAL/org-e-latex.el (org-e-latex-headline): Don't ignore
  num:number option.
This commit is contained in:
Nicolas Goaziou 2012-02-27 22:21:20 +01:00
parent ab36517016
commit d25dc1ed18

View file

@ -1071,9 +1071,9 @@ CONTENTS is nil. INFO is a plist holding contextual information."
CONTENTS holds the contents of the headline. INFO is a plist
holding contextual information."
(let* ((class (plist-get info :latex-class))
(numberedp (plist-get info :section-numbers))
;; Get level relative to current parsed data.
(level (org-export-get-relative-level headline info))
(numberedp (let ((sec-num (plist-get info :section-numbers)))
(if (wholenump sec-num) (<= level sec-num) sec-num)))
(class-sectionning (assoc class org-e-latex-classes))
;; Section formatting will set two placeholders: one for the
;; title and the other for the contents.