org-mode:使用范围格式指定时钟表时间

org-mode:使用范围格式指定时钟表时间

我希望能够制作一个 Emacs Org-Mode时钟表使用相同的范围格式像正常的 org-mode 一样,但是它不起作用。

我如何在“#+BEGIN:clocktable”行中指定“[2012-11-10 土 13:00]--[2012-11-10 土 14:00]”这样的持续时间?:tstart 标签可以正常工作,但其他标签标签似乎不起作用。

我有一个这样的文件:

* my timed entry
  CLOCK: [2012-11-10 土 12:14]--[2012-11-10 土 13:14] =>  1:00

我生成了一个时钟表:

好的!

** working table   
#+BEGIN: clocktable :tstart "[2012-11-10 土 13:00]--[2012-11-10 土 14:00]" :maxlevel 2 :scope file 
Clock summary at [2012-11-10 土 15:28]

| Headline       | Time   |
|----------------+--------|
| *Total time*   | *0:14* |
|----------------+--------|
| my timed entry | 0:14   |
#+END: clocktable

呃!

** not working table
#+BEGIN: clocktable :tstart "[2012-11-10 土 12:00]--[2012-11-10 土 13:00]" :maxlevel 2 :scope file 
Clock summary at [2012-11-10 土 15:28]

| Headline       | Time   |
|----------------+--------|
| *Total time*   | *1:00* |
|----------------+--------|
| my timed entry | 1:00   |
#+END: clocktable

答案1

在您的配置中:tend省略了标签,因此 org-mode 不会range解析:tend

* my timed entry
  CLOCK: [2012-11-10 Сб. 12:14]--[2012-11-10 Сб. 13:14] =>  1:00

** not working table
#+BEGIN: clocktable :tstart "[2012-11-10 Сб. 12:00]" :tend "[2012-11-10 Сб. 13:00]" :maxlevel 2 :scope buffer
#+CAPTION: Clock summary at [2013-01-18 Пт. 01:16]
| Headline              | Time   |      |
|-----------------------+--------+------|
| *Total time*          | *0:46* |      |
|-----------------------+--------+------|
| my timed entry        | 0:46   |      |
| \__ not working table |        | 0:00 |
#+END: clocktable

相关内容