Re: [O] suggestion for the manual: mention the "#+BEGIN_SRC org" trick when describing drawers and plainlists

2012-03-07 Thread Sebastien Vauban
Hi Ilya, Ilya Shlyakhter wrote: > In Org, entry text can't have substructure (other than drawers and plain > lists): you can't have an entry that > has some text, then a subtree, then more text. Take a look at "inline tasks". I think that's more what you're after... Best regards, Seb -- Seba

Re: [O] AUCTeX conflicting with org-mode

2012-03-07 Thread Yagnesh Raghava Yakkala
Hello Nick., Nick Dokos writes: > suvayu ali wrote: > [snipped] > > Actually, your backtrace in the original post makes things clearer now. > > org-export-as-latex calls find-file-noselect on the .tex file, which > calls after-find-file which runs the find-file-hook. Somehow the > find-file

Re: [O] BUG(?): #+BINDing org-export-publishing-directory only affects HTML output, not PDF or Babel results

2012-03-07 Thread A . Major
Christian Moe christianmoe.com> writes: > > > >>> On Wed, 7 Mar 2012 12:38:48 + (UTC), A Major said: > > > >> Even worse, if the .org file uses Babel to create files (say, in PNG > >> format) as a result (via ditaa, graphviz, etc.), then these files > >> end up in the directo

[O] Orgmode markups inside LaTeX fragments

2012-03-07 Thread Truong Nghiem
Is there any way to turn on orgmode markups inside LaTeX fragments for export? For example, when I write \mycommand{*Bold text*} in an org file and export it to LaTeX, I would like to have \mycommand{\textbf{Bold text}} Currently it is exported as-is (verbatim): \mycommand{*Bold text*}

Re: [O] org babel execute shell in sh?

2012-03-07 Thread Tom Regner
Hi, Panruo Wu writes: > Dear list, > > > #+begin_src sh  > for np in {1..32} > do >     echo $np > done > #+end_src > > when executing, the output only shows > {1..32} > which is clearly not I want.. > > After some investigation, I found that orgmode > uses "sh" that cannot understand the for lo

[O] [PATCH] Skip uninteresting lines when navigating the agenda

2012-03-07 Thread Bernt Hansen
* lisp/org-agenda.el (org-agenda-next-line): Skip lines without markers * lisp/org-agenda.el (org-agenda-previous-line): Skip lines without markers Next and previous line functions now only visit agenda lines which have a marker defined. This skips all of the uninteresting data lines in the agend

Re: [O] suggestion for the manual: mention the "#+BEGIN_SRC org" trick when describing drawers and plainlists

2012-03-07 Thread Ilya Shlyakhter
p.s. it _would_ be good to have an option, when exporting a "#+BEGIN_SRC org" block, to use the Org export settings from the main Org file, rather than exporting a fontified copy of the Org buffer for the block. Is there a way to do that currently? On Wed, Mar 7, 2012 at 8:13 PM, Ilya Shlyakhter

[O] suggestion for the manual: mention the "#+BEGIN_SRC org" trick when describing drawers and plainlists

2012-03-07 Thread Ilya Shlyakhter
In Org, entry text can't have substructure (other than drawers and plain lists): you can't have an entry that has some text, then a subtree, then more text. I just (re-)discovered that you can get around that by using "#+BEGIN_SRC org" to include arbitrary org subtrees in the middle of entry text.

Re: [O] [BUG] LATEX_CLASS_OPTIONS not working

2012-03-07 Thread suvayu ali
Hi Nick, On Wed, Mar 7, 2012 at 23:20, Nick Dokos wrote: > but I think it would be better to add an > example in section 12.6.2, "Header and sectioning structure". I would > encourage you to submit a doc patch. > Comments are of course welcome. :)

[O] [PATCH] Add example demonstrating LaTeX_CLASS_OPTIONS

2012-03-07 Thread suvayu ali
Hi, This is adds a small example to better illustrate the use of LaTeX_CLASS_OPTIONS. Thanks to Nick for encouraging me to submit this. Thanks, -- Suvayu Open source is the future. It sets us free. From 1e8dc6e253ba72a1574dc7fb5f91028f68f01241 Mon Sep 17 00:00:00 2001 From: Suvayu Ali Date: T

Re: [O] org babel execute shell in sh?

2012-03-07 Thread Nick Dokos
Panruo Wu wrote: > Dear list, > > #+begin_src sh > for np in {1..32} > do > echo $np > done > #+end_src > > when executing, the output only shows > {1..32} > which is clearly not I want.. > > After some investigation, I found that orgmode > uses "sh" that cannot understand the for loop above

[O] org babel execute shell in sh?

2012-03-07 Thread Panruo Wu
Dear list, #+begin_src sh for np in {1..32} do echo $np done #+end_src when executing, the output only shows {1..32} which is clearly not I want.. After some investigation, I found that orgmode uses "sh" that cannot understand the for loop above. My question is, how can I suggest orgmode to

Re: [O] AUCTeX conflicting with org-mode

