I am tracking project in with org-mode, which is working well for me. I have all of my blocks of work scheduled out, tasks are estimated and time is tracked.
I export it ~ once a week for other people to look at, but I can't get the effort and CLOCKSUM to sh开发者_StackOverflowow in the exported file.
How do I do that?
You can either:
Set
org-export-with-drawers
tot
. This will export the drawer properties below the header. It's exported as an example block, so if you want it to have it's own class for CSS selection, you'll have to define your own org-export-format-drawer function. I use the following configuration:(setq org-export-with-drawers t) (defun jbd-org-export-format-drawer (name content) "Export drawers to drawer HTML class." (setq content (org-remove-indentation content)) (format "@<div class=\"drawer\">%s@</div>\n" content)) (setq org-export-format-drawer-function 'jbd-org-export-format-drawer)
OR
- You can use dynamic blocks to capture the column view by typing
C-c C-x i
. This will insert a table that displays the column view that can be updated by typingC-c C-c
while on the#+BEGIN:
line.
I'm actually using both methods for a current project.
精彩评论