有人可以给我一些帮助,以完全隐藏:PROPERTIES:抽屉,包括说明的线:PROPERTIES:.
* TASKS (with deadines)
** Next Action [#A] Ask the geniuses how to do this. :lawlist:
DEADLINE: <2013-07-04 Thu >
:PROPERTIES:
:ToodledoID: 330686790
:ToodledoFolder: TASKS
:Hash: afa88f17317bbe2ce0ce661333cdcfb4
:END:
This line is for notes, which appears underneath the properties drawer.
* UNDATED (without deadlines)
** Someday [#A] Close but no cigar -- keep trying. :lawlist:
:PROPERTIES:
:ToodledoID: 330686680
:ToodledoFolder: TASKS
:Hash: eb0b8d360b5b1453dd66ed0c5698e135
:END:
This line is for notes, which appears underneath the properties drawer.
Run Code Online (Sandbox Code Playgroud)
我没有通过谷歌搜索看到这个功能,所以我猜测需要一些特殊的代码行才能使这个功能请求成为现实.[换句话说,我不认为这是一个超级用户的问题,因为这需要用一些特殊的代码来发明.]
在Emacs组织模式中,有没有办法让内联脚注定义显示为折叠?
例如,这样的一行:
This effect is due to the strength of weak ties[fn:: Newman, Mark, Albert-László Barabási, and Duncan J. Watts. 2006. The Structure and Dynamics of Networks. Princeton, NJ: Princeton University Press].
Run Code Online (Sandbox Code Playgroud)
可能只是这样:
This effect is due to the strength of weak ties[?].
Run Code Online (Sandbox Code Playgroud)
我还需要一个命令来在必要时显示脚注.所以可能需要的是两个命令:org-hide-footnotes和org-show-footnotes.
我正在尝试将源块添加到可见性循环树中。本质上,我希望将源块视为其标题的子项。考虑以下组织模式文档:
* Heading 1
** Heading 2
#+BEGIN_SRC R
print("hello world")
#+END_SRC
** Heading 3
Run Code Online (Sandbox Code Playgroud)
我希望能够在标题一上按 TAB 来循环折叠各个部分,包括源块。目前 org-mode 似乎确实具有折叠源代码块的功能,因为如果我转到 #+BEGIN_SRC R 并点击选项卡,我可以折叠它,但它似乎没有在全局循环中得到处理。有什么建议可以添加吗?
谢谢!