From: James Harkins <jamshark70@gmail.com>
To: orgmode <emacs-orgmode@gnu.org>
Subject: Using babel to generate org syntax for export
Date: Tue, 14 Jan 2014 11:24:22 +0800 [thread overview]
Message-ID: <948bc8d8-46f3-4923-9ccb-28f1ed8ad299@dewdrop-world.net> (raw)
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.
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)}}
next reply other threads:[~2014-01-14 3:24 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-14 3:24 James Harkins [this message]
2014-01-14 3:39 ` Using babel to generate org syntax for export Eric Schulte
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=948bc8d8-46f3-4923-9ccb-28f1ed8ad299@dewdrop-world.net \
--to=jamshark70@gmail.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).