Merge branch 'maint'
This commit is contained in:
commit
9f96208eec
|
@ -2011,8 +2011,7 @@ See `org-latex-format-headline-function' for details."
|
|||
text
|
||||
(and tags
|
||||
(format "\\hfill{}\\textsc{%s}"
|
||||
(mapconcat (lambda (tag) (org-latex-plain-text tag info))
|
||||
tags ":")))))
|
||||
(mapconcat #'org-latex--protect-text tags ":")))))
|
||||
|
||||
|
||||
;;;; Horizontal Rule
|
||||
|
@ -2103,9 +2102,7 @@ See `org-latex-format-inlinetask-function' for details."
|
|||
title
|
||||
(when tags
|
||||
(format "\\hfill{}\\textsc{:%s:}"
|
||||
(mapconcat
|
||||
(lambda (tag) (org-latex-plain-text tag info))
|
||||
tags ":"))))))
|
||||
(mapconcat #'org-latex--protect-text tags ":"))))))
|
||||
(concat "\\begin{center}\n"
|
||||
"\\fbox{\n"
|
||||
"\\begin{minipage}[c]{.6\\textwidth}\n"
|
||||
|
|
Loading…
Reference in New Issue