org-mode: Geben Sie die Clocktable-Zeit im Bereichsformat an

org-mode: Geben Sie die Clocktable-Zeit im Bereichsformat an

Ich erwarte, dass ich einen Emacs-Org-Modus erstellen kannUhrtischmit dem gleichenBereichsformatwie normaler Org-Modus, aber es funktioniert nicht.

Wie kann ich eine Dauer wie "[2012-11-10 土 13:00]--[2012-11-10 土 14:00]" in der Zeile "#+BEGIN: clocktable" angeben? Das Tag :tstart funktioniert einigermaßen, aber das andereStichwortescheint nicht zu funktionieren.

Ich habe eine Datei wie diese:

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

Und ich generiere eine Uhrtabelle:

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

Nicht gut!

** 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

Antwort1

In Ihrer Konfiguration :tendwird der Tag ausgelassen, der Org-Modus führt keine Analyse rangedurch :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

verwandte Informationen