Re: [O] org-babel header documentation

2013-03-29 Thread Eric Abrahamsen
Eric Schulte writes: >> >> Exists on Worg? Sorry for my obtuseness, but I'm not finding it. >> > > http://orgmode.org/worg/org-contrib/babel/header-args.html Great! I just saw mention of the "wrap" header argument in another thread but that doesn't appear on this page, could we trouble you to ad

Re: [O] Export of superscripts in LaTeX (e.g. ^1)

2013-03-29 Thread John Hendy
On Fri, Mar 29, 2013 at 5:38 PM, Nicolas Goaziou wrote: > Hello, > > John Hendy writes: > >> Sometimes I'll insert a note in LaTeX to /sort of/ treat it like a >> footnote, but in a table. Then I'll just put the notes in an itemized >> list under the table like this: > > This is a bit unrelated,

Re: [O] [PATCH] Process hlines in imported tables

2013-03-29 Thread Eric Schulte
Rick Frankel writes: > On Fri, Mar 29, 2013 at 09:04:42AM -0600, Eric Schulte wrote: >> Rick Frankel writes: >> >> Users may want to insert a "-" in their tables, and I think it would be >> surprising to magically replace floating "-" characters with hlines. >> There are numerous existing optio

[O] phone links...

2013-03-29 Thread Robert Goldman
Since I keep my todo tasks in my org files, and some of them involve phone calls, I made a rudimentary handler for "phone:" links that I would like to contribute. It features a link declaration (in org-phone.el) and an ancillary script (currently only working on Mac OS X, but should be translatabl

Re: [O] Advice on writing a refile to heading function?

2013-03-29 Thread Martin Owen
On 29 March 2013 14:45, John Hendy wrote: > On Fri, Mar 29, 2013 at 7:51 AM, Martin Owen wrote: > >> Hi, >> >> I am writing a Pomodoro minor mode on top of org-mode. I'm planning to >> maintain >> an Activity Inventory with estimates against each item and move items >> into a >> Todo Today headin

Re: [O] Export of superscripts in LaTeX (e.g. ^1)

2013-03-29 Thread Nicolas Goaziou
Hello, John Hendy writes: > Sometimes I'll insert a note in LaTeX to /sort of/ treat it like a > footnote, but in a table. Then I'll just put the notes in an itemized > list under the table like this: This is a bit unrelated, but LaTeX back-end has support for footnotes within tables. Regards

[O] Export of superscripts in LaTeX (e.g. ^1)

2013-03-29 Thread John Hendy
Sometimes I'll insert a note in LaTeX to /sort of/ treat it like a footnote, but in a table. Then I'll just put the notes in an itemized list under the table like this: #+begin_src org | something^{1} | *Notes* - ^1 this is a note about something #+end_src I'm copying/pasting from a previous O

Re: [O] org-check.org confusion

2013-03-29 Thread Loyall, David
Well, to access the documentation about this: M-: (info "(emacs)Interlocking") ...This tells us that the file you saw in the directory is a lock. The solution is to remove the lock, then try again. But how do I, also an Emacs newbie, know that? Well, lock files aren't peculiar to Emac

Re: [O] [BUG] [ODT] Subtree export gives wrong footnote style

2013-03-29 Thread Nicolas Goaziou
Hello, Christian Moe writes: > Maybe I'm being obtuse, but I don't understand the relevance of your > question to the bug I pointed out. My example had two simple footnotes, > neither of which contained any blocks. I understood your problem, but I needed to know how deep I had to change paragra

Re: [O] [PATCH] Process hlines in imported tables

2013-03-29 Thread Rick Frankel
On Fri, Mar 29, 2013 at 09:04:42AM -0600, Eric Schulte wrote: > Rick Frankel writes: > > Users may want to insert a "-" in their tables, and I think it would be > surprising to magically replace floating "-" characters with hlines. > There are numerous existing options for inserting hlines into t

Re: [O] org-babel header documentation

2013-03-29 Thread Eric Schulte
> > Exists on Worg? Sorry for my obtuseness, but I'm not finding it. > http://orgmode.org/worg/org-contrib/babel/header-args.html -- Eric Schulte http://cs.unm.edu/~eschulte

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Eric Schulte
Gary Oberbrunner writes: > Thanks, Eric. > > The -i is definitely needed on Windows, I just retested without it and it > hangs. With your latest fix, it works again. > > I think there's a bug in your patch though; line 211 refers to a > nonexistent function org-babel-python-earmufs. I think you

Re: [O] `:html-preamble` and `:html-postamble` options are lame

2013-03-29 Thread Nicolas Goaziou
Hello, Luca Sabbatini writes: > It seems to be that the `:html-preamble` and `:html-postamble` export > options are impotent. They are overridden if the > org-export-html-preamble-format` and > org-export-html-postamble-format` are set to *anything*. > > In order for the `:html-preamble` and `:h

Re: [O] org-capture equivalent of org-remember's %& ?

2013-03-29 Thread Sebastien Vauban
Hi Adam, Adam Spiers wrote: > I'm finally switching from org-remember to org-capture. M-x > org-capture-import-remember-templates works fine except that it > doesn't know how to translate "%&", which causes a jump to the target > location immediately after storing the note. Is there an org-captu

Re: [O] Fwd: Fwd: run python from org, draft

2013-03-29 Thread Andreas Röhler
Am 29.03.2013 21:10, schrieb Gary Oberbrunner: On Fri, Mar 29, 2013 at 11:29 AM, Andreas Röhler < andreas.roeh...@easy-emacs.de> wrote: IMO org-babel should be able to run source code as is. If an org-mode specific modification is required at such a trivial form, what to expect wrt complex envi

Re: [O] org-babel header documentation

2013-03-29 Thread John Hendy
On Fri, Mar 29, 2013 at 12:58 PM, Eric Schulte wrote: > Eric Schulte writes: > >> Andreas Röhler writes: >> >>> Am 26.03.2013 16:35, schrieb Eric Schulte: John Hendy writes: > On Tue, Mar 26, 2013 at 10:00 AM, Andreas Röhler > wrote: >> Hi all, >> >> while digging

Re: [O] LaTeX export figure width, when figure comes from python?

2013-03-29 Thread John Hendy
On Fri, Mar 29, 2013 at 3:16 PM, Gary Oberbrunner wrote: > Now that python mode is working nicely, I'm generating lots of graphics. > > #+BEGIN_SRC python :session MYpython :exports results :results file > #... bunch of matplotlib stuff that produces /tmp/myfig.pdf > '/tmp/myfig.pdf' > #+END_S

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Gary Oberbrunner
Thanks, Eric. The -i is definitely needed on Windows, I just retested without it and it hangs. With your latest fix, it works again. I think there's a bug in your patch though; line 211 refers to a nonexistent function org-babel-python-earmufs. I think you mean -with-earmufs? -- Gary

Re: [O] Carsten's Interview relates questions, esay insert images, attachemnt locations etc..

2013-03-29 Thread Stephen
On Wed, Mar 27, 2013 at 6:33 AM, Carsten Dominik wrote: > > On 27.3.2013, at 04:52, Charles Berry wrote: > >> After running that block, I move to my *.org buffer, make sure there is an >> 'images' directory in M-x pwd RET, make sure I have an image somewhere on my >> desktop, then move my cursor

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Eric Schulte
Gary Oberbrunner writes: > On Fri, Mar 29, 2013 at 11:09 AM, Eric Schulte wrote: > >> >> Because of quirks of the python language, when executing outside of a >> session, it is necessary to explicitly specify a return. >> ... >> >> This is clearly stated in the Python documentation on Worg. >> ht

[O] LaTeX export figure width, when figure comes from python?

2013-03-29 Thread Gary Oberbrunner
Now that python mode is working nicely, I'm generating lots of graphics. #+BEGIN_SRC python :session MYpython :exports results :results file #... bunch of matplotlib stuff that produces /tmp/myfig.pdf '/tmp/myfig.pdf' #+END_SRC This works, and the LaTeX exporter includes /tmp/mfig.pdf: \incl

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Andreas Röhler
Am 29.03.2013 20:59, schrieb Gary Oberbrunner: On Fri, Mar 29, 2013 at 11:09 AM, Eric Schulte wrote: Because of quirks of the python language, when executing outside of a session, it is necessary to explicitly specify a return. ... This is clearly stated in the Python documentation on Worg. h

[O] Fwd: Fwd: run python from org, draft

2013-03-29 Thread Gary Oberbrunner
On Fri, Mar 29, 2013 at 11:35 AM, John Hendy wrote: > > This isn't working for me on Org-8.0 (from that Worg page): > > #+begin_src python :session > def foo(x): > if x>0: > return x+1 > else: > return x-1 > > foo(1) > #+end_src > > #+RESULTS: > : None > > Try applying my patch from t

[O] Fwd: Fwd: run python from org, draft

2013-03-29 Thread Gary Oberbrunner
On Fri, Mar 29, 2013 at 11:29 AM, Andreas Röhler < andreas.roeh...@easy-emacs.de> wrote: > IMO org-babel should be able to run source code as is. > If an org-mode specific modification is required at such a trivial form, > what to expect wrt complex environments? > > BTW this fails also: > > #+beg

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Andreas Röhler
Am 29.03.2013 17:47, schrieb Eric Schulte: As we've proven a couple of times now, Python session are broken with the newest version of Emacs (since the upstream change to an entirely new python.el implementation). I've just pushed up a fix to ob-python.el so that sessions should now work with t

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Gary Oberbrunner
On Fri, Mar 29, 2013 at 11:09 AM, Eric Schulte wrote: > > Because of quirks of the python language, when executing outside of a > session, it is necessary to explicitly specify a return. > ... > > This is clearly stated in the Python documentation on Worg. > http://orgmode.org/worg/org-contrib/bab

Re: [O] [bug] orgstruct has suddenly become overly opinionated about legal keystrokes

2013-03-29 Thread Christopher Schmidt
Eric Schulte writes: > I'm seeing this same problem when editing email with the latest Org-mode > and OrgStruct mode. > > Meta-RET raises the error > > orgstruct-error: This key has no function outside structure elements This corner case is worked around in master now. 310e76b org.el (orgs

[O] `:html-preamble` and `:html-postamble` options are lame

2013-03-29 Thread Luca Sabbatini
It seems to be that the `:html-preamble` and `:html-postamble` export options are impotent. They are overridden if the `org-export-html-preamble-format` and `org-export-html-postamble-format` are set to *anything*. In order for the `:html-preamble` and `:html-postamble` html export options to

Re: [O] [bug] orgstruct has suddenly become overly opinionated about legal keystrokes

2013-03-29 Thread Eric Schulte
Bastien writes: > Christopher Schmidt writes: > >> Eric Schulte writes: >>> Yes this fixes the problem. >> >> Thank you. I committed this. >> >> 14df16d org.el: Use longest form when translating keys. > > Thanks! I'm seeing this same problem when editing email with the latest Org-mode and

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Andreas Röhler
Am 29.03.2013 17:47, schrieb Eric Schulte: As we've proven a couple of times now, Python session are broken with the newest version of Emacs (since the upstream change to an entirely new python.el implementation). I've just pushed up a fix to ob-python.el so that sessions should now work with t

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Evan Misshula
It works exactly as advertised for me. Many thanks!! On Fri, Mar 29, 2013 at 2:50 PM, Eric Schulte wrote: > > > > But it does not appear to support named session: > > > > Works with a named session. > > #+begin_src python :session foo > > x = 9 > > x > > #+end_src > > > > #+RESULTS: > > : N

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Eric Schulte
> > But it does not appear to support named session: > > Works with a named session. > #+begin_src python :session foo > x = 9 > x > #+end_src > > #+RESULTS: > : None > > #+begin_src python :session foo > x > #+end_src > > #+RESULTS: > > Thanks, > > Evan > Thanks for reporting this, I've jus

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Evan Misshula
Org-mode version 8.0-pre (release_8.0-pre-203-g993e3e @ /home/evan/Documents/org/elisp/org-mode/lisp/) GNU Emacs 24.3.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.10) of 2013-03-21 on evan-Dell-System-Inspiron-N7110 [2 times] I installed the patched version. It does hold session definition: #+

Re: [O] org-babel header documentation

2013-03-29 Thread Eric Schulte
Eric Schulte writes: > Andreas Röhler writes: > >> Am 26.03.2013 16:35, schrieb Eric Schulte: >>> John Hendy writes: >>> On Tue, Mar 26, 2013 at 10:00 AM, Andreas Röhler wrote: > Hi all, > > while digging through the org-babel stuff, which is quite exiting, have > so

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Eric Schulte
Andreas Röhler writes: > Am 29.03.2013 17:20, schrieb Eric Schulte: > >> A valid opinion, in fact I think I defended that point of view myself, > > Hi Eric, > > so, if I'm saying: let's make things considerably easier, working right from > the spot, > why not try that? > > What I need still is a

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Andreas Röhler
Am 29.03.2013 17:20, schrieb Eric Schulte: A valid opinion, in fact I think I defended that point of view myself, Hi Eric, so, if I'm saying: let's make things considerably easier, working right from the spot, why not try that? What I need still is a specification, what :session and the oth

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Eric Schulte
> As we've proven a couple of times now, Python session are broken with > the newest version of Emacs (since the upstream change to an entirely > new python.el implementation). I've just pushed up a fix to ob-python.el so that sessions should now work with the latest version of Emacs. I hope this

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Eric Schulte
John Hendy writes: > On Fri, Mar 29, 2013 at 10:09 AM, Eric Schulte wrote: > >> >> with current >> >> >> >> GNU Emacs 24.3.1 (i686-pc-linux-gnu, GTK+ Version 2.24.14) of 2013-03-05 >> >> >> >> Org-mode version 7.9.3f (release_7.9.3f-17-g7524ef @ >> >> MY_PATH/emacs-24.3/lisp/org/) >> >> >> >> pyt

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Eric Schulte
Andreas Röhler writes: > Am 29.03.2013 16:09, schrieb Eric Schulte: with current GNU Emacs 24.3.1 (i686-pc-linux-gnu, GTK+ Version 2.24.14) of 2013-03-05 Org-mode version 7.9.3f (release_7.9.3f-17-g7524ef @ MY_PATH/emacs-24.3/lisp/org/) python from org-sour

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread John Hendy
On Fri, Mar 29, 2013 at 10:09 AM, Eric Schulte wrote: > >> with current > >> > >> GNU Emacs 24.3.1 (i686-pc-linux-gnu, GTK+ Version 2.24.14) of 2013-03-05 > >> > >> Org-mode version 7.9.3f (release_7.9.3f-17-g7524ef @ > >> MY_PATH/emacs-24.3/lisp/org/) > >> > >> python from org-source seems comple

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread John Hendy
On Fri, Mar 29, 2013 at 10:09 AM, Eric Schulte wrote: > > >> with current > >> > >> GNU Emacs 24.3.1 (i686-pc-linux-gnu, GTK+ Version 2.24.14) of 2013-03-05 > >> > >> Org-mode version 7.9.3f (release_7.9.3f-17-g7524ef @ > >> MY_PATH/emacs-24.3/lisp/org/) > >> > >> python from org-source seems comp

[O] org-capture equivalent of org-remember's %& ?

2013-03-29 Thread Adam Spiers
Hi all, I'm finally switching from org-remember to org-capture. M-x org-capture-import-remember-templates works fine except that it doesn't know how to translate "%&", which causes a jump to the target location immediately after storing the note. Is there an org-capture equivalent of org-remembe

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Andreas Röhler
Am 29.03.2013 16:09, schrieb Eric Schulte: with current GNU Emacs 24.3.1 (i686-pc-linux-gnu, GTK+ Version 2.24.14) of 2013-03-05 Org-mode version 7.9.3f (release_7.9.3f-17-g7524ef @ MY_PATH/emacs-24.3/lisp/org/) python from org-source seems completely broken. For example: #+BEGIN_SRC python

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Eric Schulte
>> with current >> >> GNU Emacs 24.3.1 (i686-pc-linux-gnu, GTK+ Version 2.24.14) of 2013-03-05 >> >> Org-mode version 7.9.3f (release_7.9.3f-17-g7524ef @ >> MY_PATH/emacs-24.3/lisp/org/) >> >> python from org-source seems completely broken. >> >> For example: >> >> #+BEGIN_SRC python >> 1+2 >> #+EN

Re: [O] Sync Org with Google Calendar using google API (rather than caldav)

2013-03-29 Thread Adam Spiers
On 29 March 2013 11:03, Baptiste wrote: > Hi, > > I have started a google calendar synchronization Emacs module. Rather than > using ical format, I use directly Google API. For sure it is less usefull for > other calendar services, but it will keep working when Google is stopping > supporting cald

Re: [O] [PATCH] Process hlines in imported tables

2013-03-29 Thread Eric Schulte
Rick Frankel writes: > Currently, there is no way to include an hline in an imported or > converted table. The `org-babel-import-elisp-from-file converts lines > starting with '-' (or '|-') to an integer 0, Oh, thanks for pointing this out, I've just pushed up a fix. The single "-" was tricking

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread John Hendy
On Fri, Mar 29, 2013 at 9:47 AM, Andreas Röhler < andreas.roeh...@easy-emacs.de> wrote: > Hi Gary, > > > Am 29.03.2013 13:11, schrieb Gary Oberbrunner: > > Does this assume org-babel-python-mode is set to 'python-mode? The >> default >> is 'python, I believe. I don't think you should unconditio

Re: [O] Fwd: run python from org, draft

2013-03-29 Thread Andreas Röhler
Hi Gary, > Am 29.03.2013 13:11, schrieb Gary Oberbrunner: Does this assume org-babel-python-mode is set to 'python-mode? The default is 'python, I believe. I don't think you should unconditionally call py-send-string-return-output like that. Also, why would you avoid calling org-babel-python

Re: [O] Advice on writing a refile to heading function?

2013-03-29 Thread John Hendy
On Fri, Mar 29, 2013 at 7:51 AM, Martin Owen wrote: > Hi, > > I am writing a Pomodoro minor mode on top of org-mode. I'm planning to > maintain > an Activity Inventory with estimates against each item and move items into > a > Todo Today heading each day as I progress through them. The approach i

Re: [O] :session question - a simple PATCH

2013-03-29 Thread Eric Schulte
Achim Gratz writes: > Am 28.03.2013 20:35, schrieb Andreas Leha: >> so it seems, currently, I (and John...) can not have both, /file local/ >> and /language local/ variables. >> >> - The emacs-lisp-block >>#+begin_src emacs-lisp >> (setq org-babel-default-header-args:R >>'((:

Re: [O] [BUG] [ODT] Subtree export gives wrong footnote style

2013-03-29 Thread Christian Moe
Hi, Maybe I'm being obtuse, but I don't understand the relevance of your question to the bug I pointed out. My example had two simple footnotes, neither of which contained any blocks. The only difference between them was that one was located inside the subtree being exported and the other not. Th

[O] Bug: Command "org-toggle-pretty-entities" does not display x_{i}^{j} correctly [7.9.4 (7.9.4-elpa @ /home/jae/.emacs.d/elpa/org-20130325/)]

2013-03-29 Thread Jae Hee Lee
Command "org-toggle-pretty-entities" does not display x_{i}^{j} correctly. When subscript and supersript _{i} and ^{j} are combined, _{i} is displayed correctly as subscript, but ^{j} is not displayed as superscript. Emac

[O] org-html-postamble-format and #+DATE: specification in 8.0pre

2013-03-29 Thread Dieter Wilhelm
Dear list, I changed the html postamble org-html-postamble-format is a variable defined in `ox-html.el'. Its value is (("en" "Author: %a (%e)\nDate: %d \nGenerated by %c \n") ("de" "Autor: %a (%e)\nDatum: %d \nGeneriert von %c \n") ("fr" "Auteur: %a (%e)\nDate: %d \nGenerated by %c \n")) Or

Re: [O] #+bind: org-html-preamble

2013-03-29 Thread Nicolas Goaziou
Dieter Wilhelm writes: > org-export-allow-bind-keywords is a variable defined in `ox.el'. > Its value is nil > > ah there is a new variable! :-) > > So this must be set even though > > (setq org-export-allow-BIND t) > > is already there, or is it replacing this variable? It is replacing old

Re: [O] #+bind: org-html-preamble

2013-03-29 Thread Dieter Wilhelm
Nicolas Goaziou writes: > Hello, > > Dieter Wilhelm writes: > What is the value of `org-export-allow-bind-keywords'? org-export-allow-bind-keywords is a variable defined in `ox.el'. Its value is nil ah there is a new variable! :-) So this must be set even though (setq org-export-allow-

Re: [O] #+bind: org-html-preamble

2013-03-29 Thread Nicolas Goaziou
Hello, Dieter Wilhelm writes: > for a creating navigation bars (e. g. in duenenhof-wilhelm.de. I used > to include the respective information e.g. with > > > #+SETUPFILE: "template_de.org" > > > and bound in template_de.org org-html-preamble with: > > > #+BIND: org-html-preamble " src=\"img/Auf

[O] #+bind: org-html-preamble

2013-03-29 Thread Dieter Wilhelm
Dear list, for a creating navigation bars (e. g. in duenenhof-wilhelm.de. I used to include the respective information e.g. with #+SETUPFILE: "template_de.org" and bound in template_de.org org-html-preamble with: #+BIND: org-html-preamble "StartseiteHof und LebewesenRezepteLage und AnfahrtHis

Re: [O] [BUG] [ODT] Subtree export gives wrong footnote style

2013-03-29 Thread Nicolas Goaziou
Hello, Christian Moe writes: > The new ODT exporter sometimes, but not always fails to put footnotes in > Footnote style as expected. They are left in Text Body, which is wrong > (and surprisingly difficult to fix in LibreOffice). > > After a bit of trial and failure, it seems the error depends

[O] Advice on writing a refile to heading function?

2013-03-29 Thread Martin Owen
Hi, I am writing a Pomodoro minor mode on top of org-mode. I'm planning to maintain an Activity Inventory with estimates against each item and move items into a Todo Today heading each day as I progress through them. The approach is based on the Pomodoro approach suggested in this book: http://pra

[O] Fwd: run python from org, draft

2013-03-29 Thread Gary Oberbrunner
[sorry, forgot to "reply all" -- Gary] -- Forwarded message -- From: Gary Oberbrunner Date: Thu, Mar 28, 2013 at 10:43 PM Subject: Re: [O] run python from org, draft To: Andreas Röhler Does this assume org-babel-python-mode is set to 'python-mode? The default is 'python, I bel

Re: [O] Bugs x2: fast tag selection broken, column view broken?

2013-03-29 Thread Toby Cubitt
On Fri, Mar 29, 2013 at 12:10:10AM +, Toby Cubitt wrote: > On Thu, Mar 28, 2013 at 10:29:06PM +0100, Bastien wrote: > > > 2. Column view mode is completely broken for me. In old org files where > > >column view used to work fine, I now just get grey boxes obscuring the > > >headings, an

[O] Sync Org with Google Calendar using google API (rather than caldav)

2013-03-29 Thread Baptiste
Hi, I have started a google calendar synchronization Emacs module. Rather than using ical format, I use directly Google API. For sure it is less usefull for other calendar services, but it will keep working when Google is stopping supporting caldav. For now, only fetch from Goog

Re: [O] :session question - a simple PATCH

2013-03-29 Thread Achim Gratz
Am 28.03.2013 20:35, schrieb Andreas Leha: so it seems, currently, I (and John...) can not have both, /file local/ and /language local/ variables. - The emacs-lisp-block #+begin_src emacs-lisp (setq org-babel-default-header-args:R '((:session . "org-R"))) #+end_src works

Re: [O] #+call split into multiple lines?

2013-03-29 Thread feng shu
Stefan Vollmar writes: > Dear Thomas, > dear Sebation, > dear Achim, > dear Nicolas, > > maybe a misunderstanding: the original idea is to produce a "personal > homepage" for members of our institute, with one file per person - > here is a better example http://www.nf.mpg.de/cv-howto/ex3-en.org a

Re: [O] #+call split into multiple lines?

2013-03-29 Thread Achim Gratz
Am 29.03.2013 09:24, schrieb Stefan Vollmar: [...] This might work reasonably well - if (1) I could prevent the table from being exported to HTML, (2) (probably more difficult) if this kind of thing would work: #+call: hcard(v=card-table) :results html It does, see: http://orgmode.org/manual/E

Re: [O] #+call split into multiple lines?

2013-03-29 Thread Stefan Vollmar
Dear Thomas, dear Sebation, dear Achim, dear Nicolas, maybe a misunderstanding: the original idea is to produce a "personal homepage" for members of our institute, with one file per person - here is a better example http://www.nf.mpg.de/cv-howto/ex3-en.org and here some background information h

Re: [O] #+call split into multiple lines?

2013-03-29 Thread Achim Gratz
Am 28.03.2013 21:49, schrieb Stefan Vollmar: (1) "natural" multi-line #+call: mhead-hcard( cname="Dr. Stefan Vollmar", # full name for title gname="Stefan", # given name photo="stefan-vollmar.jpg", # can be jpg or png ...) This doesn't parse well, so I venture to guess that N