The text of a radio target must sill be processed in LaTeX export

This commit is contained in:
Carsten Dominik 2009-12-24 09:29:59 +01:00
parent 43a8e3aba4
commit aadd7399e1
2 changed files with 11 additions and 4 deletions

View File

@ -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

View File

@ -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