Re: [O] pdf images in html export

2014-11-13 Thread Instructor account
I think the best thing to do here is create a derived backend. Filters could work to, but you will have to parse the img link, get the pdf file, convert it and replace the path in the link. with a derived backend you can get that a little more directly like this. This code block works on a

Re: [O] auto hiding src blocks upon toggling headers

2014-10-08 Thread Instructor account
Adriaan Sticker adriaan.stic...@gmail.com writes: This is not perfect but it seems close: #+BEGIN_SRC emacs-lisp (defun my-hide (state) (message %s state) (if (or (eq state 'children) (eq state 'subtree)) (save-restriction (org-narrow-to-subtree)

Re: [O] odd/unexpected behavior with Python src blocks

2014-09-29 Thread Instructor account
Indeed, this passes by org-babel because stderr is not captured, and scipy does what you suggest. I guess this happens inside compiled c/Fortran code since there is nothing catching it in the odeint python function doing that. Thanks, I will try to bring it up on the scipy list. Aaron Ecay