From: https://profiles.google.com/lumeng.dev Date: Mon, 23 May 2011 00:42:33 +0000 (+0000) Subject: (no commit message) X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=627e8e2b21f7034028d3ecc9c9cba668e954455a;p=ikiwiki.git --- diff --git a/doc/forum/teximg_not_working.mdwn b/doc/forum/teximg_not_working.mdwn new file mode 100644 index 000000000..0c0eff16a --- /dev/null +++ b/doc/forum/teximg_not_working.mdwn @@ -0,0 +1,26 @@ +I following installation and configuration instructions at `http://ikiwiki.info/plugins/teximg/` + +But I get + + [[!teximg Error: missing tex code]] + +for code + + [[!teximg $$\sin (x)$$]] + +On server I do have `texlive`, `dvips`, `convert` installed ready. My configuration looks like + + # teximg_dvipng => 1, # use dvipng + teximg_dvipng => 0, # use dvips and convert + # LaTeX prefix for teximg plugin + teximg_prefix => '\\documentclass{article} + \\usepackage{amsmath} + \\usepackage{amsfonts} + \\usepackage{amssymb} + \\pagestyle{empty} + \\begin{document} + ', + # LaTeX postfix for teximg plugin + teximg_postfix => '\\end{document}', + +Any ideas why it's not working?