mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-12-28 10:56:57 +00:00
The text of a radio target must sill be processed in LaTeX export
This commit is contained in:
parent
43a8e3aba4
commit
aadd7399e1
@ -1,3 +1,8 @@
|
||||
2009-12-24 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org-latex.el (org-export-latex-preprocess): Do process the text
|
||||
of a radio target.
|
||||
|
||||
2009-12-20 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org.el (org-entry-properties): Add TIMESTAMP properties back
|
||||
|
@ -1924,10 +1924,12 @@ The conversion is made depending of STRING-BEFORE and STRING-AFTER."
|
||||
">>>?\\((INVISIBLE)\\)?") nil t)
|
||||
(org-if-unprotected-at (+ (match-beginning 0) 2)
|
||||
(replace-match
|
||||
(org-export-latex-protect-string
|
||||
(format "\\label{%s}%s" (save-match-data (org-solidify-link-text
|
||||
(match-string 1)))
|
||||
(if (match-string 2) "" (match-string 1)))) t t)))
|
||||
(concat
|
||||
(org-export-latex-protect-string
|
||||
(format "\\label{%s}" (save-match-data (org-solidify-link-text
|
||||
(match-string 1)))))
|
||||
(if (match-string 2) "" (match-string 1)))
|
||||
t t)))
|
||||
|
||||
;; Delete @<...> constructs
|
||||
;; Thanks to Daniel Clemente for this regexp
|
||||
|
Loading…
Reference in New Issue
Block a user