|
@@ -2009,8 +2009,7 @@ See `org-latex-format-headline-function' for details."
|
|
text
|
|
text
|
|
(and tags
|
|
(and tags
|
|
(format "\\hfill{}\\textsc{%s}"
|
|
(format "\\hfill{}\\textsc{%s}"
|
|
- (mapconcat (lambda (tag) (org-latex-plain-text tag info))
|
|
|
|
- tags ":")))))
|
|
|
|
|
|
+ (mapconcat #'org-latex--protect-text tags ":")))))
|
|
|
|
|
|
|
|
|
|
;;;; Horizontal Rule
|
|
;;;; Horizontal Rule
|
|
@@ -2092,7 +2091,7 @@ holding contextual information."
|
|
todo todo-type priority title tags contents info)))
|
|
todo todo-type priority title tags contents info)))
|
|
|
|
|
|
(defun org-latex-format-inlinetask-default-function
|
|
(defun org-latex-format-inlinetask-default-function
|
|
- (todo _todo-type priority title tags contents info)
|
|
|
|
|
|
+ (todo _todo-type priority title tags contents info)
|
|
"Default format function for a inlinetasks.
|
|
"Default format function for a inlinetasks.
|
|
See `org-latex-format-inlinetask-function' for details."
|
|
See `org-latex-format-inlinetask-function' for details."
|
|
(let ((full-title
|
|
(let ((full-title
|
|
@@ -2101,9 +2100,7 @@ See `org-latex-format-inlinetask-function' for details."
|
|
title
|
|
title
|
|
(when tags
|
|
(when tags
|
|
(format "\\hfill{}\\textsc{:%s:}"
|
|
(format "\\hfill{}\\textsc{:%s:}"
|
|
- (mapconcat
|
|
|
|
- (lambda (tag) (org-latex-plain-text tag info))
|
|
|
|
- tags ":"))))))
|
|
|
|
|
|
+ (mapconcat #'org-latex--protect-text tags ":"))))))
|
|
(concat "\\begin{center}\n"
|
|
(concat "\\begin{center}\n"
|
|
"\\fbox{\n"
|
|
"\\fbox{\n"
|
|
"\\begin{minipage}[c]{.6\\textwidth}\n"
|
|
"\\begin{minipage}[c]{.6\\textwidth}\n"
|