From: AW <alexander.willand@t-online.de>
To: Emacs-orgmode@gnu.org
Subject: radiotables in LaTeX-document: export numbers from orgtbl with commas as decimal separators instead of periods; with MWE and lisp-code
Date: Wed, 18 Apr 2012 13:00:25 +0200 [thread overview]
Message-ID: <4297465.2ty5xHOKpk@linux-nyil.site> (raw)
Dear all,
I'd like to use radiotables inside a LaTeX-document. Here is a minimal working
example:
-----------------------------------------------------------
\documentclass[pagesize, ngerman, fontsize=12pt]{scrartcl}
\usepackage[T1]{fontenc}\usepackage[utf8]{inputenc}
\usepackage{babel, comment, array, booktabs}
\title{Sicherheitsbestellung}
\subtitle{gag}
\begin{document}
\maketitle
\begin{tabular}{p{0.25\linewidth}p{0.5\linewidth}}%\toprule
Bezeichnung & Betrag \\
% BEGIN RECEIVE ORGTBL Kaufpreis
Kaufpreis & 100000.00 \\
Darlehen & -5000.00 \\
Summe & 95000.00 \\
% END RECEIVE ORGTBL Kaufpreis
\bottomrule
\end{tabular}
\begin{comment}
#+ORGTBL: SEND Kaufpreis orgtbl-to-latex :splice t :skip 0
| Kaufpreis | 100000.00 |
| Darlehen | -5000.00 |
| Summe | 95000.00 |
#+TBLFM: @3$2=@1$2+@2$2;%.2f
\end{comment}
\end{document}
-----------------------------------------------------------
I would like to have the LaTeX table with commas as decimal separators instead
of periods, e.g.:
»Kaufpreis & 100000,00\\« or even better
»Kaufpreis & 100\,000,00\\«.
To avoid misunderstandigs: The change of all periods to commas should take
place when the org-table is »transfered« to the LaTeX table, not earlier!
I found a suggestion by Carsten Dominik here:
http://permalink.gmane.org/gmane.emacs.orgmode/42000
-----------------------------------------------------------
(add-hook 'org-export-preprocess-hook
'org-use-comma-in-exported-tables)
(defun org-use-comma-in-exported-tables ()
(goto-char (point-min))
(while (re-search-forward "\\([0-9]\\)\\.\\([0-9]\\)" nil t)
(org-if-unprotected
(when (save-match-data (org-at-table-p))
(replace-match "\\1,\\2" t nil)))))
-----------------------------------------------------------
I put that into my .emacs, restarted Emacs, but no result.
I'm using Emacs 23.3 and Org-mode version 7.8.02. Please bear in mind that I'm
may have made strange mistake, because I do neither have experience with
radiotables nor understand lisp.
Any help would be appreciated, thanks in advance.
Kind regards,
Alexander
next reply other threads:[~2012-04-18 11:00 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-18 11:00 AW [this message]
2012-04-21 9:22 ` radiotables in LaTeX-document: export numbers from orgtbl with commas as decimal separators instead of periods; with MWE and lisp-code AW
2012-04-21 23:09 ` William Henney
2012-04-21 22:38 ` radiotables in LaTeX-document: export numbers from orgtbl with commas as decimal separators instead of periods; with MWE and lisp-code => SOLVED AW
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4297465.2ty5xHOKpk@linux-nyil.site \
--to=alexander.willand@t-online.de \
--cc=Emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).