[O] [patch] Problems producing TikZ PNGs from LaTeX src blocks (was: Problems producing TikZ PNGs from LaTeX src blocks)

2018-09-29 Thread Benjamin Motz
:imagemagick t I've drafted a patch that fixes the issue. I would appreciate if some maintainer could have a look and comment, or apply the patch: >From a54f83d2b411ae58941c32cb23fd47f38e70dc80 Mon Sep 17 00:00:00 2001 From: Benjamin Motz Date: Fri, 28 Sep 2018 16:32:59 +0200 Subject: [PATCH 1

Re: [O] [PATCH 2/2] org-colview.el: Add property :exclude-tags to column view

2018-07-07 Thread Benjamin Motz
;From 751a7eefde76596ae64e57fefc772b11e275c8ea Mon Sep 17 00:00:00 2001 From: Benjamin Motz Date: Wed, 4 Jul 2018 14:27:24 +0200 Subject: [PATCH] org-colview.el: Add property :exclude-tags to column view table This addition allows to specify a list of tags to exclude from column view tables. TIN

[O] [PATCH 2/2] org-colview.el: Add property :exclude-tags to column view

2018-07-06 Thread Benjamin Motz
Hello, This addition allows to specify a list of tags to exclude from column view tables. >From 4ac32c4b24f33b841ad73c4b10158ec7a18087a9 Mon Sep 17 00:00:00 2001 From: Benjamin Motz Date: Wed, 4 Jul 2018 14:27:24 +0200 Subject: [PATCH 2/2] org-colview.el: Add property :exclude-tags to col

[O] [PATCH 1/2] org-colview.el: Add missing save-excursion for org-colview

2018-07-06 Thread Benjamin Motz
rom a0bed174852a6c7c6904f44bb649be45669f7b9f Mon Sep 17 00:00:00 2001 From: Benjamin Motz Date: Tue, 3 Jul 2018 19:36:21 +0200 Subject: [PATCH 1/2] org-colview.el: Add missing save-excursion for org-colview Without this fix, point will jump to beginning of buffer each time the column view is activated. TINYCHANGE --- l

[O] [patch] org-create-formula-image-with-dvipng (was: [bug] org-create-formula-image-with-dvipng fails to find temporary file)

2012-05-07 Thread Benjamin Motz
Hello, I have the same problem and resolved it with the appended patch. Apparently, the .out-files aren't created and therefore can't be deleted. The patch is checking for file-existence before trying to delete. Greetings, Benjamin diff --git a/lisp/org.el b/lisp/org.el index 16d2fe0..40fc646

[O] fill-paragraph: wrong behaviour after latex-environments

2012-05-03 Thread Benjamin Motz
Hi, invoking fill-paragraph on the following org-code will delete the newline after \end{equation}: The relation \begin{equation} E=mc^2 \end{equation} won't be further discussed here. This behaviour is undesirable because it makes the org-text less readable. Also, when adding '%' after

Re: [O] fill-paragraph: wrong behaviour after latex-environments

2012-05-03 Thread Benjamin Motz
a...@fastmail.fm (Albert Z. Wang) writes: [...] This sets several new paragraph boundary markers to prevent wrapping them into paragraphs: \begin{, \end{, and the unnumbered display equation shortcut \[, \]. Thank you, that did the trick! Shouldn't that be the default behaviour, i.e. should

[O] [PATCH] org-preview-latex-fragment not working with #+latex_header:\input{}

2012-04-20 Thread Benjamin Motz
Bug: #+latex_header:\input{commands.tex} is not considered in org-preview-latex-fragment. Reason: the fragment is generated in /tmp from where the file commands.tex can not be found. In my case, commands.tex contains essential latex-code for displaying the latex-fragment, so I consider this to be