Re: [O] tricky odt export needs

2013-12-20 Thread Christian Moe
Jambunathan K writes: The following message is a courtesy copy of an article that has been posted to gmane.emacs.orgmode as well. Christian Moe m...@christianmoe.com writes: You can do cross-references with ordinary links. Have a look at the manual section 4.2, Internal links. However,

Re: [O] Warning (initialization): Your `load-path' seems to contain your `.emacs.d' directory

2013-12-20 Thread Jambunathan K
Paul Harper harper.pau...@gmail.com writes: Warning (initialization): Your `load-path' seems to contain your `.emacs.d' directory: /home/username/.emacs.d/ This is likely to cause problems... Consider using a subdirectory instead, e.g.: /home/username/.emacs.d/lisp (I know nothing about

Re: [O] Reading calendars in org mode: what is the best solution?

2013-12-20 Thread Alan Schmitt
Michael Strey mst...@strey.biz writes: Hi Alan, alan.schm...@polytechnique.org writes: [...] I would like to have a read-only version of my calendars in my org agenda. These calendars (10 of them) currently live in Zimbra and iCould, and I am accessing them both using the native Calendar

[O] date next year

2013-12-20 Thread Rene
How can I set org-agenda-custom-commands so that I can get the tasks past a date in the coming year? Suppose I'm interested in things past next september. This (y Next year's appointments tags TIMESTAMP=\2014-09-01\) works alright as long as we are before that date

[O] [PATCH] Add ob-J.el

2013-12-20 Thread Oleh
Hi all, Here's a patch to add babel support for J. I couldn't figure out how to make ob-J.elc a target for make, maybe someone can fix this. regards, Oleh From 0139af8534dc33911ed1a24a9702a156ae46c99d Mon Sep 17 00:00:00 2001 From: Oleh Krehel ohwoeo...@gmail.com Date: Fri, 20 Dec 2013 14:43:59

[O] escaping org commands

2013-12-20 Thread Rustom Mody
How does one escape something in a text that is an org-command eg I wanted to write Something It vanished from the export because its a link-target!

[O] [bug] Partially disable interpretation of subscripts

2013-12-20 Thread Sebastien Vauban
Hello, In order to be able to write names such as CODE_STATUT without STATUT being written in subscript, I'm using the {} value for the ^ option. --8---cut here---start-8--- #+TITLE: ECM Subscript #+OPTIONS: ^:{} * Underscores in text x_i + x^2 + x^{2}

Re: [O] escaping org commands

2013-12-20 Thread Bastien
Hello, Rustom Mody rustompm...@gmail.com writes: How does one escape something in a text that is an org-command eg I wanted to write Something It vanished from the export because its a link-target! You can customize `org-activate-links' so that radio links are not activated -- not tested,

Re: [O] [PATCH] Add ob-J.el

2013-12-20 Thread Bastien
Hi Oleh, Oleh ohwoeo...@gmail.com writes: Here's a patch to add babel support for J. Thanks. Are you a FSF-signed contributor? We cannot include this in Org's core without your copyright assignment, let me know. I couldn't figure out how to make ob-J.elc a target for make, maybe someone

Re: [O] escaping org commands

2013-12-20 Thread Rustom Mody
On Fri, Dec 20, 2013 at 9:37 PM, Bastien b...@gnu.org wrote: Hello, Rustom Mody rustompm...@gmail.com writes: How does one escape something in a text that is an org-command eg I wanted to write Something It vanished from the export because its a link-target! You can customize

Re: [O] [PATCH] Add ob-J.el

2013-12-20 Thread Eric Schulte
Applied, Thanks! I've played with APL but never seriously, however I can see it being a perfect tool for manipulating Org-mode tables. If you have time to put some documentation up on Worg as a new [1] linked from [2] that'd be great. I added ob-J to the org-babel-load-languages customization

Re: [O] [PATCH] Add ob-J.el

2013-12-20 Thread Thomas S. Dye
Aloha Oleh, Oleh ohwoeo...@gmail.com writes: Hi all, Here's a patch to add babel support for J. I couldn't figure out how to make ob-J.elc a target for make, maybe someone can fix this. regards, Oleh Are you willing to draft documentation for ob-J.el? You can find a link for a

Re: [O] date next year

2013-12-20 Thread Samuel Wales
+1y? On 12/20/13, Rene jl...@yahoo.com wrote: How can I set org-agenda-custom-commands so that I can get the tasks past a date in the coming year? Suppose I'm interested in things past next september. This (y Next year's appointments tags TIMESTAMP=\2014-09-01\)

Re: [O] Exporting Agenda

2013-12-20 Thread Johann Spies
On 19/12/2013 22:45, Nicolas Goaziou wrote: You may need to tweak `org-icalendar-use-scheduled' (for VEVENT) and `org-icalendar-include-todo' (for VTODO). Thanks. I have search a little bit on how to do this and found something that works for me. Regards Johann -- J.H. Spies - Tel. 021-982

[O] latex packages savetrees is persisting in my org-mode exporter

