Error : Mimetex cannot convert this formula
Mimetex cannot convert this formulaはWordPressでLaTexを用いるPlugin:wp-latexrenderを使用しPluginが適切に動作していない時に表示されるエラー。
http://sixthform.info/steve/wordpress/のコメント欄には以下のように記載されている。
Steve, i’m using the latest nightly build of 1.5 and installed your plugin for use with mimetex. However, even though mimetex works fine, I’m getting this message when I try to use it in a post:
[Mimetex cannot convert this formula]Can you help me?
上記に対する返答
If mimetex is working OK on your system then:
1. are you sure you have the paths correct in mimetex.php?
2. is /pictures chmodded to 777?
3. it could be that PHP had been locked down preventing it using some commands. In mimetex.php change the line
$system_disabled=0;
to
$system_disabled=1;
which calls mimetex in a different way and see if that works
とあるので、、、
1.パスが間違っていないか?
2.pictureフォルダにパーミッション777は付与されているか?
3.mimetex.phpの$system_disabled=0;を$system_disabled=1;に変更してみては?
というのが主な解決方法となる。