Re: [O] Bug: Documentation of the html-export of links across files [8.2.10 (release_8.2.10 @ /usr/share/emacs/24.5/lisp/org/)]

2016-03-12 Thread Nicolas Goaziou
Nicolas Goaziou writes: > Unfortunately, this feature is very experimental, and actually quite > buggy. It's not ready for prime time, and therefore not documented. Actually, references across files should work out the box now. I added documentation in (info "(org)

Re: [O] export to markdown: a simpler version which is more suited for github etc

2016-03-12 Thread Nicolas Goaziou
Hello, Uwe Brauer writes: > I attach 3 files a original README-bitbucket.md from a bitbucket repo. I > converted it to org (via pandoc) README.org and then back using the > internal org converter to md, the result README.md is more complicated. > So the question is simply this

Re: [O] using vref in latex export, and normal links in html export

2016-03-12 Thread John Kitchin
I guess these are defined in backends, e.g. org-latex-link. Alan Schmitt writes: > On 2016-03-11 16:05, Alan Schmitt writes: > >> On 2016-03-11 15:02, John Kitchin writes: >> >>> Try: >>> >>> (setq org-latex-prefer-user-labels t) >>> >>>

Re: [O] using vref in latex export, and normal links in html export

2016-03-12 Thread John Kitchin
you could also try redefining the export of a ref link like this. #+BEGIN_SRC emacs-lisp (setf (elt (assoc "ref" org-link-protocols) 2) (lambda (keyword desc format) (cond ((eq format 'latex) "\\vref{keyword}") ((eq format 'html) (format

Re: [O] Bug: ox-html.el does not indicate enough languages [8.2.10 (release_8.2.10 @ c:/Users/txiong/emacs-24.5/share/emacs/24.5/lisp/org/)]

2016-03-12 Thread Robert Klein
Hi, thanks for the report. I already began looking into this after my answer on stackexchange. I'll try to make a patch in the next couple of days. I want to run some tests before submitting a patch. You can expect a patch around Tuesday/Wednesday. Best regards Robert Tianxiang Xiong

Re: [O] Exporting math code containing a cases environment to LaTeX

2016-03-12 Thread Francesco Turco
On Sat, Mar 12, 2016, at 19:16, Eric S Fraga wrote: > Alternatively, you can enclose it all in a export block, as in > > #+begin_export latex > \[ > ... > \] > #+end_export The following code doesn't work: #+begin_export latex \[ n!= \begin{cases} 1 & n=0 \\ n(n-1)! & n\ge 1 \\ \end{cases}

[O] export to markdown: a simpler version which is more suited for github etc

2016-03-12 Thread Uwe Brauer
Hello I attach 3 files a original README-bitbucket.md from a bitbucket repo. I converted it to org (via pandoc) README.org and then back using the internal org converter to md, the result README.md is more complicated. So the question is simply this could the converter be configured to use a

Re: [O] Exporting math code containing a cases environment to LaTeX

2016-03-12 Thread Eric S Fraga
On Saturday, 12 Mar 2016 at 18:49, Francesco Turco wrote: > I can fix the problem by replacing \[ and \] with \begin{displaymath} > end \end{displaymath} respectively: > > \begin{displaymath} > n!= > \begin{cases} > 1 & n=0 \\ > n(n-1)! & n\ge 1 \\ > \end{cases} >

[O] Exporting math code containing a cases environment to LaTeX

2016-03-12 Thread Francesco Turco
Why the following piece of Org Mode document doesn't display correctly when exported to a PDF document via LaTeX? \[n!= \begin{cases} 1 & n=0 \\ n(n-1)! & n\ge 1 \\ \end{cases} \] It is displayed at the left instead of center of the document. Moreover the \[ and \] symbols are

Re: [O] Probable typo in the manual for org-timer-pause-or-continue key binding

2016-03-12 Thread Kyle Meyer
Tubo Shi writes: > Hi, > > In the current manual, it described the keybinding for both > "org-timer-pause-or-continue" and "org-toggle-pretty-entities" to be "C-c > C-x \". > > However, since release_8.3.4 the correct keybinding for > "org-timer-pause-or-continue" is "C-c C-x

Re: [O] org-passwords.el and encryption

2016-03-12 Thread Eric S Fraga
On Saturday, 12 Mar 2016 at 11:50, Julien Cubizolles wrote: > I've recently started using org-passwords.el. I'm using symmetric > encryption for the gpg file where the passwords are stored. I've seen > mention of several ways to avoid typing the passphrase over and over in > one session: using

[O] org-passwords.el and encryption

2016-03-12 Thread Julien Cubizolles
I've recently started using org-passwords.el. I'm using symmetric encryption for the gpg file where the passwords are stored. I've seen mention of several ways to avoid typing the passphrase over and over in one session: using gpg-agent or not... What would you recommend ? Wilk.

Re: [O] commit 7b9f2fba66

2016-03-12 Thread Rafael Laboissiere
* Achim Gratz [2016-01-26 18:11]: Getting the copyright assigned would be good since if you've had some previous changes (not the two commits you did yourself), then quite likely you've already exhausted your TINYCHANGE budget. The papers have been signed with the Free

Re: [O] [PATCH] call_*() is not working inside #+DATE

2016-03-12 Thread Rafael Laboissiere
* Eric S Fraga [2016-03-12 08:51]: On Saturday, 12 Mar 2016 at 08:57, Rafael Laboissiere wrote: P.S.: For those who are reading this message and are interested in a solution for my original problem, here is the way I am getting around it right now. Thanks for this

Re: [O] [PATCH] call_*() is not working inside #+DATE

2016-03-12 Thread Eric S Fraga
On Saturday, 12 Mar 2016 at 08:57, Rafael Laboissiere wrote: > P.S.: For those who are reading this message and are interested in a > solution for my original problem, here is the way I am getting around it > right now. Thanks for this alternate solution. -- : Eric S Fraga (0xFFFCF67D), Emacs

Re: [O] using vref in latex export, and normal links in html export

2016-03-12 Thread Stefan Nobis
Alan Schmitt writes: > I'm converting a latex document into org-mode to easily export it both > to latex and html. I've just encountered something that I don't know how > to do: export a \vref reference. I would like to have something that > exports to \vref in

[O] Probable typo in the manual for org-timer-pause-or-continue key binding

2016-03-12 Thread Tubo Shi
Hi, In the current manual, it described the keybinding for both "org-timer-pause-or-continue" and "org-toggle-pretty-entities" to be "C-c C-x \". However, since release_8.3.4 the correct keybinding for "org-timer-pause-or-continue" is "C-c C-x ,". Thanks Tubo Shi