emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] How to export results to latex?


From: Seweryn Kokot
Subject: [O] How to export results to latex?
Date: Fri, 18 Jan 2013 15:32:54 +0000 (UTC)
User-agent: Loom/3.14 (http://gmane.org/)

Hello!

I have test1.org file (see below [1]) which I want to export to latex. However
when exporting to latex (both using org-export and org-export-dispatch), the
content of RESULTS is missing in the resulting test1.tex (see below [2]).
What is the reason for that?

One year ago when exporting the same file with ":results org replace" the output
was wrapped with "begin_org ... end_org" now it is wrapped with "begin_src org
..." then the export to latex gives verbatim or lstlisting environments... Any
hints what to do to get the previous behaviour? 


test1.org contents:
#----------------------------------------------
#+title: Testing org export to latex
#+STARTUP: showall
#+OPTIONS: toc:nil creator:nil

* Headline

- first list item

foo bar

#+begin_src emacs-lisp :exports results :results drawer replace
  (let ((t1 ""))
  ;;
  (setq t1 (concat t1 (format "- foo \n\n$a = \\unit[%.3f]{m}$\n\n" 3.0)))
  (setq t1 (concat t1 (format "- bar \n\n$b = \\unit[%.3f]{m}$\n\n" 6.0)))
  (concat t1))
#+end_src

#+RESULTS:
:RESULTS:
- second list item

$a = \unit[3.000]{m}$

- third list item

$b = \unit[6.000]{m}$

:END:
#------------------------------------------------

[2] test1.tex:
--------------------------------
% Created 2013-01-18 Fri 16:21
\documentclass[11pt]{article}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[a4paper,left=1.8cm,right=1.8cm,top=1.8cm,bottom=1.8cm]{geometry}
\usepackage[dvips]{graphicx}
\usepackage{url}
\usepackage{xcolor}
\usepackage{units}
\usepackage[breaklinks=true]{hyperref}
\usepackage{amsmath}
\title{Testing org export to latex}
\hypersetup{
  pdfkeywords={},
  pdfsubject={},
  pdfcreator={}}
\begin{document}

\maketitle

\section{Headline}
\label{sec-1}

\begin{itemize}
\item first list item
\end{itemize}

foo bar
\end{document}
----------------------------




reply via email to

[Prev in Thread] Current Thread [Next in Thread]