Is there a particular reason why unnumbered sections are exported to latex including the title in first (optional) argument if there is no * present? To clarify a bit: A sectioning structure like
("\\section{%s}" . "\\section*{%s}") gives rise to \section[title]{title} % numbered section \section*{title} % unnumbered section If, on the other hand you have something like ("\\numbered{%s}" . "\\unnumbered{%s}") you will get \numbered[title]{title} % numbered section \unnumbered[title]{title} % unnumbered section Of course one can easily work around that, but it seems a bit inconsistent. So I'm wondering if I am missing something... Best regards Sebastian