2012-03-07 Thread Nick Dokos
suvayu ali wrote: > Hi Nick, > > On Wed, Mar 7, 2012 at 21:00, Nick Dokos wrote: > > As a workaround-and-proof-of-concept, try > > > > (load "tex") > > > > before loading org. Assuming that that works, you will probably want > > to arrange things that this is always done. > > > > This worked a

Re: [O] [BUG] LATEX_CLASS_OPTIONS not working

2012-03-07 Thread Nick Dokos
suvayu ali wrote: > Hi Nick, > > On Tue, Mar 6, 2012 at 03:42, Nick Dokos wrote: > > I don't think it's a regression - at least I could only find two commits > > that touched the relevant code (lines 1397-1405 in org-latex.el) and > > they are from 2008 and 2009. > > > > Also the latex syntax i

Re: [O] AUCTeX conflicting with org-mode

2012-03-07 Thread suvayu ali
Hi Nick, On Wed, Mar 7, 2012 at 21:00, Nick Dokos wrote: > As a workaround-and-proof-of-concept, try > > (load "tex") > > before loading org. Assuming that that works, you will probably want > to arrange things that this is always done. > This worked as you hypothesised. :) > It might also be t

Re: [O] Bug: Babel blocks with continuation line at end of block fails to export [7.8.03 (release_7.8.03.542.gdfeac)]

2012-03-07 Thread Nicolas Goaziou
Hello, Bernt Hansen writes: > Eric Schulte writes: >> This is a problem with the HTML exporter (notice that export to ASCII >> works as expected). I can reproduce the problem, but I'm not very >> familiar with the workings of the exporters, so I can't suggest or >> implement a fix. > Fair en

Re: [O] AUCTeX conflicting with org-mode

2012-03-07 Thread Nick Dokos
suvayu ali wrote: > Hi Nick, > > On Wed, Mar 7, 2012 at 16:39, Nick Dokos wrote: > >> In org-latex.el Tex-master is set to t to suppress auctex from asking for > >> that variable while exporting with org-latex..(IIRC there was a discussion > >> and > >> Carsten made that change) > >> > >> Some

Re: [O] Bug: Babel blocks with continuation line at end of block fails to export [7.8.03 (release_7.8.03.542.gdfeac)]

2012-03-07 Thread Bernt Hansen
Eric Schulte writes: > Hi Bernt, > > This is a problem with the HTML exporter (notice that export to ASCII > works as expected). I can reproduce the problem, but I'm not very > familiar with the workings of the exporters, so I can't suggest or > implement a fix. > > Best, Fair enough. Maybe th

Re: [O] Participating in Google Summer of Code 2012

2012-03-07 Thread Bastien
Hi all, I'm struggling to get reactions from the GNU project. Given the rich list of Org ideas on these pages, I will try to have Org accepted as a new organization and I will ask GNU to vouch for Org. If we are successful, I volunteer to work as a GSoC admin for Org, and we will have to find

[O] ob-lilypond open pdf and midi asynchroniously

2012-03-07 Thread Ezequiel Birman
Is there a reason to not append "&" to shell-command's args? I get disconnected from ERC/Bitlbee each time I peek at the score too long. -- Ezequiel Birman

Re: [O] Bug: Babel blocks with continuation line at end of block fails to export [7.8.03 (release_7.8.03.542.gdfeac)]

2012-03-07 Thread Eric Schulte
Hi Bernt, This is a problem with the HTML exporter (notice that export to ASCII works as expected). I can reproduce the problem, but I'm not very familiar with the workings of the exporters, so I can't suggest or implement a fix. Best, Bernt Hansen writes: > Remember to cover the basics, that

Re: [O] AUCTeX conflicting with org-mode

2012-03-07 Thread suvayu ali
Hi Nick, On Wed, Mar 7, 2012 at 16:39, Nick Dokos wrote: >> In org-latex.el Tex-master is set to t to suppress auctex from asking for >> that variable while exporting with org-latex..(IIRC there was a discussion >> and >> Carsten made that change) >> >> Some how org leaving that to void at the e

Re: [O] BUG(?): #+BINDing org-export-publishing-directory only affects HTML output, not PDF or Babel results

2012-03-07 Thread Christian Moe
On Wed, 7 Mar 2012 12:38:48 + (UTC), A Major said: > Even worse, if the .org file uses Babel to create files (say, in PNG > format) as a result (via ditaa, graphviz, etc.), then these files > end up in the directory containing the .org file, not in > /tmp/export-test, where

Re: [O] Org-mode workshop: has anyone done this already?

2012-03-07 Thread Puneeth Chaganti
On Wed, Mar 7, 2012 at 8:08 PM, Karl Voit wrote: > Hi! > > I do have the please of conducting an Org-mode workshop (3x4 hours) > for up to twelve participants. > > So far I am planning to show my (advanced) setup in form of my > workflows for misc things as a teaser and start with basics more or >

Re: [O] Agenda not working

2012-03-07 Thread Bernt Hansen
Toni Cebrián writes: > Shame on me for my diagonal reading of the manual ;) > > Thanks > > On 07/03/12 10:34, François Allisson wrote: >> Hello Toni, >> >>> When I type M-x org-agenda-list with this file >> (...) >>> I get this agenda view: >> (...) >>> That displays nothing. Am I doing some

