Re: [O] Is it possible to have a code fragment in a bulleted list?

2012-01-08 Thread Nicolas Goaziou
Hello, "Stephen J. Barr" writes: > Quick question. Is it possible to have a code fragment in a bulleted > list? For example, I would like to do > > - This is interesting > - Level 2 for loop > > #+begin_src R > for (i in 1:10) { > ... > } > #+end_src > > - This should also be on level 2

Re: [O] Footnotes issue with LaTeX export

2012-01-08 Thread Nicolas Goaziou
Hello, John Hendy writes: > #+begin_src orgmode > * Header > > Test paragraph where I insert a dollar amount of $100. > > Test paragraph where I insert a dollar amount of \$100. > > Test paragraph where I insert a dollar amount of 100.[fn:1] > > * Footnotes > > [fn:1] Successful; the first two g

Re: [O] Capture - add newline after new entry

2012-01-08 Thread Carsten Dominik
On 8.1.2012, at 16:58, Adam wrote: > I have a notes file which has a newline preceeding every entry. > > * A > test > > * B > test2 > > ** B2 > test3 > > Now I want to add other entries to my tree via org-capture. This is an > extract of my org-capture-templates > > org-capture-tem

[O] Capture - add newline after new entry

2012-01-08 Thread Adam
I have a notes file which has a newline preceeding every entry. * A test * B test2 ** B2 test3 Now I want to add other entries to my tree via org-capture. This is an extract of my org-capture-templates org-capture-templates `(("t" "test" entry (file+headline (conca

[O] New issue with capture

2012-01-08 Thread Ido Magal
When I attempt to org-capture-finalize, I get Debugger entered--Lisp error: (wrong-type-argument integer-or-marker-p nil) org-capture-bookmark-last-stored-position() org-capture-finalize(nil) call-interactively(org-capture-finalize nil nil) I'm running Org version 7.8.03 out of ELPA and Em

[O] Strange "non-existent agenda file" message

2012-01-08 Thread François Pinard
Hi, Org people. I have a few notes about Org mode which I intend to present to my coworkers at our next meeting, if time permits. This evening, I just pushed them together (the notes, not the coworkers!) in a file with the idea of creating a few beamer slides. And doing so, experimenting a bit w

[O] Bug: org-insert-heading-respect-content is insufficient [7.7 (release_7.7.548.g9a442.dirty)]

2012-01-08 Thread Dave Abrahams
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list.

[O] Is it possible to have a code fragment in a bulleted list?

2012-01-08 Thread Stephen J. Barr
Hello fellow org-mode users, Quick question. Is it possible to have a code fragment in a bulleted list? For example, I would like to do - This is interesting - Level 2 for loop #+begin_src R for (i in 1:10) { ... } #+end_src - This should also be on level 2 When I render this as HTML, th

[O] :noweb header argument

2012-01-08 Thread Thomas S. Dye
Hi Eric, Is there a difference between :noweb tangle and :noweb no? Based on the documentation and some limited testing, I made the following table. *** :noweb parameters | param | eval | tangle | export | |+--++| | yes| +| + | + | | no | -

Re: [O] [PATCH] Add :special header argument

2012-01-08 Thread Thomas S. Dye
Eric Schulte writes: > Achim Gratz writes: > >> t...@tsdye.com (Thomas S. Dye) writes: >>> The attached patch defines a new header argument, :special, which wraps >>> the results of Org babel source block execution in a #BEGIN_ ... #+END_ >>> block. The block name is taken from a new variable >

Re: [O] How to force redisplay?

2012-01-08 Thread François Pinard
Nicolas Goaziou writes: > Hello, Hi, Nicolas! > Well, that command already exists: `org-indent-indent-buffer'. Thanks for this information. (This replies to the question in my original message: is there a command to correct the indention?) >> I cannot reproduce it either. It just occurs, on

Re: [O] [PATCH] Add :special header argument

2012-01-08 Thread Eric Schulte
Achim Gratz writes: > t...@tsdye.com (Thomas S. Dye) writes: >> The attached patch defines a new header argument, :special, which wraps >> the results of Org babel source block execution in a #BEGIN_ ... #+END_ >> block. The block name is taken from a new variable >> org-babel-wrap-special, whic

Re: [O] Footnotes issue with LaTeX export

2012-01-08 Thread John Hendy
On Tue, Dec 27, 2011 at 4:43 AM, Nicolas Goaziou wrote: > Hello, > > John Hendy writes: > > > I'm experiencing an issue similar to this one: > > --- http://osdir.com/ml/emacs-orgmode-gnu/2011-10/msg00544.html > > > > I have a paragraph in which I reference a dollar amount (preceded by > "$"). > >

[O] org-crypt and new key

2012-01-08 Thread Richard Riley
Is there a way to have org rewrite all my org-files having reencrypted all my crypted entries with a new key?

Re: [O] [PATCH] Add :special header argument

2012-01-08 Thread Achim Gratz
t...@tsdye.com (Thomas S. Dye) writes: > The attached patch defines a new header argument, :special, which wraps > the results of Org babel source block execution in a #BEGIN_ ... #+END_ > block. The block name is taken from a new variable > org-babel-wrap-special, which is initialized as "results

Re: [O] Generating boxplot (candlestick) diagrams (babel or org-plot)

2012-01-08 Thread Eric Schulte
Karl Voit writes: > Hi Eric! > > * Eric Schulte wrote: >> >> In more complex examples like these I would recommend using a gnuplot >> code block rather than using Org-plot. > > Thought so. Thanks for confirmation. > >> Gnuplot has an extremely >> comprehensive built in help system, typing "hel

Re: [O] Multiple occurrence of tasks

