gpt4 book ai didi

emacs - 将图像插入组织模式的函数

转载 作者:行者123 更新时间:2023-12-02 21:40:48 25 4
gpt4 key购买 nike

是否有一个我可以调用的函数,可以自动将图像以此格式插入到组织模式缓冲区中

#+CAPTION: Foo of the caption 
#+NAME: fig:SED-HR4049
[[/Users/peter/images/2013-11-22.jpg]]

提示我输入图像的标题和 URL/路径?

最佳答案

org-mode 本身似乎没有内置的函数来执行此操作。

如果您想避免编写自定义 Elisp,您可以使用 yasnippet 并自定义 org-mode "figure" snippet类似

# -*- mode: snippet -*-
# name: figure
# key: fig
# --
#+CAPTION: ${1:caption}
#+LABEL: fig:${2:label}
[[${3:link}]]

或添加几个自定义"Easy Templates"org-struct-template-alist,例如

(setq org-structure-template-alist
(quote ((...) ; Default templates ...
(...) ; ...
("C" "#+CAPTION ?") ; Template for caption.
("P" "[[?]]") ; Template for image link.
; Could also replace "?" with "%file"
; which prompts for a file name
; BUT inserts double quotes around it
; that you would have to remove afterwards
)))

关于emacs - 将图像插入组织模式的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20487524/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com