emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Eric Schulte <schulte.eric@gmail.com>
To: James Harkins <jamshark70@gmail.com>
Cc: orgmode <emacs-orgmode@gnu.org>
Subject: Re: Using babel to generate org syntax for export
Date: Mon, 13 Jan 2014 19:39:49 -0800	[thread overview]
Message-ID: <874n579qpm.fsf@gmail.com> (raw)
In-Reply-To: <948bc8d8-46f3-4923-9ccb-28f1ed8ad299@dewdrop-world.net> (James Harkins's message of "Tue, 14 Jan 2014 11:24:22 +0800")

James Harkins <jamshark70@gmail.com> writes:

> Hi,
>
> Got a question that's not easy to search online.
>
> I want to use an org table to define glossary entries for LaTeX. I have my 
> table[1], and I have a src block[2] that reads the table and produces the 
> right syntax[3]. This is already pretty helpful -- I can C-c C-c the source 
> block and manually copy/paste the generated syntax into the org file that I 
> will then export. 
>
> But... I want babel to do that for me automatically. I'm almost there, but:
>
> The resulting string is put into a verbatim environment -- which is not 
> right for this case. I need the string to be inserted as if it were org 
> syntax ("#+LATEX_HEADER" and all) that I typed by hand, and then ox-latex 
> would process it like any other LaTeX header.
>
> I've tried both ":results value" and ": results output" but the verbatim 
> environment is always there.
>

Have you tried ":results raw" or ":results org", take a look at the
manual page on the results header argument.

Best,

>
> A quick glance at ob-core.el seems to indicate that this behavior is
> hardcoded. That's... frustrating: spend 2-3 hours to get this far and then 
> find that babel says, "No, you can't do that, actually."
>
> So, I'm at the end of the energy I have left to test various approaches. 
> What's the best approach? I'm guessing, apply a filter to remove the 
> begin/end verbatim lines. But maybe there's a magic switch in babel?
>
> For reference:
>
> [1] input file, nearly minimal example
> [2] actual result of C-c C-e l L (removing preamble)
> [3] desired result
>
> hjh
>
> [1]
> * UGens   :noexport:
> #+name: ugens01
> | Type | Term     | Description         | Arguments   |
> |------+----------+---------------------+-------------|
> | Osc  | SinOsc   | Sinewave oscillator | freq, phase |
>
> #+name: makegloss
> #+begin_src emacs-lisp :var tbl=ugens01 :exports results :results value
> (let ((str ""))
>   (pop tbl)
>   (pop tbl)
>   (while tbl
>     (let ((item (car tbl)))
>       (pop item)
>       (setq str (concat str (format 
> "\\newglossaryentry{%s}{type=ugen,name={%s},description={%s. Inputs: 
> (%s)}}\n"
>   		   (car item)
>   		   (pop item)
>   		   (pop item)
>   		   (car item))))
>       (setq tbl (cdr tbl))))
>   str)
> #+end_src
>
> * Test
> #+call: makegloss
> #+results: makegloss
>
> [2]
> \section{Test}
> \label{sec-1}
> \begin{verbatim}
> \newglossaryentry{SinOsc}{type=ugen,name={SinOsc},description={Sinewave 
> oscillator. Inputs: (freq, phase)}}
> \end{verbatim}
>
> [3]
> \section{Test}
> \label{sec-1}
> \newglossaryentry{SinOsc}{type=ugen,name={SinOsc},description={Sinewave 
> oscillator. Inputs: (freq, phase)}}
>
>

-- 
Eric Schulte
https://cs.unm.edu/~eschulte
PGP: 0x614CA05D

  reply	other threads:[~2014-01-14  3:41 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-14  3:24 Using babel to generate org syntax for export James Harkins
2014-01-14  3:39 ` Eric Schulte [this message]
2014-01-14  7:05   ` James Harkins

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=874n579qpm.fsf@gmail.com \
    --to=schulte.eric@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=jamshark70@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).