Re: [O] org-end-of-line

2012-10-16 Thread Nicolas Goaziou
Hello, "Sebastien Vauban" writes: > When pressing `C-e' to go to the last char of a looong sentence, such as: > > azroiu zrouz eruzepr ozeioru zoepru > zoeruozieuriozerusdjflsdfjsdksjfsdfs df sdjf sdf sdsd fklsdjf sdj > sdjlksdjf sqfjsdjf sdfklsjdjsdsdjlkmskfjsldkjfsdjfoizeoi xcsdf zerfze > ze

[O] latex export: document fails to compile

2012-10-16 Thread asdfsadfmcxdfsa
create a new empty org-mode file containing this text * test $\text{asdf}$ export to latex, build pdf from tex error ERROR: Undefined control sequence. --- TeX said --- \text l.38 $\text {asdf}$ --- HELP --- TeX encountered an unknown command name. You proba

Re: [O] org-export-expand-include-keyword doesn't handle inline tasks well

2012-10-16 Thread Myles English
Nicolas Goaziou writes: > Hello, > > "Myles English" writes: > >> When a tree includes another file tree by using the #+INCLUDE keyword, >> the imported headlines are demoted by appending an appropriate number >> of asterisks. The problem is when an inline task is included, the >> number of

Re: [O] nbsp and /italics/

2012-10-16 Thread Rasmus Pank Roulund
Rasmus writes: > Can anyone think of a clever regexp that recognizes the above pattern? > I tried, "\\.[ ]\{1\}" but it didn't work. And without the \{1\} it's > too strong. . . Here's one that seems to work in the primitive cases, but not when there's a link. Tested on test of tilde.

Re: [O] [new exporter] latex: why does {{}} become \{\{\}\} ?

2012-10-16 Thread Sebastien Vauban
Hello Nicolas, Nicolas Goaziou wrote: > "Myles English" writes: > >> Can anyone tell me please why (in the examples below) {} exports fine >> but {{}} exports as \{\{\}\} ? Am I meant to wrap these in >> #+begin_latex blocks? > > You're writing LaTeX code in an Org buffer. This is only possible

Re: [O] [new exporter] latex: why does {{}} become \{\{\}\} ?

2012-10-16 Thread Myles English
Nicolas Goaziou writes: > You're writing LaTeX code in an Org buffer. This is only possible to > a limited extent. In particular, these lines should indeed go within > a LaTeX block. Otherwise, they will be protected to appear as-is in the > output. Thanks, just confirming that was helpful, me a

Re: [O] Bug: Org column view, property edit bug [7.8.11]

2012-10-16 Thread Nicolas Goaziou
Hello, Teemu Likonen writes: > 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 li

Re: [O] nbsp and /italics/

2012-10-16 Thread Rasmus
t...@tsdye.com (Thomas S. Dye) writes: > #+name: ngz-nbsp > #+begin_src emacs-lisp > (defun ngz-latex-filter-nobreaks (text backend info) > "Ensure \"_\" are properly handled in Beamer/LaTeX export." > (when (memq backend '(e-beamer e-latex)) > (replace-regexp-in-string " " "~" text))) > (

Re: [O] org-export-expand-include-keyword doesn't handle inline tasks well

2012-10-16 Thread Nicolas Goaziou
Hello, "Myles English" writes: > When a tree includes another file tree by using the #+INCLUDE keyword, > the imported headlines are demoted by appending an appropriate number > of asterisks. The problem is when an inline task is included, the > number of asterisks seems to make it unrecogn

Re: [O] [new exporter] latex: why does {{}} become \{\{\}\} ?

2012-10-16 Thread Nicolas Goaziou
Hello, "Myles English" writes: > Can anyone tell me please why (in the examples below) {} exports fine > but {{}} exports as \{\{\}\} ? Am I meant to wrap these in > #+begin_latex blocks? You're writing LaTeX code in an Org buffer. This is only possible to a limited extent. In particular, thes

Re: [O] Publishing one org-file as many html files

2012-10-16 Thread Vincent Beffara
Hi, This looks very promising! Quite a bit more sophisticated than what I had in mind though, and it is not immediately clear how to customize it, but I will look into it. Thanks for the link ! /v -- Vincent Beffara On Tuesday, October 16, 2012 at 18:35 , Christopher Witte wrote: > o-blo

Re: [O] BIBINPUT in .bashrc not recognized by Emacs

2012-10-16 Thread Suvayu Ali
Hello Sanjib, Since Myles has already answered your question to some extent, I would like to take the liberty to point out that your current issue is off-topic on this list. I would advise you try to ask this on the Ubuntu list (since you use Ubuntu), or post on (a dedicated bash help list). Ap

Re: [O] Publishing one org-file as many html files

2012-10-16 Thread Christopher Witte
o-blog should be able to do that, see: http://renard.github.com/o-blog/tips/2012/01/07_creating-a-blog.html On 16 October 2012 18:23, Vincent Beffara wrote: > Dear list, > > Is there a way to publish a huge org file, typically containing a single > date-tree, into one html file per day / per lea

[O] publish one org-file as many html files

2012-10-16 Thread Vincent Beffara
Dear list, Is there a way to publish a huge org file, typically containing a single date-tree, into one html file per day / per leaf of the tree ? That would be a neat tool to blog using org-mode (org-capture a post into the tree, export, you're done). Cheers, /vincent -- Vincent Beffara

[O] Publishing one org-file as many html files

2012-10-16 Thread Vincent Beffara
Dear list, Is there a way to publish a huge org file, typically containing a single date-tree, into one html file per day / per leaf of the tree ? That would be a neat tool to blog using org-mode (org-capture a post into the tree, export, you're done). Cheers, /vincent -- Vincent Beffara

Re: [O] new exporter: too many blank lines in .org results in missing images from src blocks

2012-10-16 Thread Robert Klein
Hello, On 10/15/2012 10:35 PM, Nicolas Goaziou wrote: > Hello, > > Robert Klein writes: > >> The export of the file below doesn't always include the image in the >> export (that is, no image, not even a missing image). >> >> When there is only one blank line after #+end_src, the image in >> inc

[O] [new exporter] latex: why does {{}} become \{\{\}\} ?

2012-10-16 Thread Myles English
Hi, Org-mode version 7.9.2 (release_7.9.2-441-gf287ab @ /home/myles/.emacs.d/plugins/org-mode/lisp/) Can anyone tell me please why (in the examples below) {} exports fine but {{}} exports as \{\{\}\} ? Am I meant to wrap these in #+begin_latex blocks? In my .org file: \tikzset{help lines/.st

[O] org-export-expand-include-keyword doesn't handle inline tasks well

2012-10-16 Thread Myles English
Hi, When a tree includes another file tree by using the #+INCLUDE keyword, the imported headlines are demoted by appending an appropriate number of asterisks. The problem is when an inline task is included, the number of asterisks seems to make it unrecognisable as an inline task. Can some

Re: [O] #+LATEX_CLASS: IEEEtran

2012-10-16 Thread Nick Dokos
Sanjib Sikder wrote: > Hi, Dokos, > > Thanks again. > > After incorporating those lines, I am getting following error. > > File error: Cannot open load file, org-e-latex > > If it is complex (as I am new in orgmode), then I will go for normal latex > instead of orgmode for > this particu

Re: [O] #+LATEX_CLASS: IEEEtran

2012-10-16 Thread Sanjib Sikder
Hi, Dokos, Thanks again. After incorporating those lines, I am getting following error. File error: Cannot open load file, org-e-latex > If it is complex (as I am new in orgmode), then I will go for normal latex instead of orgmode for this particular task as I have a template for IEEEtran but I

Re: [O] #+LATEX_CLASS: IEEEtran

2012-10-16 Thread Nick Dokos
Sanjib Sikder wrote: > Hi, > > I want to latex export my paper which has to use the document class IEEEtran > > With the following in the preamble > > #+LATEX_CLASS: IEEEtran > > I am getting following error > >  org-export-latex-set-initial-vars: No definition for class `IEEEtran' in > `or

