Re: [O] Exporting to multiple files

2014-03-09 Thread Marcin Borkowski
Dnia 2014-03-09, o godz. 02:34:09 Marcin Borkowski mb...@wmi.amu.edu.pl napisaƂ(a): Hi all, I'd like to export an Org-mode file to /multiple/ HTML files. For instance, I might want to convert all first and second level headings to files, and third-level headings to h1, fourth-level ones to

[O] can org-mode file export to markdown file

2014-03-09 Thread jenenliu
Can I write a org file and then export it as a markdown file ? -- A lazy Emacser

Re: [O] can org-mode file export to markdown file

2014-03-09 Thread Daimrod
jenenliu jenen...@gmail.com writes: Hello, Can I write a org file and then export it as a markdown file ? Sure, just load the library `ox-md' then you can export to a markdown file with C-c C-e m m -- Daimrod/Greg

Re: [O] LaTeX export TOC decorations : how to

2014-03-09 Thread FAb
On 03/08/2014 04:24 PM, Nick Dokos wrote: FAb 0x...@free.fr writes: Hi, When I org-export in pdf the items in TOC have red box around them like decoration for link in css. How can I get ride of them ? Or how to customize this stuff ? Assuming you are going to PDF through latex, this is done

Re: [O] can org-mode file export to markdown file

2014-03-09 Thread jenenliu
Thanks :) Daimrod daim...@gmail.com writes: jenenliu jenen...@gmail.com writes: Hello, Can I write a org file and then export it as a markdown file ? Sure, just load the library `ox-md' then you can export to a markdown file with C-c C-e m m -- A lazy Emacser

Re: [O] LaTeX export TOC decorations : how to

2014-03-09 Thread Nick Dokos
FAb 0x...@free.fr writes: On 03/08/2014 04:24 PM, Nick Dokos wrote: When I use that \hypersetup in #+LATEX_HEADER the job is perfectly done. But I don't find the org-latex-hyperref-template and if I delcare it in my .emacs, nothing changes. Are you sure about this name ? That's the name

Re: [O] Get to next NEXT headline with one key

2014-03-09 Thread Oleh
And commands work from start of #+... as well. Like this one. Note that you have to use f to get to the first #+ that belongs to a heading. Here's how I've implemented the functionality that you want: j/k are bound move down/up just like in vim, but they move by headings or #+ markers.

[O] Finer-grained control of published files

2014-03-09 Thread Brett Viren
Hi, I'm trying to set up org-publish and am looking for more fine-grained control over what files get published than what (I think) I can get from configuring org-publish-project-alist. I've played with the publishing-function of org-publish-attachment and :exclude/:include and :base-extension

[O] Org-Mode setup documentation

2014-03-09 Thread David Masterson
I am not a user of org-mode yet, but it looks very interesting. I have been able to get it setup with org-toodledo so that I can pull in my task list from Toodledo. I'm working on understanding how to get org-mode to work with MobileOrg. There's a lot I'd like to go further with, but the

Re: [O] LaTeX export TOC decorations : how to

2014-03-09 Thread FAb
On 03/09/2014 12:51 PM, Nick Dokos wrote: FAb 0x...@free.fr writes: On 03/08/2014 04:24 PM, Nick Dokos wrote: When I use that \hypersetup in #+LATEX_HEADER the job is perfectly done. But I don't find the org-latex-hyperref-template and if I delcare it in my .emacs, nothing changes. Are you

Re: [O] LaTeX export TOC decorations : how to

2014-03-09 Thread Nick Dokos
FAb 0x...@free.fr writes: On 03/09/2014 12:51 PM, Nick Dokos wrote: FAb 0x...@free.fr writes: On 03/08/2014 04:24 PM, Nick Dokos wrote: When I use that \hypersetup in #+LATEX_HEADER the job is perfectly done. But I don't find the org-latex-hyperref-template and if I delcare it in my

Re: [O] Org-Mode setup documentation

