[O] a question: how to do plain text alignment?

2013-07-23 Thread Bing Sun
hi, What can be done if I want the text contents right aligned (like latex \hfill)? Regards,

[O] Symbol's function definition is void: org-export-dispatch

2013-07-23 Thread Tom Slee
Running org-mode 8.0.6 on Windows I get the above error message when executing C-c C-e. I have experienced this both getting org-mode from git and from the July 15 elpa install. Still, I see nothing on this list so I assume I am doing something wrong. Currently I'm on this release Org-mode version

Re: [O] process diagrams with dot and some glue using org

2013-07-23 Thread Karl Voit
Eric S Fraga (e.fr...@ucl.ac.uk) wrote: > Dear Karl, Hi Eric, > a couple of weeks ago you developed some code to convert a pair of > tables to a graphviz digraph and you wrote a very useful Worg page about > it: > > http://article.gmane.org/gmane.emacs.orgmode/74280 > http://orgmode.org/wor

[O] bug#14910: org-mode `org-open-at-point' doesn't follow id links

2013-07-23 Thread Oleh Krehel
Hi Bastien, > please make sure to send your replies on the list, you'll get a > quicker answer. Thanks for reminding, I keep forgetting. > As for requiring org-id for `org-open-at-point', I'm not sure this > is the right thing to do since it will require it for all users, even > those who don't u

[O] front-matter support in version 8.0?

2013-07-23 Thread Vikas Rawal
Prior to version 8.0, we had http://orgmode.org/worg/org-tutorials/org-latex-export.html#sec-11. How is one expected to add front-matter for latex export in ver 8.0? Vikas

[O] bug#14910: bug#14910: org-mode `org-open-at-point' doesn't follow id links

2013-07-23 Thread Samuel Loury
Hi, Oleh Krehel writes: >> As for requiring org-id for `org-open-at-point', I'm not sure this >> is the right thing to do since it will require it for all users, even >> those who don't use org-id at all. > The issue is that the current solution isn't portable.[...] > In my opinion it would be b

Re: [O] a question: how to do plain text alignment?

2013-07-23 Thread Thorsten Jolitz
Bing Sun writes: > hi, > > What can be done if I want the text contents right aligned (like latex > \hfill)? here ,- | http://ergoemacs.org/emacs/emacs_align_and_sort.html `- and here ,

Re: [O] front-matter support in version 8.0?

2013-07-23 Thread Nicolas Goaziou
Hello, Vikas Rawal writes: > Prior to version 8.0, we had > http://orgmode.org/worg/org-tutorials/org-latex-export.html#sec-11. > > How is one expected to add front-matter for latex export in ver 8.0? You disable default table of contents and use TOC keyword (see manual) to put it wherever you

[O] Typo in manual

2013-07-23 Thread Bart Bunting
A trivial typo in the manual. Not sure where else to report this. 12.13 Advanced configuration Three arguments must be provided to a fiter: the code being changed, Guess it should be filter. Kind regards Bart

Re: [O] automagically add/remove org mode buffers to agenda files list (was: Re: collect info from org files in agenda when open?)

2013-07-23 Thread Gregor Zattler
Hi Drew, org-mode-community, * Drew Adams [14. Jul. 2013]: >> (add-hook 'kill-buffer-hook 'org-remove-file) >> >> But the last hook does not work as espected. Instead it says >> "Current buffer does not visit a file". But according to the >> documentation kill-buffer-hook is run before the buff

[O] [bug?] inherit tags before org-refile

