我正在使用org-mode跟踪项目,这对我来说效果很好.我已经安排了所有工作块,估计了任务并跟踪了时间.
我导出它〜每周一次供其他人查看,但我无法在导出的文件中显示努力和CLOCKSUM.
我怎么做?
小智 9
你可以:
设置org-export-with-drawers
为t
.这将导出标题下方的抽屉属性.它作为示例块导出,因此如果您希望它拥有自己的CSS选择类,则必须定义自己的org-export-format-drawer函数.我使用以下配置:
(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)
Run Code Online (Sandbox Code Playgroud)要么
我实际上正在为当前项目使用这两种方法.