Hi all,
If there are `#+latex_header:' entries in a section and that section is
`COMMENT'ed out, I'd expect the #+latex_header entries to be
uneffective. As they are when I comment them out one by one as in
`# #+latex_header:'.
Is this a bug? (I'd say, yes....)
Regards,
Andreas
PS:
ECM
--8<---------------cut here---------------start------------->8---
* Test
test
* COMMENT LaTeX setup
#+latex_header: \usepackage{foo}
--8<---------------cut here---------------end--------------->8---
LaTeX export:
--8<---------------cut here---------------start------------->8---
% Created 2015-03-22 Sun 10:56
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
% ...
\usepackage{foo}
% ...
\begin{document}
\tableofcontents
\section{Test}
\label{sec-1}
test
% Emacs 24.4.50.1 (Org mode 8.3beta)
\end{document}
--8<---------------cut here---------------end--------------->8---