[O] ob-clojure.el (org-babel for Clojure)

2014-10-02 Thread Daniel Szmulewicz
Executing Clojure in a code block results in a Code block produced no output. Any code. For example: #+BEGIN_SRC clojure (+ 1 1) #+END_SRC I am running CIDER 0.8.0alpha (package: 20141001.738) (Java 1.8.0_05, Clojure 1.6.0, nREPL 0.2.6) Ob-clojure.el from master. Org-mode 8.2.7c Thank you

[O] [ox-latex] How to force ALL captions below their referents?

2014-10-02 Thread James Harkins
I'm struggling a bit with caption placement in LaTeX export. In the document I'm working on now, I have: - Image links, exported as floating figures (by inclusion of a caption). ox-latex places the caption at the end of the figure environment, so the caption appears below the image. #+name:

Re: [O] [patch, ox] #+INCLUDE resolves links

2014-10-02 Thread Xavier Garrido
Hi, Following the discussion here http://article.gmane.org/gmane.emacs.orgmode/91322/match=improved+way, I have quickly tested the patch and it perfectly fits my needs. So thanks again. Just one remark : there is an undefined @ref tag in org.texi (line 10011) file that should referred to

[O] Adding items in table

2014-10-02 Thread Chris Henderson
I have a table and would like to add all costs (in $) in column 3 as a total. Wondering how do I do that. I have done =vsum($2..$9) - but this hangs my org file and I have to kill it with the -9 switch. Thanks.

Re: [O] Formal description of Org files

2014-10-02 Thread Samuel Loury
Nicolas Goaziou m...@nicolasgoaziou.fr writes: Gustav Wikström gustav.e...@gmail.com writes: So my question is; have there been more discussions of constructing such a formal grammar? Maybe in EBNF form. I suspect getting every aspect of Org mode into such a description would be difficult.

Re: [O] Adding items in table

2014-10-02 Thread Christian Moe
You probably don't really want to replace the contents of column 3 ($3) with a sum of columns including column 3 ($2..$9)? To get useful help you'll need to provide the table, or a minimal example of a table with the same structure. Yours, Christian Chris Henderson writes: I have a table and

Re: [O] [patch, ox] #+INCLUDE resolves links

2014-10-02 Thread Rasmus
Xavier Garrido xavier.garr...@gmail.com writes: Following the discussion here http://article.gmane.org/gmane.emacs.orgmode/91322/match=improved+way, I have quickly tested the patch and it perfectly fits my needs. So thanks again. I'm happy that it works well for you. Just one remark :

[O] Fwd: Re: Adding items in table

2014-10-02 Thread Christian Moe
Christian Moe writes: You probably don't really want to replace the contents of column 3 ($3) with a sum of columns including column 3 ($2..$9)? To get useful help you'll need to provide the table, or a minimal example of a table with the same structure. Yours, Christian Chris Henderson

Re: [O] ob-clojure.el (org-babel for Clojure)

2014-10-02 Thread Thorsten Jolitz
Daniel Szmulewicz daniel.szmulew...@gmail.com writes: Executing Clojure in a code block results in a Code block produced no output. Did you try other :results types like , | #+BEGIN_SRC clojure :results raw ` or :results value :results pp etc see

Re: [O] Fwd: Re: Adding items in table

2014-10-02 Thread Chris Henderson
Here's an example of the table (hope the line breaks are ok) |Item | Model | price | | x | v | $323.98 | y | x | $184.45| | Total | | ?? | On Thu, Oct 2, 2014 at 7:01 PM, Christian Moe m...@christianmoe.com wrote: Christian Moe writes: You

Re: [O] Fwd: Re: Adding items in table

