On 13 September 2019, William Denton wrote:
It turns out I found the cause by accident! I've been using
./configure --with-imagemagick
to configure Emacs before compiling it. I tried it without that option, and
now the problem has gone away and images are displaying as they should.
Aha ..
On 11 September 2019, Nick Dokos wrote:
The usual method is to bisect your setup-orgmode.el file: comment out
the bottom half and if that makes it work, then you know that the
problem is in the part that you commented out. Recursively, bisect
further.
My problem report wasn't very good, I admi
William Denton writes:
> This problem started for me a little while ago: images generated from R
> source
> blocks no longer appear even though I have images display turned on.
>
> For example, this file:
>
> # -
>
> #+begin_src R :results graphics file :file /tmp/src.png
> x <- seq(-4, 4,
This problem started for me a little while ago: images generated from R source
blocks no longer appear even though I have images display turned on.
For example, this file:
# -
#+begin_src R :results graphics file :file /tmp/src.png
x <- seq(-4, 4, length=200)
y <- dnorm(x, mean=0, sd=1)
pl