2013-12-20 Thread Christopher W. Ryan
I had been running Org mode version 7.9.3f, but I needed a feature only available in version 8, so I upgraded, by downloading from the Org website, and using comment characters in my .emacs file, like this: ;; Load org-mode ; (add-to-list 'load-path c:/Org/org-7.9.3f/lisp) ; (add-to-list

Re: [O] latex packages savetrees is persisting in my org-mode exporter

2013-12-20 Thread Nick Dokos
Christopher W. Ryan cr...@binghamton.edu writes: ... #+latex_header: \usepackage{savetrees} ... But now every time I export a different subtree of that same org file, a subtree that does not contain any mention of savetrees, to pdf, the savetrees package is still loaded and used. How do

Re: [O] publishuing in html5

2013-12-20 Thread Scott Randby
On 12/18/2013 05:04 AM, Catonano wrote: Nicolas, 2013/12/15 Nicolas Goaziou n.goaz...@gmail.com Hello, Catonano caton...@gmail.com writes: I made a temporary repository here https://github.com/humanitiesNerd/exploring-org-mode in case anyone wants to take a look In configuration.el

Re: [O] latex packages savetrees is persisting in my org-mode exporter

2013-12-20 Thread Christopher W. Ryan
Thanks! Very interesting. I would not have thought of that. Especially since the offending line of code appears in the org file after the subtree I am trying to export. Is there a better way to say #+latex_header: \usepackage{savetrees} in either org 7.9.3f or org 8.2.4? Like using

Re: [O] latex packages savetrees is persisting in my org-mode exporter

2013-12-20 Thread Nick Dokos
Christopher W. Ryan cr...@binghamton.edu writes: Nick Dokos wrote: Christopher W. Ryan cr...@binghamton.edu writes: ... #+latex_header: \usepackage{savetrees} ... But now every time I export a different subtree of that same org file, a subtree that does not contain any mention of

Re: [O] [bug] Partially disable interpretation of subscripts

2013-12-20 Thread Nicolas Goaziou
Hello, Sebastien Vauban sva-news-D0wtAvR13HarG/idocf...@public.gmane.org writes: In order to be able to write names such as CODE_STATUT without STATUT being written in subscript, I'm using the {} value for the ^ option. #+TITLE: ECM Subscript #+OPTIONS: ^:{} * Underscores in text

Re: [O] Reading calendars in org mode: what is the best solution?

2013-12-20 Thread Stephen Eglen
On Thu, Dec 19 2013, Alan Schmitt wrote: I would like to have a read-only version of my calendars in my org agenda. These calendars (10 of them) currently live in Zimbra and iCould, and I am accessing them both using the native Calendar application on OS X and on my (Android) phone. I've

Re: [O] Bug: HTML Export doesn't handle internal link with spaces [8.0.7 (8.0.7-6-g13cb28-elpa @ /home/jbalint/.emacs.d/elpa/org-20130812/)]

2013-12-20 Thread Nicolas Goaziou
Hello, Jess Balint jbal...@gmail.com writes: I've generated a link to a headline with `org-store-link' and `org-insert-link'. It's rendered into the Org file like so: [[*Headline%20with%Spaces][Headline with Spaces]] [...] The problem is in `org-export-resolve-fuzzy-link' which get's

Re: [O] ox-bibtex: Allow for missing bibtex style

2013-12-20 Thread Nicolas Goaziou
Hello, Julian Gehring julian.gehr...@gmail.com writes: Currently, it is required to specify a bibtex style when defining the bibliography: #+BIBLIOGRAPHY: bibfilebasename stylename optional-options Would it be reasonable to allow for a missing 'stylename'? Such that if 'stylename' is

[O] Force blank line above level 1 heading

2013-12-20 Thread Sebastian Fischmeister
Hi, Is there a way to always force a blank line above a level 1 heading. When I enter them manually, orgmode somethings things it belongs to the level 2 (or so) item above it and hides it. So it should look like this: * eeny ** meeny ** miny next line will get swallowed sometimes; also it

Re: [O] [PATCH] Table continuation strings

2013-12-20 Thread Yasushi SHOJI
Hi, At Wed, 30 Oct 2013 11:15:36 +0100, Nicolas Goaziou wrote: t...@tsdye.com (Thomas S. Dye) writes: Patch includes table continuation strings for several languages. Translations all from the internet. Caveat emptor. Applied. Thank you. + (ja :utf-8 前ページから続く) [...] +

Re: [O] Insert a heading in every sibling

2013-12-20 Thread Yasushi SHOJI
Hi, At Mon, 28 Oct 2013 06:13:21 +0500, Scot Becker wrote: I'm using org-mode to keep track of student grades. How can I easily add a bunch of identical headings at a certain level in my tree? Specifically,I have a L2 heading for each student, and I want to put a node (heading, with some

Re: [O] tricky odt export needs

2013-12-20 Thread Jambunathan K
I will respond to other items as I visit them. Meanwhile, I would like to add the following note for discussion. Christian Moe m...@christianmoe.com writes: When headings are not numbered in export (#+options: num:nil), current ODT export outputs a cross-reference with a descriptive text

Re: [O] Exporting Agenda

2013-12-20 Thread Bastien
Hi Johann, Johann Spies johann.sp...@gmail.com writes: On 19/12/2013 22:45, Nicolas Goaziou wrote: You may need to tweak `org-icalendar-use-scheduled' (for VEVENT) and `org-icalendar-include-todo' (for VTODO). Thanks. I have search a little bit on how to do this and found something that