Inline images in org-mode [closed]

江枫思渺然 提交于 2019-12-03 05:40:34

问题


I want to insert inline image in my org file in emacs. I am completely new to emacs and org-mode. I searched in google but could not find immediate solution. If anyone knows how to display inline images in the same buffer in org-mode emacs, please share.


回答1:


if you add [[myimage.png]], org mode will use the file myimage.png as an inline image for myimage.png. You can then run M-x org-display-inline-images to display your inline image.

adding

(setq org-startup-with-inline-images t)

to your .emacs will make image inlined on opening a org buffer. M-x org-redisplay-inline-images will refresh inlined image if needed.

You could also add

#+STARTUP: inlineimages

to an org file for inlining images only in this file.




回答2:


You can use org-download to drag images from the web browser or your file system straight to an org-mode buffer.



来源:https://stackoverflow.com/questions/27129338/inline-images-in-org-mode

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!