Hi,
Is there a way to ask to org-mode to add something before the
\end{document} of a LaTeX export?
I've set up a specific org-export-latex-class to use the limap package (a
specific LaTeX package to produce Information Mapping-style document) and I
would like to add a \printbibliography at the end of this document. If I
use the following :
#+begin_src org
* References
\printbibliography
#+end_src
The LaTeX export produce the folliowing :
#+begin_src latex
\begin{Map}{References}
\printbibliography
\end{Map}
#+end_src
Which is normal from the point of vue of org-mode. Unfortunately,
\printbibliography doesn't play well with the limap package. So my solution
is to end my LaTeX file by
#+begin_src latex
\section{References}
\printbibliography
#+end_src
When I add these lines in my org file, these are integrated into the last
heading. So, is there a way to tell org-mode that the last heading is
finished, and that these two lines must be inserted before the
\end{document}?
Thanks in advance,
Emmanuel Di Pretoro