emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Alan Schmitt <alan.schmitt@polytechnique.org>
To: emacs-orgmode <emacs-orgmode@gnu.org>
Subject: how can I create a new literal block for latex export?
Date: Tue, 23 Jun 2015 10:47:22 +0200	[thread overview]
Message-ID: <m2ioaevmjp.fsf@charm-ecran.irisa.fr> (raw)

[-- 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 --]

             reply	other threads:[~2015-06-23  8:47 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-23  8:47 Alan Schmitt [this message]
2015-06-23  9:32 ` how can I create a new literal block for latex export? Rasmus
2015-06-23 13:03   ` Nicolas Goaziou
2015-06-23 20:20     ` Alan Schmitt
2015-06-23 14:15   ` Alan Schmitt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m2ioaevmjp.fsf@charm-ecran.irisa.fr \
    --to=alan.schmitt@polytechnique.org \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).