Nicolas, unfortunately, I have immediately run into another problem with the new exporter (to latex) when going back to my long document (a project proposal). I have a minimal example which illustrates the problem. The attached are a simple org file with the resulting latex file. The key problem is that the =tabular= command has an empty argument, the argument that is meant to specify the table alignments. Specifically, the new exporter generates: ,---- | \begin{center} | \begin{tabular}{} | \hline | Task & Q1 & Q2 & Q3 & Q4 & Q5 & Q6 & Q7 & Q8 & Q9 & Q10 & Q11 & Q12\\ `---- whereas the old one generates ,---- | \begin{center} | \begin{tabular}{lllllllllllll} | \hline | Task & Q1 & Q2 & Q3 [...] `---- (last line truncated by me as it was too long) This is with org up to date from a few minutes ago (see signature). For the new exporter, I started emacs with -Q and then: #+begin_src emacs-lisp (add-to-list 'load-path "~/git/org-mode") (add-to-list 'load-path "~/git/org-mode/lisp") (add-to-list 'load-path "~/git/org-mode/contrib/lisp/") (require 'org-install) (require 'org-export) (require 'org-e-latex) #+end_src Thanks, eric