Try the following:
(let ((org-time-stamp-custom-formats '("<%A, %B %d, %Y>" . "<%A, %B %d, %Y %H:%M>")) (org-display-custom-times 't)) (org-latex-export-to-latex))
Update. If you want to remove the brackets <> from the output line, you need to fix the org-translate-time function. Normal behavior:
(let ((org-time-stamp-custom-formats '("<%A, %B %d, %Y>" . "<%A, %B %d, %Y %H:%M>")) (org-display-custom-times 't)) (org-translate-time "<2014-04-29 Tu.>")) => "<Tuesday, April 29, 2014>"
With a fixed function, for example here https://gist.github.com/boykov/11387660
(let ((org-time-stamp-custom-formats '("<%A, %B %d, %Y>" . "<%A, %B %d, %Y %H:%M>")) (org-display-custom-times 't)) (org-translate-time "<2014-04-29 Tu.>")) => "Tuesday, April 29, 2014"
The brackets <> hardcoded in the org-translate-time function, and you cannot remove them by setting org-time-stamp-custom-formats only.
source share