2013-07-23 Thread Oleh
Hi all, When I call `org-refile' on a heading that inherits at tag from its parent, but does not possess it, it looses this tag. To give an example, the parent heading has :boss: tag attached to it - it means that all child headings have something to do with the boss. Now I choose to refile only

Re: [O] [babel] Table as varaiables a differently proccesed by #+call lines vs. source code blocks

2013-07-23 Thread Sebastien Vauban
Hi Torsten, Torsten Wagner wrote: > I want to summarize the problem I found, using tables as input to source > code blocks. > This observation was shared with Rick and I would be glad to help fixing > that. > > Within the attached file one can see a typical example. > > It all comes down to a diff

[O] shortcut to create a heading already with todo included

2013-07-23 Thread Xebar Saram
Hya guys i know this is probably a silly question but does anyone know how to make a shortcut that inserts a heading which already includes a TODO state? i have a main file named todo.org in which all heading are todos. each time i need to do a 2 step process: add heading and then add a todo stat

[O] style the tags with colors in theme

2013-07-23 Thread Xebar Saram
Hi all does anyone know how (if there is a way) to style the tags with colors in a theme? IE to have tags with a different fg/bg from default and even better yet to define a different color for each tag? best Itai

Re: [O] shortcut to create a heading already with todo included

2013-07-23 Thread Oleh
Hi, This task is handled with capture templates. Here's how I do it: (setq org-capture-templates '(("t" "Todo" entry (file+headline (concat org.d "gtd.org") "Tasks") "* TODO %^{Brief Description} %^g\n%?\nAdded: %U %i\n") ;; more templates here )) (global-set-key (kbd "C-~") 'or

[O] org-speed-commands-default 1 2 3

2013-07-23 Thread Oleh
Hi all, I've recently started using `org-use-speed-commands', and I like it a lot, except I had to make one tweak: (setq org-use-speed-commands t) (setq org-speed-commands-user '(("1" . (org-shifttab 1)) ("2" . (org-shifttab 2)) ("3" . (org-shifttab 3

Re: [O] Handling Repeating events from google calendar / repeater interval

2013-07-23 Thread Stephen Eglen
> > Yes, org-mode does not recognize the [UTC], that is just a helper for > exactly this case: The ical's timezone is emitted in case it is > different from your DEFAULT_TZ. For me it worked fine so far. Thanks. >res = orgTimeSpan(tstart, tend, repeaterClause) > > for >res = orgTimeSpan

[O] [bug?] org-latex-table-caption-above has no effect

2013-07-23 Thread James Harkins
Not entirely sure if this is a bug or not, but it seems to be a regression. According to [1], the customization variable org-latex-table-caption-above was added to allow table captions to come underneath the table. I can't see any indication that the variable has been deprecated, but in my envir

Re: [O] [babel] Table as varaiables a differently proccesed by #+call lines vs. source code blocks

2013-07-23 Thread Rick Frankel
On 2013-07-23 08:25, Sebastien Vauban wrote: Torsten Wagner wrote: I want to summarize the problem I found, using tables as input to source code blocks. This observation was shared with Rick and I would be glad to help fixing that. Within the attached file one can see a typical example. It

Re: [O] [bug?] org-latex-table-caption-above has no effect

2013-07-23 Thread Nicolas Goaziou
Hello, James Harkins writes: > Not entirely sure if this is a bug or not, but it seems to be a regression. > > According to [1], the customization variable > org-latex-table-caption-above was added to allow table captions to > come underneath the table. I can't see any indication that the > vari

Re: [O] Typo in manual

2013-07-23 Thread Bastien
"Bart Bunting" writes: > A trivial typo in the manual. Not sure where else to report this. > > 12.13 Advanced configuration > >Three arguments must be provided to a fiter: the code being changed, > > Guess it should be filter. Fixed, thanks! -- Bastien

Re: [O] style the tags with colors in theme

2013-07-23 Thread Bastien
Hi Xebar, Xebar Saram writes: > does anyone know how (if there is a way) to style the tags with > colors in a theme? IE to have tags with a different fg/bg from > default and even better yet to define a different color for each > tag? See this: C-h v org-tag-faces RET HTH, -- Bastien

Re: [O] style the tags with colors in theme

2013-07-23 Thread Darlan Cavalcante Moreira
I use the code below for the ATTACH tag --8<---cut here---start->8--- (setq org-tag-faces '(("ATTACH" :inherit org-done :box nil :underline t :height 1.2))) --8<---cut here---end--->8--- -- Darlan Cavalcante Moreira darc...

Re: [O] shortcut to create a heading already with todo included

2013-07-23 Thread Darlan Cavalcante Moreira
Capture is the way to go for a general (and anyware) way to create TODOs. But for something simple, you can use to create a new headline in org-mode and to create a headline with a TODO. -- Darlan Cavalcante Moreira darc...@gmail.com ohwoeo...@gmail.com writes: > Hi, > > This task is handle

Re: [O] [bug?] org-latex-table-caption-above has no effect

2013-07-23 Thread James Harkins
At Tue, 23 Jul 2013 18:44:04 +0200, Nicolas Goaziou wrote: > James Harkins writes: > > > According to [1], the customization variable > > org-latex-table-caption-above was added to allow table captions to > > come underneath the table. I can't see any indication that the > > variable has been dep

[O] Encoding Problem in export?

2013-07-23 Thread Robert Eckl
At least since release_8.0.6-478-g9ee8e2 (encoding utf-8) If i'm using a link which contains the character "=" the character in the target is replaced with "%3D", at least for export to html and latex. [[http://example.de/?idprop=222][http://example.de/picture.jpg]] -> http://example.de/?idpr

Re: [O] Encoding Problem in export?

2013-07-23 Thread Nicolas Goaziou
Hello, Robert Eckl writes: > At least since release_8.0.6-478-g9ee8e2 This release number is suspicious. Latest is release_8.0.6-353-g2b5670. You're 125 commits ahead of us. > (encoding utf-8) > > If i'm using a link which contains the character "=" the character in the > target is replaced

Re: [O] Encoding Problem in export?

2013-07-23 Thread Robert Eckl
Hello, Am 24.07.2013 01:35, schrieb Nicolas Goaziou: Hello, Robert Eckl writes: At least since release_8.0.6-478-g9ee8e2 This release number is suspicious. Latest is release_8.0.6-353-g2b5670. You're 125 commits ahead of us. (encoding utf-8) If i'm using a link which contains the charact

[O] links to files in a zip archive and inline images in zip archive

2013-07-23 Thread John Kitchin
I am trying to make an org-mode zip archive. The idea is basically to zip up the org-file, and the images it might refer to. What I would really like is to be able to open the zip-file in emacs, and have the images shown inline like they are when the archive is expanded. I had no problem making th

[O] Bug: org-element-paragraph-separate void; yields odd behavior on org-todo

2013-07-23 Thread Boyan Penkov
To: emacs-orgmode@gnu.org Subject: Bug: org-element-paragraph-separate void; yields odd behavior on org-todo [8.0.6 (8.0.6-5-gb4a8ec-elpaplus @ /Users/boyanpenkov/.emacs.d/elpa/org-plus-contrib-20130722/)] From: Boyan Penkov --text follows this line-- Remember to cover the basics, that is, what

Re: [O] front-matter support in version 8.0?

2013-07-23 Thread Vikas Rawal
> > How is one expected to add front-matter for latex export in ver 8.0? > > You disable default table of contents and use TOC keyword (see manual) > to put it wherever you want. E.g., > > #+OPTIONS: toc:nil > > #+BEGIN_ABSTRACT > [Abstract here] > #+END_ABSTRACT > > #+TOC: headlines

[O] how to quote "#+end_src" string in a Babel block?

2013-07-23 Thread asenal
Hi Guys I'm trying to do literature programming with org mode. My problem is How can I safely quote "#+XXX" inside a Babel-block? I found org-mode mismatch the outter "#+begin_src" with the first "#+end_src" inside the block hence gives me a wrong parse. Here's an example: #+headers: :var varlis

Re: [O] how to quote "#+end_src" string in a Babel block?

2013-07-23 Thread Thorsten Jolitz
asenal writes: > Hi Guys I'm trying to do literature programming with org mode. > My problem is How can I safely quote "#+XXX" inside a Babel-block? > I found org-mode mismatch the outter "#+begin_src" with the first "#+end_src" > inside the block hence gives me a wrong parse. > > Here's an examp