emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: John Rakestraw <lists@johnrakestraw.com>
To: "Mukherjee, Rajat, LAUSANNE,
	Clinical Operations" <Rajat.Mukherjee@rdls.nestle.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: Editing using emacs-lisp after export
Date: Wed, 30 Nov 2011 15:48:14 -0500	[thread overview]
Message-ID: <m3hb1l9w1d.fsf@relay.pair.com> (raw)
In-Reply-To: <A1978E681499414BB2D5F2FEAE5DCA133889C8@HQVEVE0022.nestle.com> (Rajat Mukherjee's message of "Wed, 30 Nov 2011 16:03:21 +0100")

Hi, Rajat --

> I use org-mode to generate documents with latex and R codes. I also use
> some R function (package: Hmisc) to generate latex tables. One of the
> functions produces a blank line with-in the table environment which
> causes a fatal error in the .tex file. Is there a way that I can use
> emacs-lisp commands like "replace-string" from within the .org file to
> act on the .tex file that is exported or other "#+options:"  for export
> that will do this edit without having to open the .tex file? Thank you
> for your help.

I definitely don't consider myself a guru, but I had a similar problem. I
built a function that finds and removes the empty line and then added this
via add-hook to org-export-latex-final-hook. I suspect one of the real
gurus can suggest a better way to do this, but this works for me.

Here's my code that you can adapt as necessary.

--8<---------------cut here---------------start------------->8---
(defun remove-line-from-exam.tex ()

(if (search-forward-regexp "\\documentclass\[[0-9]+pt]{exam}" nil t nil)
    (while (re-search-forward "\\\\question\n\n" nil t)
      (replace-match "\\\\question\n"))))
      
(add-hook 'org-export-latex-final-hook (function remove-line-from-exam.tex))
--8<---------------cut here---------------end--------------->8---

-- 
John Rakestraw

  reply	other threads:[~2011-11-30 20:46 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-30 15:03 Editing using emacs-lisp after export Mukherjee, Rajat, LAUSANNE, Clinical Operations
2011-11-30 20:48 ` John Rakestraw [this message]
     [not found]   ` <A1978E681499414BB2D5F2FEAE5DCA133D3315@HQVEVE0022.nestle.com>
2011-12-02 15:57     ` John Rakestraw

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=m3hb1l9w1d.fsf@relay.pair.com \
    --to=lists@johnrakestraw.com \
    --cc=Rajat.Mukherjee@rdls.nestle.com \
    --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).