2014-03-09 Thread Nick Dokos
David Masterson dsmaster...@gmail.com writes: I am not a user of org-mode yet, but it looks very interesting. I have been able to get it setup with org-toodledo so that I can pull in my task list from Toodledo. I'm working on understanding how to get org-mode to work with MobileOrg.

[O] analog of org-element-at-point for objects?

2014-03-09 Thread John Kitchin
Is there an easy way to to get the object at point? I found org-element-at-point, but what I need is to determine if point is on a link of a particular type, and links appear to be objects rather than elements. an alternative solution for me would be how do you move point to the beginning of a

Re: [O] analog of org-element-at-point for objects?

2014-03-09 Thread Daimrod
John Kitchin jkitc...@andrew.cmu.edu writes: Hi John, Is there an easy way to to get the object at point? I found org-element-at-point, but what I need is to determine if point is on a link of a particular type, and links appear to be objects rather than elements. I think that

Re: [O] analog of org-element-at-point for objects?

2014-03-09 Thread John Kitchin
Thanks! That does seem to do what I want. John --- John Kitchin Associate Professor Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213 412-268-7803 http://kitchingroup.cheme.cmu.edu On Sun, Mar 9, 2014 at 9:26

Re: [O] feature request: agenda time stamp manipulation

2014-03-09 Thread Tory S. Anderson
I've written the following code/function which seems to fulfill my needs in the agenda to be able to manipulate plain time stamps in the same way we can manipulate deadlines and schedules, so that entries added with i can then be customized to a particular hour, or be otherwise altered.

Re: [O] [bug] [babel] babel corrupts undo history

2014-03-09 Thread Samuel Wales
as far as i know, my assessment below is correct, but i cannot confirm. i believe that if undo-related code is ripped out of babel, then undo will work correctly in the source buffer and in the edit buffer. i am not clear on what the purpose of changing undo behavior is? On 10/28/13, Samuel

[O] Strange newline characters in org-export-as-html

2014-03-09 Thread Grant Rettke
Hi, Org version 7.9.3f with Emacs version 24. Running org-export-as-html. Have these options: #+TITLE: Creation and conservation of computer files (C3F) #+AUTHOR: Grant Rettke #+EMAIL: g...@wisdomandwonder.com #+DESCRIPTION: A literate programming style exposition of my Emacs configuration

Re: [O] Strange newline characters in org-export-as-html

2014-03-09 Thread Grant Rettke
This is the simplest example: #+BEGIN_SRC emacs-lisp (message Hello, world.) #+END_SRC On Sun, Mar 9, 2014 at 11:09 PM, Grant Rettke g...@wisdomandwonder.com wrote: Hi, Org version 7.9.3f with Emacs version 24. Running org-export-as-html. Have these options: #+TITLE: Creation and

[O] Using sideways table with :placement in Org 8.0?

2014-03-09 Thread John Hendy
I was just playing around with the new syntax for accessing sidewaystable in Org 8.0, but it doesn't seem to be working. The manual /seems/ pretty straightforward: - http://orgmode.org/manual/LaTeX-specific-attributes.html :placement Float environment for the table. Possible values are

Re: [O] Strange newline characters in org-export-as-html

2014-03-09 Thread Nick Dokos
Grant Rettke g...@wisdomandwonder.com writes: This is the simplest example: #+BEGIN_SRC emacs-lisp (message Hello, world.) #+END_SRC This gives me: pre class=src src-emacs-lisp(message span style=color: #ffa07a;Hello, world./span) /pre so it's probably some setting of yours. Try with

Re: [O] Using sideways table with :placement in Org 8.0?

2014-03-09 Thread Nick Dokos
John Hendy jw.he...@gmail.com writes: I was just playing around with the new syntax for accessing sidewaystable in Org 8.0, but it doesn't seem to be working. The manual /seems/ pretty straightforward: - http://orgmode.org/manual/LaTeX-specific-attributes.html :placement Float environment

[O] Bug: Failure to Tangle Source Block without Header [8.2.5h (8.2.5h-30-gdd810b-elpa @ /Users/sean/Dropbox/.emacs.d/elpa/org-20140303/)]

2014-03-09 Thread Sean Allred
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.