Passing hierarchy context to agenda items in org-mode
The org-mode Agenda from the following org-mode file:
* TODO Presentation on Important Project
** TODO Meeting
DEADLINE: <2011-09-05 Mon>
** TODO Presenting to group
DEADLINE: <2011-09-06 Tue>
will show "Meeting" and "Presenting to group" on the appropriate days, but without the context of the main headline (Presentation on Important Project). Therefore, all context is lost and "Meeting" on 2011-09-05 means nothing. The workaround is to do the following:
* TODO Presentation on Important Project
** TODO Meeting abo开发者_如何学运维ut the Presentation on Important Project
DEADLINE: <2011-09-05 Mon>
** TODO Presenting to group about the Presentation on Important Project
DEADLINE: <2011-09-06 Tue>
which seems too complicated and requires duplication of the first headline. Is there an alternative method or a way to show the context/hierarchy in the agenda. I have previously found references to various variables dealing with hierarchies in org-mode, but these relate to sparse trees, not the agenda view. This discussion here appears to address this issue, but no solution is provided.
After further searching, I have found this question here. [The accepted answer involves right-clicking entries, which is not possible for me as I use org-mode on a headless server over SSH.]
精彩评论