diff options
author | JSDurand <mmemmew@gmail.com> | 2021-03-08 10:40:52 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2021-03-08 10:40:52 +0800 |
commit | 88db66d1ad52ddd351928bb0a4fc7324217d844f (patch) | |
tree | 8598dbce5314b413dd1785f16a7d048522b447dc | |
parent | 7985baf7b2279005d030f313e0673e82a08de930 (diff) |
Modify the template for LaTeX
* skeleton-conf.el (insert-tex): The format of the dates should use
"en-dashes" instead of "hyphens".
-rw-r--r-- | skeleton-conf.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skeleton-conf.el b/skeleton-conf.el index 6c6bcd0..329cb8d 100644 --- a/skeleton-conf.el +++ b/skeleton-conf.el @@ -80,7 +80,7 @@ "\\date{" (let ((date (read-string "Date: " - (format-time-string "%Y-%m-%d")))) + (format-time-string "%Y--%m--%d")))) (cond ((string-empty-p date) "\\vspace{-1ex}") (date))) |