Re: [O] HTML presentations using org-html-slideshow?

2017-03-08 Thread Julian M. Burgos
Thanks for the head up. I will check it out. Peter Salazar writes: > If anyone's interested, there's a new working version of > org-html-slideshow that's compatible with org-mode 9.x available here: > https://github.com/aiba/org-html-slideshow. > > On Mon, Mar 6, 2017 at 10:04 AM, Peter Salazar

Re: [O] HTML presentations using org-html-slideshow?

2017-03-08 Thread Fabrice Popineau
If only it were written in emacs-lisp, it would have been much easier to adapt to newer releases of Org. Fabrice

Re: [O] Bug: org-export-as

2017-03-08 Thread drymer
Hi, Thanks for your time. Could you please retry and evaluate this: , | (defun test-org-export () | (interactive) | (save-excursion | (org-mark-element) | (forward-line) ;; donot export title | (setq b (region-beginning)) | (setq e (region-end))) | (message (org-export-

Re: [O] ob-shell: using a table variable with bash

2017-03-08 Thread Nicolas Goaziou
Hello, "George Kettleborough (EI)" writes: > I recently updated my org-mode from version 7 (I think) to the latest. > The behaviour of using a table as a variable in a shell code source > block has changed. I use to use it like this: > > #+BEGIN_SRC sh :results output :var table=synteny-names

Re: [O] publishing files with images to latex

2017-03-08 Thread Nicolas Goaziou
Hello, Robert Klein writes: > when I publish a project to PDF org-mode does not include the images in > the exported PDF (i.e. LaTeX doesn't find them), when I start the > publishing process from a buffer which is /not/ in the directory to be > published. > > > E.e. when I have the org files in

Re: [O] Bug: org-export-as

2017-03-08 Thread Nicolas Goaziou
Hello, drymer writes: > Hi, > > Thanks for your time. Could you please retry and evaluate this: > > , > | (defun test-org-export () > | (interactive) > | (save-excursion > | (org-mark-element) > | (forward-line) ;; donot export title > | (setq b (region-beginning)) > | (s

Re: [O] jumping from Agenda/Timeline to .org source file

2017-03-08 Thread Nicolas Goaziou
Hello, Alan Schmitt writes: > Hello, > > On 2017-03-01 13:28, use...@internet.lu writes: > >> When I jump from the Agenda-Timeline view to the source .org file, >> either with TAB, SPACE or by using the follow mode, Emacs will >> position me exactly *below* the source line in the org file (where

[O] How to call a source code block from another one

2017-03-08 Thread Marcin Borkowski
Hi all, and sorry if this is trivial, but I didn't find it in the manual. Assume that I have a few source code blocks (in my case, in bash) and I want to call them in sequence. Is it possible to write another, "master" source code block which would then call those previous blocks? Best, -- Mar

Re: [O] limitation for macro expansion

2017-03-08 Thread Nicolas Goaziou
Hello, Yasushi SHOJI writes: > Are you saying that it's possible to generate "a_20170307.txt" from > "a_{{{timestamp}}}.txt" if I set those variables mentioned above > correctly? without using '\under'? Not at all. Sorry about the confusion. The mentioned variables allow writing, e.g., a_b wit

Re: [O] Bug: org-export-as

2017-03-08 Thread drymer
Ah, I see, you're wright. I believe I can fix the problem, but I still don't understand why it behaves differently on that two versions. Anyway, thank you very much. On Wed, Mar 08, 2017 at 11:58:57AM +0100, Nicolas Goaziou wrote: Hello, drymer writes: Hi, Thanks for your time. Could you

Re: [O] How to call a source code block from another one

2017-03-08 Thread Rasmus
Marcin Borkowski writes: > Hi all, > > and sorry if this is trivial, but I didn't find it in the manual. > > Assume that I have a few source code blocks (in my case, in bash) and > I want to call them in sequence. Is it possible to write another, > "master" source code block which would then cal

Re: [O] jumping from Agenda/Timeline to .org source file

2017-03-08 Thread Alan Schmitt
On 2017-03-08 12:02, Nicolas Goaziou writes: > Hello, > > Alan Schmitt writes: > >> Hello, >> >> On 2017-03-01 13:28, use...@internet.lu writes: >> >>> When I jump from the Agenda-Timeline view to the source .org file, >>> either with TAB, SPACE or by using the follow mode, Emacs will >>> positi

Re: [O] How to call a source code block from another one

2017-03-08 Thread Eric S Fraga
On Wednesday, 8 Mar 2017 at 11:20, Marcin Borkowski wrote: > Hi all, > > and sorry if this is trivial, but I didn't find it in the manual. > > Assume that I have a few source code blocks (in my case, in bash) and > I want to call them in sequence. Is it possible to write another, > "master" sourc

Re: [O] HTML presentations using org-html-slideshow?

2017-03-08 Thread Peter Salazar
Excellent. Let me know what you think! On Wed, Mar 8, 2017 at 3:52 AM, Julian M. Burgos wrote: > Thanks for the head up. I will check it out. > > Peter Salazar writes: > > > If anyone's interested, there's a new working version of > > org-html-slideshow that's compatible with org-mode 9.x avail

Re: [O] jumping from Agenda/Timeline to .org source file

2017-03-08 Thread Samuel Wales
tangentially, jumping to org from agenda almost always or always puts a pointless ellipsis at the top of the window for me. in case it's relevant to tangential changes. -- The Kafka Pandemic: The disease DOES progress. MANY people have died from it. And AN

Re: [O] ob-shell: using a table variable with bash

2017-03-08 Thread George Kettleborough
On 08/03/17 08:24, Nicolas Goaziou wrote: I have no objection to this patch, but I think it needs to be documented, if only as a code comment. IIRC, there is also some documentation about "ob-shell" on Worg. It would be nice to document this feature. I can't actually find any documentation for

[O] How to stop org delete surrounding newline when adding headlines?

2017-03-08 Thread Shiyao Ma
Hi, I don't want org to automatically insert newline when adding headlines, so I set this: org-blank-before-new-entry '((heading . nil) (plain-list-item . nil)) But turns out, org *aggressively* delete the existing newlines when I press ctrl-return. How to tell org simply not to add newline wh