Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们如何在 emacs 中插入图像?我知道:
(insert-image (create-image "image/path"))
并用C-x C-e. 我想我必须打开 iimage-mode 但它不起作用。这种方法有什么错误?还有哪些其他插入图像的方法?
C-x C-e
您需要使用图像的完整路径:
(insert-image (create-image "~/imagedir/...image..."))