“org-preview-latex-fragment” emacs 组织模式下的命令
5这里是org-mode
下名为org-preview-latex-fragment
的命令。它的默认绑定键是Cc Cx Cl
。在组织手册中,它说这个命令可以预览内联乳胶片段。但使用后,除了空白帧之外什么也没有产生(我无法上传图像,抱歉)。
发生了什么?我在Ubuntu10.10上使用emacs23.1,org-mode版本是6.21b,并且我安装了dvipng版本1.13-1。
我尝试追踪代码,但迷路了。我该如何解决这个问题?
5here is a command named org-preview-latex-fragment
in org-mode
. its default binding key is C-c C-x C-l
. In the org manual, it says this command could preview a latex fragment inline. but after using it, nothing is produced but blank frames (I can't upload images, sorry).
What happened? I'm using emacs23.1 on Ubuntu10.10, the org-mode version is 6.21b, and I've installed dvipng version 1.13-1.
I tried trace the code, but got lost. How can I fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的调试方法是尝试编译为创建片段而创建的临时文件。它通常位于
/tmp
中,文件名中包含orgtex
。您可以在 Emacs 的*Messages*
缓冲区中找到确切的名称。The easiest way to debug is to try to compile the temporary file created to create the fragment. It is usually located in
/tmp
and containsorgtex
in the filename. You can find the exact name in Emacs's*Messages*
buffer.我通过更改程序将乳胶片段从
dvipng
转换为imagemagik
解决了该问题。我猜我的电脑上缺少某些东西。
更新:
来增加预览大小。
您可以通过执行更新 2
我在
imagemagick
上遇到了一些问题,看看并切换回 dvipng按照doc中的说明进行操作后。所以两者都正确工作。I resolve the problem by changing the program to convert latex fragment from
dvipng
toimagemagik
.I guess something is missing on my computer.
Update:
you can event increase the preview size by doing
Update 2
I had some problem with
imagemagick
Have a look at the and switch back to dvipng after following the instruction in the doc. So both work correclty.