Re: [O] Remove notes blocks from latex export

2016-01-03 Thread Joon Ro
> A simple derived exporter? Or (on the LaTeX side) the comment package? > Thank you. I managed to achieve this with the following code: (defun my/latex-remove-NOTES-blocks (text backend info) "Filter special blocks from latex export." (when (eq backend 'latex) (if (string/starts-with tex

Re: [O] Remove notes blocks from latex export

2016-01-02 Thread Marcin Borkowski
On 2016-01-01, at 21:32, Joon Ro wrote: > Hi, > org-reveal uses notes blocks (#+BEGIN_NOTES) for speaker notes, and I want to > remove those blocks when I export those slides to latex for handouts.For src > blocks it can be done easily with org-export-filter-src-block-functions - is > there

[O] Remove notes blocks from latex export

2016-01-01 Thread Joon Ro
Hi, org-reveal uses notes blocks (#+BEGIN_NOTES) for speaker notes, and I want to remove those blocks when I export those slides to latex for handouts.For src blocks it can be done easily with org-export-filter-src-block-functions - is there any way to do this with generic blocks? Thank you and