emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] org tables - modified field


From: Carsten Dominik
Subject: Re: [Orgmode] org tables - modified field
Date: Mon, 30 Aug 2010 14:22:18 +0200


On Jul 2, 2010, at 10:27 AM, Seweryn Kokot wrote:

Hi,

I have the following table

#+TBLNAME: table_three
|--------+--------|
|      1 | 2      |
|--------+--------|
|   2.00 | *4.00* |
| *4.00* | #ERROR |
|--------+--------|
#+TBLFM: @address@hidden;%.2f::@address@hidden;*%.2f*::@address@hidden;*%. 2f*::@address@hidden
$2;*%.2f*

in which I would like to have some fields bold in org buffer and latex export

\begin{center}
\begin{tabular}{rl}
\hline
            1  &  2              \\
\hline
         2.00  &  \textbf{4.00}  \\
\textbf{4.00}  &  \#ERROR        \\
\hline
\end{tabular}
\end{center}

However, since the field B3 refers to the field B2 which is not exactly a
number, I get an error.

Would it be possible to reuse the field B2 in another formula, somehow?

Only if you use elisp formulas and strip the stars yourself.  Calc
cannot solve this for you, so computations using calc with emphasized
fields are not allowed in org tables.

HTH

- Carsten




reply via email to

[Prev in Thread] Current Thread [Next in Thread]