2014-10-02 Thread Christian Moe
It looks like what you actually want to do is add up the numbers in the rows of column 3 -- from row 2 to 3 in your example. Your original formula added up columns (prefixed with `$'). Rows are prefixed with `@'. You need to get rid of the dollar signs in your cells to let Org know they contain

Re: [O] Bug: LaTeX export produces no output; clobbering keybindings [8.2.7c (8.2.7c-64-g01f736-elpa @/home/tbg/.emacs.d/elpa/org-20140915/)]

2014-10-02 Thread Tobias Getzner
Hello Nicolas, On So, 2014-09-28 at 23:50 +0200, Nicolas Goaziou wrote: Hello, Tobias Getzner tobias.getz...@gmx.de writes: When using LaTeX-based export targets that produce a .tex file as output (export to LaTeX file, PDF, PDF and open), I receive the message «Buffer foo.tex

[O] converting from markdown to org mode?

2014-10-02 Thread Alan Schmitt
Hello, I've just found out about this very nice bookmarklet http://brettterpstra.com/2014/10/01/answered-save-your-stackexchange-discoveries/ and I was wondering if there is an easy way to extend it to get the results in the org format. I guess using pandoc could work … Is it the best way to

Re: [O] [patchattached] Store link to url of eww

2014-10-02 Thread Bastien
Hi Aaron and Marco, I confirm you are listed in the FSF contributors and we can now accept patches with no restriction. I added you to the list of contributors here: http://orgmode.org/worg/org-contribute.html#contributors_with_fsf_papers Thanks for contributing! -- Bastien

Re: [O] [patchattached] Store link to url of eww

2014-10-02 Thread Marco Wahl
Hi Aaron, [...] I have pushed your patch to the master branch of the org-mode repo. If you want commit access, you can follow the instructions in the wiki: http://orgmode.org/worg/org-contribute.html#devs. Thank you for your action and the hint about committing. For my next contribution

Re: [O] [patchattached] Store link to url of eww

2014-10-02 Thread Marco Wahl
Hi Bastien, I added you to the list of contributors here: http://orgmode.org/worg/org-contribute.html#contributors_with_fsf_papers Thanks for contributing! Thanks for adding me! Best wishes, Marco -- http://www.wahlzone.de PGP: 0x0A3AE6F2

Re: [O] ob-clojure.el (org-babel for Clojure)

2014-10-02 Thread Daniel Szmulewicz
Thorsten Jolitz tjolitz at gmail.com writes: Did you try other :results types like , | #+BEGIN_SRC clojure :results raw ` Yes, thank you. I tried various switches for the results argument, and the result was the same: Code block produced no output. I also wanted to rule out

[O] [bug] Alignment bug in clock tables

2014-10-02 Thread Francesco Pizzolante
Hi, I'm having an alignment issue in clock tables, both in the agenda and in dynamic blocks. By default, \emsp is displayed in clock tables for level 2 (or above) to indent headings. To avoid that, I set the variable `org-pretty-entities' to t, and in this case the alignment of the table is

Re: [O] [patch, ox] #+INCLUDE resolves links

2014-10-02 Thread Aaron Ecay
Hi Rasmus, Thanks for all the work on this patch – I haven’t had anything to say about it really, but it looks like a really useful feature. 2014ko urriak 2an, Rasmus-ek idatzi zuen: [...] PS: How can I get commit access? I'm starting to feel like the Nick K of the org-list. TLDR: email

Re: [O] Org-mode previews: equation numbers

2014-10-02 Thread Eric S Fraga
On Monday, 29 Sep 2014 at 15:23, Adam Sneller wrote: [...] By-the-way, the only way I could get the equation numbers to increment upward was to manually include these with \tag{1} and \tag {2}. Otherwise, org-mode numbers each equation as a (1). Is there some setting that will enable

Re: [O] [patch, ox] #+INCLUDE resolves links

2014-10-02 Thread Nicolas Goaziou
Hello, Rasmus ras...@gmx.us writes: Shoot. Fixed in attached (tested with texi2pdf). Applied. Thank you for this patch. Regards, -- Nicolas Goaziou

Re: [O] [ox-latex] How to force ALL captions below their referents?

2014-10-02 Thread Nicolas Goaziou
Hello, James Harkins jamshar...@qq.com writes: It seems somebody recognized a while ago that this was a problem, and introduced org-latex-table-caption-above. But this applies only to tables, not to figure special blocks, nor to source code blocks, and probably some other cases that I can't

Re: [O] Formal description of Org files

2014-10-02 Thread Nicolas Goaziou
Hello, Samuel Loury konubi...@gmail.com writes: Nicolas, I can see on the worg version that it is in draft status. Could you say what is left to do to consider it mature? I have plans to change properties drawers syntax soon. Also differences between export blocks and special blocks should be

Re: [O] [patch, ox] #+INCLUDE resolves links

2014-10-02 Thread Rasmus
Nicolas Goaziou m...@nicolasgoaziou.fr writes: Hello, Rasmus ras...@gmx.us writes: Shoot. Fixed in attached (tested with texi2pdf). Applied. Thank you for this patch. Please also apply this patch to make make test pass. —Rasmus -- Don't panic!!! From

[O] OT - syncthing

2014-10-02 Thread Nick Dokos
[I know a lot of people on this ML are interested in syncing, so I thought I'd post this even though it has nothing to do with org.] I just saw this on LWN's weekly edition (which requires subscription for access - it will be freely available a week from today):

Re: [O] [patch, ox] #+INCLUDE resolves links

2014-10-02 Thread Achim Gratz
Rasmus writes: Please also apply this patch to make make test pass. Applied. Please always run all tests before committing. Regards, Achim. -- +[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]+ Factory and User Sound Singles for Waldorf Blofeld:

Re: [O] [patch, ox] #+INCLUDE resolves links

2014-10-02 Thread Rasmus
Achim Gratz strom...@nexgo.de writes: Rasmus writes: Please also apply this patch to make make test pass. Applied. Please always run all tests before committing. Thanks. I only learned about it now from Aaron's link. -- Together we will make the possible totay impossible!

[O] A question on org-element-headline-interperter

2014-10-02 Thread Marcin Borkowski
Hi, I guess I don't understand something. I have a headline in a `headline' variable (say that I did something like (org-element-parse-buffer) and took one of the headlines from there). I thought that (insert (org-element-headline-interpreter headline (org-element-property :contents