Task Dependencies in Org
Certainly! Here's an org-mode representation of the logical order of the tasks "send in end report," "write report," and "setup project report," with dependencies added using org-edna notation:
org* TODO Setup project report DEADLINE: <2023-06-02> ** TODO Write report :PROPERTIES: :DEPENDS_ON: Setup project report :END: *** TODO Send in end report :PROPERTIES: :DEPENDS_ON: Write report :END:
In this representation, each task is represented by a headline, indicated by the number of asterisks (*) preceding the headline. The "Setup project report" task has a deadline set for the day after the current date. The "Write report" task depends on the completion of the "Setup project report" task, which is indicated using the :DEPENDS_ON:
property. Similarly, the "Send in end report" task depends on the completion of the "Write report" task.
Please note that the org-edna notation, which allows for specifying task dependencies, is not a built-in feature of Org mode, but rather an extension provided by the org-edna package. The notation used here is a simplified representation to demonstrate the dependencies within the org-mode structure.