I would try to debug this outside of Mnemosyne, as this really seems like a
latex issue.
Don't use Texworks (as this is not used by Mnemosyne), but rather from the
command line, try typing the following two command in the correct directory:
latex -interaction=nonstopmode tmp.tex
dvipng -D 200 -T tight tmp.dvi
These are exactly the same commands that Mnemosyne uses as well.
If these commands generate a correct png image, then it's a mnemosyne problem.
If these commands don't work, then it's a problem with your latex/chemfig
install, and you're better off asking on their mailing list for help.
Hope this helps,
Peter
--
Peter Bienstman
Ghent University, Dept. of Information Technology
Sint-Pietersnieuwstraat 41, B-9000 Gent, Belgium
tel: +32 9 264 34 46, fax: +32 9 264 35 93
WWW: http://photonics.intec.UGent.be
email: Peter.B...@UGent.be
First, you need to figure out how to invoke the programs from the command line.
Say e.g. the correct commands turn out to be
pdflatex tmp.tex
imagemagick tmp.pdf tmp tmp1.png
Then you edit config.py to read
latex = "pdflatex"
dvipng = "imagemagick tmp.pdf tmp tmp1.png"
Note that mnemosyne will automatically add tmp.tex to the latex command, and
expects the output of dvipng to be the file 'tmp1.png'.
Cheers,
Peter