[O] #+LATEX_CLASS: IEEEtran

2012-10-16 Thread Sanjib Sikder
Hi, I want to latex export my paper which has to use the document class IEEEtran With the following in the preamble #+LATEX_CLASS: IEEEtran I am getting following error org-export-latex-set-initial-vars: No definition for class `IEEEtran' in `org-export-latex-classes' Can anybody guide me pl

Re: [O] [BUG] [ODT] ODT export (old) fails with wrong-type-argument

2012-10-16 Thread Christian Moe
Backtrace attached. The previous message wouldn't go through as long as I included the backtrace in the message body. No idea why. Christian Debugger entered--Lisp error: (wrong-type-argument stringp (org-export-odt-preprocess-latex-fragments)) file-exists-p((org-export-odt-preprocess-latex-

[O] [BUG] [ODT] ODT export (old) fails with wrong-type-argument

2012-10-16 Thread Christian Moe
Hi, When I try to export to ODT (without invoking the new exporter or anything), I get: OpenDocument export failed: Wrong type argument: stringp, (org-export-odt-preprocess-latex-fragments) This also happens in a document with no latex fragments. I'm running Org-mode version 7.9.2 (release

Re: [O] [New exporter] Wrong export to LaTeX

2012-10-16 Thread Sebastien Vauban
Hi Nicolas, Nicolas Goaziou wrote: > "Sebastien Vauban" writes: >> Suvayu Ali wrote: However, I thought that LaTeX_CLASS had been renamed EXPORT_LaTeX_CLASS, but when using the latter, I get frames inside an `article' documentclass type of document -- while using `C-c E l O' (for Be