Function: org-latex-clock
org-latex-clock is a byte-compiled function defined in ox-latex.el.gz.
Signature
(org-latex-clock CLOCK CONTENTS INFO)
Documentation
Transcode a CLOCK element from Org to LaTeX.
CONTENTS is nil. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
;;;; Clock
(defun org-latex-clock (clock _contents info)
"Transcode a CLOCK element from Org to LaTeX.
CONTENTS is nil. INFO is a plist holding contextual
information."
(concat
"\\noindent"
(format "\\textbf{%s} " org-clock-string)
(format (plist-get info :latex-inactive-timestamp-format)
(concat (org-timestamp-translate (org-element-property :value clock))
(let ((time (org-element-property :duration clock)))
(and time (format " (%s)" time)))))
org-latex-line-break-safe))