Re: [O] [PATCH] Feature proposal : support "scale=" includegraphics option in the builtin latex exporter.

2019-06-16 Thread Nicolas Goaziou
Hello,

Emmanuel Charpentier  writes:

> We are now on June 16. The ELPA-distributed org-plus-contrib still does
> not carry these patches (re-attached, FWIW).
>
> I have checked that they are present in the ~master~ branch of the
> source tree, but not its ~maint~ branch.
>
> Am I misunderstanding anything ?

New features are applied to master branch. maint branch is for bugfixes
only. 

Since your patch is a new feature, it went into master branch. It will
be available in Org 9.3. Hopefully, it should not be long, even though
I have no ETA. I'm Cc'ing Bastien as he may know.

Regards,

-- 
Nicolas Goaziou



Re: [O] [PATCH] Feature proposal : support "scale=" includegraphics option in the builtin latex exporter.

2019-06-16 Thread Emmanuel Charpentier
Le dimanche 16 juin 2019 à 10:35 +0200, Nicolas Goaziou a écrit :

[ Snip... ]

> New features are applied to master branch. maint branch is for
> bugfixes
> only. 

Okay. I missed that...

> Since your patch is a new feature, it went into master branch. It
> will
> be available in Org 9.3. Hopefully, it should not be long, even
> though

It's clear now. Thanks !

--
Emmanuel Charpentier

> I have no ETA. I'm Cc'ing Bastien as he may know.
> 
> Regards,
> 




Re: [O] table, calc, reorder and protect calculation in one cell

2019-06-16 Thread Michael Brand
Hi Uwe

On Tue, Jun 11, 2019 at 11:36 AM Uwe Brauer  wrote:

> Is this behavior possible? When I delete a row or a column, the  TBLFM
> is updated, could that be done for reordering?

You may want to use something like this, (I knew the syntax for ~"$1"~
and used the formula debugger ~C-c {~ to find the syntax for
~"(Smith)"~):

| name   | C1 | C2 | Res |
|+++-|
| Smith  |  9 |  1 | 1.7 |
| Miller |  6 |  2 |   8 |
| Adams  |  5 |  5 |  10 |
#+TBLFM: $4 = if("$1" == "(Smith)", 0.1 * $2 + 0.8 * $3, $3 + $2)

Michael