Re: [O] BUG(?): #+BINDing org-export-publishing-directory only affects HTML output, not PDF or Babel results

2012-03-07 Thread Myles English
>> On Wed, 7 Mar 2012 12:38:48 + (UTC), A Major said: > Hi, I'm trying to set up my .org file such that export commands > create all results in a certain directory rather than the directory > containing the .org file. So I've added the option > #+BIND: org-export-publishing-directo

Re: [O] Org-mode workshop: has anyone done this already?

2012-03-07 Thread Karl Voit
* Bastien wrote: > Hi Karl, Hi! > Karl Voit writes: > >> I do have the please of conducting an Org-mode workshop (3x4 hours) >> for up to twelve participants. > > Great! I am looking forward to it! > We held two "OrgCamps" in France, one in January 2011, another > one in April 2011. The pla

Re: [O] Org-mode workshop: has anyone done this already?

2012-03-07 Thread Thorsten
Karl Voit writes: > * Alan Schmitt wrote: >> On 7 mars 2012, at 15:38, Karl Voit wrote: >> >>> I do have the please of conducting an Org-mode workshop (3x4 hours) >>> for up to twelve participants. >> >> This sounds great. Are you planning on filming it? > > Sorry, no. > > It will be held in Ger

Re: [O] Org-mode workshop: has anyone done this already?

2012-03-07 Thread Karl Voit
* Alan Schmitt wrote: > On 7 mars 2012, at 15:38, Karl Voit wrote: > >> I do have the please of conducting an Org-mode workshop (3x4 hours) >> for up to twelve participants. > > This sounds great. Are you planning on filming it? Sorry, no. It will be held in German only anyway ... -- Karl Voit

Re: [O] AUCTeX conflicting with org-mode

2012-03-07 Thread Nick Dokos
Yagnesh Raghava Yakkala wrote: > > Hi Suvayu, > > suvayu ali writes: > > > Hi, > > > > I am having conflicts AUCTeX when I try to open plain latex files after > > I exporting an org file to latex. These are the exact steps. > > > > 1. Start Emacs as: emacs -q (so that the site files load and

Re: [O] Org-mode workshop: has anyone done this already?

2012-03-07 Thread Alan Schmitt
On 7 mars 2012, at 15:38, Karl Voit wrote: > Hi! > > I do have the please of conducting an Org-mode workshop (3x4 hours) > for up to twelve participants. > > So far I am planning to show my (advanced) setup in form of my > workflows for misc things as a teaser and start with basics more or > les

Re: [O] Org-mode workshop: has anyone done this already?

2012-03-07 Thread Bastien
Hi Karl, Karl Voit writes: > I do have the please of conducting an Org-mode workshop (3x4 hours) > for up to twelve participants. Great! > So far I am planning to show my (advanced) setup in form of my > workflows for misc things as a teaser and start with basics more or > less in the order of

[O] Org-mode workshop: has anyone done this already?

2012-03-07 Thread Karl Voit
Hi! I do have the please of conducting an Org-mode workshop (3x4 hours) for up to twelve participants. So far I am planning to show my (advanced) setup in form of my workflows for misc things as a teaser and start with basics more or less in the order of the Org-mode manual. I am sure that there

[O] BUG(?): #+BINDing org-export-publishing-directory only affects HTML output, not PDF or Babel results

2012-03-07 Thread A . Major
Hi, I'm trying to set up my .org file such that export commands create all results in a certain directory rather than the directory containing the .org file. So I've added the option #+BIND: org-export-publishing-directory "/tmp/export-test" at the beginning of the file, which seems to work f

Re: [O] Agenda not working

2012-03-07 Thread Toni Cebrián
Shame on me for my diagonal reading of the manual ;) Thanks On 07/03/12 10:34, François Allisson wrote: Hello Toni, When I type M-x org-agenda-list with this file (...) I get this agenda view: (...) That displays nothing. Am I doing something wrong? Why the TODO task is not displayed

Re: [O] Agenda not working

2012-03-07 Thread François Allisson
Hello Toni, >     When I type M-x org-agenda-list with this file (...) > I get this agenda view: (...) > That displays nothing. Am I doing something wrong? Why the TODO task is not > displayed? There is nothing wrong with your file. It is just that it must be added to the org-agenda-files variabl

Re: [O] AUCTeX conflicting with org-mode

2012-03-07 Thread suvayu ali
On Wed, Mar 7, 2012 at 06:08, Yagnesh Raghava Yakkala wrote: > I can reproduce this., I think your auctex installation is fine. Its > definitely from org. Thanks a lot for taking a look and confirming. :) -- Suvayu Open source is the future. It sets us free.

[O] Agenda not working

2012-03-07 Thread Toni Cebrián
Hi, I'm having a problem with the agenda view that I'm not able to solve. Even if I starts emacs with an empty configuration file emacs -q -l empty_emacs_file When I type M-x org-agenda-list with this file * Tasks ** TODO Hello darling SCHEDULED: <2012-03-07 Wed> I get this agenda