From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Leha Subject: latex export of #+header: lines Date: Tue, 17 Jan 2012 09:31:45 +0100 Message-ID: <87y5t6wwzy.fsf@med.uni-goettingen.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:34978) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rn4Sg-0003H9-OY for emacs-orgmode@gnu.org; Tue, 17 Jan 2012 03:32:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rn4Sb-0008V2-0A for emacs-orgmode@gnu.org; Tue, 17 Jan 2012 03:32:10 -0500 Received: from lo.gmane.org ([80.91.229.12]:43712) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rn4Sa-0008Uv-ON for emacs-orgmode@gnu.org; Tue, 17 Jan 2012 03:32:04 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Rn4SZ-0001ow-Cw for emacs-orgmode@gnu.org; Tue, 17 Jan 2012 09:32:03 +0100 Received: from genepi110.genepi.med.uni-goettingen.de ([134.76.140.110]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 17 Jan 2012 09:32:03 +0100 Received: from andreas.leha by genepi110.genepi.med.uni-goettingen.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 17 Jan 2012 09:32:03 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi all, I am experiencing a problem with the latex exporter: #+header: lines are visible in the exported file. Example: /==================================================\ * test header tag #+caption: foo #+label: fig:fig1 #+name: foo #+header: :file foo.png #+header: :width 3600 :height 3600 :res 600 #+begin_src R :exports results :results graphics plot(1:10, 1:10) #+end_src \==================================================/ Results (LaTeX): /=================================================\ \section{test header tag} \label{sec-1} \#+header: :file foo.png \#+header: :width 3600 :height 3600 :res 600 \begin{figure}[htb] \centering \includegraphics[width=.9\linewidth]{foo.png} \caption{\label{fig:fig1}foo} \end{figure} \=================================================/ The header arguments seem to take their effect, though. Regards, Andreas