emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* how can I create a new literal block for latex export?
@ 2015-06-23  8:47 Alan Schmitt
  2015-06-23  9:32 ` Rasmus
  0 siblings, 1 reply; 5+ messages in thread
From: Alan Schmitt @ 2015-06-23  8:47 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1546 bytes --]

Hello,

I would like to create a block used to typeset the results of evaluation
of code when exporting to latex. This is what I currently tried:

#+latex_header: \usepackage{fancyvrb}
#+latex_header: \DefineVerbatimEnvironment{myres}{Verbatim}{fontsize=\scriptsize,frame=\topline}

then I have this property set

  :PROPERTIES:
  :header-args:js: :wrap "myres" :results output :exports both
  :END:

Now every js source block is correctly evaluated to the correct
environment:

#+name: with_example
#+begin_src js
var x = 1
var f = function(o){ with(o){ return x } }
var o2 = { x : 2 }
var o3 = { x : 3 }
console.log("f({}) = " + f({}) +
          ", f(o2) = " + f(o2) +
          ", f(o3) = " + f(o3))
#+end_src

#+results: with_example
#+BEGIN_myres
f({}) = 1, f(o2) = 2, f(o3) = 3
#+END_myres


Unfortunately something happens during the export to latex: the contents
of myres are parsed. Here is the generated latex code:

\begin{minted}[frame=leftline,fontsize=\scriptsize]{js}
var x = 1
var f = function(o){ with(o){ return x } }
var o2 = { x : 2 }
var o3 = { x : 3 }
console.log("f({}) = " + f({}) +
          ", f(o2) = " + f(o2) +
          ", f(o3) = " + f(o3))
\end{minted}

\begin{myres}
f(\{\}) = 1, f(o2) = 2, f(o3) = 3
\end{myres}


Is there a way to tell org to leave the contents of myres blocks as-is?
Can I declare myres as a literal block?

Thanks,

Alan

-- 
OpenPGP Key ID : 040D0A3B4ED2E5C7
Weekly CO₂ average (2015-05-30, Mauna Loa Observatory): 403.41 ppm

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 472 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-06-23 20:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-23  8:47 how can I create a new literal block for latex export? Alan Schmitt
2015-06-23  9:32 ` Rasmus
2015-06-23 13:03   ` Nicolas Goaziou
2015-06-23 20:20     ` Alan Schmitt
2015-06-23 14:15   ` Alan Schmitt

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).