emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org a753d0dd26: lisp/ox-latex: Omit empty date


From: ELPA Syncer
Subject: [elpa] externals/org a753d0dd26: lisp/ox-latex: Omit empty date
Date: Sat, 30 Jul 2022 01:57:42 -0400 (EDT)

branch: externals/org
commit a753d0dd26018a951fe21548ae6b513594b570a8
Author: Bob Vergauwen <emacs@vergauwen.me>
Commit: Ihor Radchenko <yantar92@gmail.com>

    lisp/ox-latex: Omit empty date
    
    * lisp/ox-latex.el: (org-latex-template): When no date is provided or
    the export option date is nil, the empty '\date{}' string is no
    longer included in the exported latex document.
    
    The default behaviour for ox-latex was to include an empty date line as
    '\date{}'.  This empty date line can affect more complex latex templates
    when the date is for example set by the template on compilation, or when
    the date command is overwritten entirely.  In this new patch, the date
    line is omitted from the exported document.
    
    TINYCHANGE
---
 lisp/ox-latex.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el
index 1ed9889178..c56f9d3475 100644
--- a/lisp/ox-latex.el
+++ b/lisp/ox-latex.el
@@ -1977,7 +1977,8 @@ holding export options."
             ((or author email) (format "\\author{%s}\n" (or author email)))))
      ;; Date.
      (let ((date (and (plist-get info :with-date) (org-export-get-date info))))
-       (format "\\date{%s}\n" (org-export-data date info)))
+       (when date
+             (format "\\date{%s}\n" (org-export-data date info))))
      ;; Title and subtitle.
      (let* ((subtitle (plist-get info :subtitle))
            (formatted-subtitle



reply via email to

[Prev in Thread] Current Thread [Next in Thread]