|
@@ -1661,9 +1661,11 @@ The conversion is made depending of STRING-BEFORE and STRING-AFTER."
|
|
|
(org-export-latex-protect-string
|
|
|
(concat "\\hspace*{1cm}" (match-string 2))) t t)
|
|
|
(beginning-of-line 1))
|
|
|
- (unless (looking-at ".*?[^ \t\n].*?\\\\\\\\[ \t]*$")
|
|
|
- (end-of-line 1)
|
|
|
- (insert "\\\\"))
|
|
|
+ (if (looking-at "[ \t]*$")
|
|
|
+ (insert "\\vspace*{1em}")
|
|
|
+ (unless (looking-at ".*?[^ \t\n].*?\\\\\\\\[ \t]*$")
|
|
|
+ (end-of-line 1)
|
|
|
+ (insert "\\\\")))
|
|
|
(beginning-of-line 2))
|
|
|
(and (looking-at "[ \t]*ORG-VERSE-END.*")
|
|
|
(org-replace-match-keep-properties "\\end{verse}" t t)))
|