emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Nicolas Goaziou <n.goaziou@gmail.com>
To: Ista Zahn <istazahn@gmail.com>
Cc: emacs-orgmode Mailinglist <emacs-orgmode@gnu.org>
Subject: Re: [New exporter] org-export-latex-verbatim-wrap
Date: Fri, 11 Jan 2013 23:30:17 +0100	[thread overview]
Message-ID: <87ip731hfq.fsf@gmail.com> (raw)
In-Reply-To: <CA+vqiLGmuX2Z7U-oGqXSv372XucgC4-QQXSbxvEyhJMOBib3gg@mail.gmail.com> (Ista Zahn's message of "Fri, 11 Jan 2013 17:25:05 -0500")

Hello,

Ista Zahn <istazahn@gmail.com> writes:

> Does the new exporter have any equivalent of
> org-export-latex-verbatim-wrap? I've looked but don't see anything.
> How can I format verbatim output when using the new exporter?

Add a filter to `org-export-filter-fixed-width-functions'. E.g.:

#+begin_src emacs-lisp
(defun my-latex-fixed-width-filter (fixed-width backend info)
  (when (org-export-derived-backend-p backend 'e-latex)
    (replace-regexp-in-string
     "\\(begin\\|end\\){\\(verbatim\\)}"
     "something" fixed-width nil nil 2)))

(add-to-list 'org-export-filter-fixed-width-functions
             'my-latex-fixed-width-filter)
#+end_src


Regards,

-- 
Nicolas Goaziou

      reply	other threads:[~2013-01-12  0:13 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-11 22:25 [New exporter] org-export-latex-verbatim-wrap Ista Zahn
2013-01-11 22:30 ` Nicolas Goaziou [this message]

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=87ip731hfq.fsf@gmail.com \
    --to=n.goaziou@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=istazahn@gmail.com \
    /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).