Emacs 组织模式捕获模板

Emacs 组织模式捕获模板,emacs,org-mode,Emacs,Org Mode,我想知道如何使用组织模板中的注释%A %a Annotation, normally the link created with org-store-link. %A Like %a, but prompt for the description part. 我可以使用%A,但获得了以下内容: ** TODO To improve [[file:~/Documents/python/python/xml2csv.py::print%20elem

我想知道如何使用组织模板中的注释%A

 %a          Annotation, normally the link created with org-store-link.
 %A          Like %a, but prompt for the description part.
我可以使用%A,但获得了以下内容:

** TODO 
  To improve
  [[file:~/Documents/python/python/xml2csv.py::print%20elem.text,%20use.text][%^{Link description}]]
因此,我得到一个链接描述作为提示,但我不知道如何修改提示。链接描述。我想知道什么应该提示描述部分

相比之下,常规提示指定提示用户


您可以使用以下内容:

("r" "Meeting Schedule" entry 
      (file+headline "~/org/your-file.org" "HEADING") 
      "* TODO Meeting - %? 
       %i
       Room: %^{Place}
       Subject of the Meeting: %^{Subject}
       Who will Atend: %^{Atendees}

 %a ")
我混合了很多用法,但是如果你想要一些字符串来提示你,你可以像%^{Place}A一样使用它,它会提示你输入位置,并使用注释规则


干杯,

谢谢您的回复。实际上,我想要一个与%a/关联的链接的提示。A%做我想做的工作。
("r" "Meeting Schedule" entry 
      (file+headline "~/org/your-file.org" "HEADING") 
      "* TODO Meeting - %? 
       %i
       Room: %^{Place}
       Subject of the Meeting: %^{Subject}
       Who will Atend: %^{Atendees}

 %a ")