2012-01-08 Thread Mueen Nawaz
Michael Welle writes: > to work on open tasks. My plan is to collect the tasks I want to work on > on a special tasksatfosdem.org file. How can I implement that? Copying > the tasks is not a solution ;), some kind of a link is needed. Maybe I > should use tags and an agenda view? I like the idea

Re: [O] Generating boxplot (candlestick) diagrams (babel or org-plot)

2012-01-08 Thread Karl Voit
Hi Eric! * Eric Schulte wrote: > > In more complex examples like these I would recommend using a gnuplot > code block rather than using Org-plot. Thought so. Thanks for confirmation. > Gnuplot has an extremely > comprehensive built in help system, typing "help boxplot" at the gnuplot > REPL r

Re: [O] How to force redisplay?

2012-01-08 Thread Nicolas Goaziou
Hello, pin...@iro.umontreal.ca (François Pinard) writes: > Now using this command when the problem happens: > > > (defun fp-org-adjust-visual-margins () > "Recompute visual left margins, for when they seem incorrect." > (interactive) > (message "Adjusting visual margins...") > (org-indent

Re: [O] Generating boxplot (candlestick) diagrams (babel or org-plot)

2012-01-08 Thread Eric Schulte
Karl Voit writes: > Hi! > > I'm new to babel/gnuplot/org-plot and want to generate classic > Boxplot[1] diagrams. > > My tests failed so far: > > #+TBLNAME: mydata > #+PLOT: title:"Boxplots of mydata" with:candlesticks > | A | B | > |---+---| > | 5 | 5 | > | 5 | 6 | > | 4 | 5 | > | 5 | 6 | > | 2

Re: [O] Spreadsheet row formula

2012-01-08 Thread RCY
Hi, That does what I want. Thanks for taking the time to explain it. I should have read the manual on relative cell references more carefully. On Sun, Jan 8, 2012 at 11:23 AM, Michael Brand wrote: > Hi RCY > > On Sun, Jan 8, 2012 at 17:12, RCY wrote: > > Sorry not to be clearer. > > I would li

Re: [O] Spreadsheet row formula

2012-01-08 Thread Michael Brand
Hi RCY On Sun, Jan 8, 2012 at 17:12, RCY wrote: >  Sorry not to be clearer. > I would like to implement the formula for only one row. So entering the > first row shown below and implementing the formula with only B entered in > the first column in the second row gives the rest of the second row.

Re: [O] [PATCH] Documentation of :results wrap

2012-01-08 Thread Eric Schulte
Applied, Thanks, t...@tsdye.com (Thomas S. Dye) writes: > Aloha all, > > The attached patch to the Org mode manual describes the current behavior > of :results wrap. > > All the best, > Tom -- Eric Schulte http://cs.unm.edu/~eschulte/

[O] [PATCH] Add :special header argument

2012-01-08 Thread Thomas S. Dye
Aloha all, The attached patch defines a new header argument, :special, which wraps the results of Org babel source block execution in a #BEGIN_ ... #+END_ block. The block name is taken from a new variable org-babel-wrap-special, which is initialized as "results". I use this in conjunction with

Re: [O] Spreadsheet row formula

2012-01-08 Thread RCY
Hi, Sorry not to be clearer. I would like to implement the formula for only one row. So entering the first row shown below and implementing the formula with only B entered in the first column in the second row gives the rest of the second row. |A|2|3|4| |B|4|6|8| Your suggestion almost does wh

Re: [O] Spreadsheet row formula

2012-01-08 Thread Michael Brand
Hi RCY Do you want to do this?: | A | 2 | 3 | 4 | | B | 4 | 6 | 8 | | C | 8 | 12 | 16 | #+TBLFM: @<<$<<..@>$> = 2 * @-1 Michael

[O] Generating boxplot (candlestick) diagrams (babel or org-plot)

2012-01-08 Thread Karl Voit
Hi! I'm new to babel/gnuplot/org-plot and want to generate classic Boxplot[1] diagrams. My tests failed so far: #+TBLNAME: mydata #+PLOT: title:"Boxplots of mydata" with:candlesticks | A | B | |---+---| | 5 | 5 | | 5 | 6 | | 4 | 5 | | 5 | 6 | | 2 | 4 | | 2 | 5 | ... with «org-plot/gnuplot» resu

[O] Spreadsheet row formula

2012-01-08 Thread RCY
In the following table I am trying to implement a row formula for each cell to be a multiple of the corresponding cell in a preceding row, but several variations I tried do not work: | A| 2 | 3 | 4| | B| [4, 6, 8] | [4, 6, 8] | [4, 6, 8] | | C| [4, 6, 8] |

Re: [O] Multiple occurrence of tasks

2012-01-08 Thread Karl Voit
* Michael Welle wrote: > > My plan is to collect the tasks I want to work on on a special > tasksatfosdem.org file. How can I implement that? Copying the > tasks is not a solution ;), some kind of a link is needed. How about using tags like :fosdemtask: and derive agenda views related to this tag

Re: [O] How to force redisplay?

2012-01-08 Thread François Pinard
Nicolas Goaziou writes: > pin...@iro.umontreal.ca (François Pinard) writes: >> The problem I observed is that the indentation is more to the left >> than the "lefter" it may be. So it has to be a display problem >> somehow, I guess. I wondered if there was some simple command to >> force the d

Re: [O] How to force redisplay?

2012-01-08 Thread Nicolas Goaziou
Hello, pin...@iro.umontreal.ca (François Pinard) writes: > The problem I observed is that the indentation is more to the left than > the "lefter" it may be. So it has to be a display problem somehow, I > guess. I wondered if there was some simple command to force the display > to be recomputed