Espero ser capaz de criar um modo organizacional do Emacsmesa de relógiousando o mesmoformato de intervalocomo modo organizacional normal, mas não funciona.
Como posso especificar uma duração como "[2012-11-10 às 13:00]--[2012-11-10 às 14:00]" na linha "#+BEGIN: clocktable"? A tag :tstart funciona um pouco, mas a outraTagnão parece funcionar.
Eu tenho um arquivo como este:
* my timed entry
CLOCK: [2012-11-10 土 12:14]--[2012-11-10 土 13:14] => 1:00
E eu gero uma tabela de relógio:
OK!
** 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
Não!
** 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
Responder1
Se sua tag de configuração :tend
for omitida, org-mode não range
analisa :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