Re: Enumerate in Beamer

2019-05-24 Thread Dr Eberhard Lisse
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256


Jürgen,

doesn't show the right numbers on the LyX screen (restarting from 1 on
each Frame) but the PDF is right, which is all I need :-)-O

You're the Man!!


Thanks, el

On 2019-05-24 11:09 , Jürgen Spitzmüller wrote:
> Am Freitag, den 24.05.2019, 11:04 +0200 schrieb Dr Eberhard Lisse:
>> Yes I did.
>>
>> As I wrote, enumitem does not work in beamer (and the module is not
>> available in beamer).
>>
>> Convington does not do it either.
> 
> Did you see the Resumable Enumeration module, which is particularly
> suited to beamer?
> https://wiki.lyx.org/Layouts/Modules#toc12
> 
> Jürgen
> 
-BEGIN PGP SIGNATURE-
Comment: Using GnuPG with Thunderbird - https://www.enigmail.net/

iQIzBAEBCAAdFiEEc5m+C677SuXtuUpUlwUdo3lFP6sFAlzn0o0ACgkQlwUdo3lF
P6udzw//QL18Kdeq7rKCM0UoUmCfQ1L4CpqehwmoEngQo+26L0bqgBnf9e8uZnaA
VY+Nu5KW4shhCUi4xEwfzt+2nZLxFsBLK4el1U3WVAssZqpppanB/UfMzSjv3pfB
mliDIHBAyAk7fm73wtM6vg+dwnUS7+quGv+t4PlLmyFQWWiLqamzst0RpoIjKa9J
Xlsm9GFljFbj7XSWysG2lBtFxCb6qaH1TJ0PU2wc9APWf9jqRYHz9pYvDEf7FkBl
XO60avnUA8T2FU3idf18B1bxdn/SjJSmunJGmdbIv7uqMdLwHbGrfCYQSMY0jCob
qdRfcqiSqjCztH1rMqXB3jsMMWFvpQq+4V8EmfEuw9IaEgKFqUwlTjRb0DypRfKz
ydsYbZ0vVs2O2whLHiwBJdLZr1QolodDIIajDc3tjcwjha9/jUvGMeQn5TkDRS4V
evQ6J8q+DzxzEAQBcfQeRkOqfiUOJPzGTC3hz+L3P3xgdjaaNyA/VrEyrHin7bs3
Nhujs9o+paK+fjkoqy8GPZDRW2PFxlWu7zPP3JRFA5RGUjcw1hJLMqkqVWskZie0
LjMdxEHiNWtvw4SWtDRRwzoLp0urwcQ6iXYJ5mucrkcMbNzK2BnsrAGxFDKwNcJx
PNHKp+5uxaqfS84V7TGUqcL1O1e2hQRt5ygOQJ4613HiieAs+B8=
=GCvm
-END PGP SIGNATURE-



Re: Enumerate in Beamer

2019-05-24 Thread Jürgen Spitzmüller
Am Freitag, den 24.05.2019, 11:04 +0200 schrieb Dr Eberhard Lisse:
> Yes I did.
> 
> As I wrote, enumitem does not work in beamer (and the module is not
> available in beamer).
> 
> Convington does not do it either.

Did you see the Resumable Enumeration module, which is particularly
suited to beamer?
https://wiki.lyx.org/Layouts/Modules#toc12

Jürgen



signature.asc
Description: This is a digitally signed message part


Re: Enumerate in Beamer

2019-05-24 Thread Dr Eberhard Lisse
Yes I did.

As I wrote, enumitem does not work in beamer (and the module is not
available in beamer).

Convington does not do it either.

greetings, el

On 23/05/2019 15:35, José Abílio Matos wrote:
> On Thursday, 23 May 2019 12.20.41 WEST Dr Eberhard Lisse wrote:
>> Is there a way of doing this in Beamer?  With as little ERT as possible
>> of course
>>
>> el
> 
> Have you seen
> https://wiki.lyx.org/LyX/Numbering or https://wiki.lyx.org/Tips/Enumitem
> 
> They show how to do what you intend.
> 
> Regards,
> 




Re: Enumerate in Beamer

2019-05-23 Thread José Abílio Matos
On Thursday, 23 May 2019 12.20.41 WEST Dr Eberhard Lisse wrote:
> Is there a way of doing this in Beamer?  With as little ERT as possible
> of course
> 
> el

Have you seen
https://wiki.lyx.org/LyX/Numbering or https://wiki.lyx.org/Tips/Enumitem

They show how to do what you intend.

Regards,
-- 
José Abílio




Enumerate in Beamer

2019-05-23 Thread Dr Eberhard Lisse


Hi,

I would like to continue the numbering of an enumerated list onto a
subsequent slide.

Usually I would do that with the enumitem package and module, but since
this interferes with something on Beamer it's disabled.

In LaTeX I would do something like this, which works.

\begin{enumerate}
\item First item
\item Second item
\newcounter{saveenum}
\setcounter{saveenum}{\value{enumi}}
\end{enumerate}
\end{frame}

\begin{frame}{next frame}

\begin{enumerate}
\setcounter{enumi}{\value{saveenum}}
\item Third item
\item Fourth item

I can add 

\setcounter{saveenum}{\value{enumi}}

as ERT, no drama, but if I put 

\setcounter{enumi}{\value{saveenum}}

as ERT into the first item on the LyX document, the 'Third item' comes
up as 1 and the 'Fourth item' as 4.

If I put 

\setcounter{enumi}{\value{saveenum}}

as ERT before the list, it has no effect, ie the 'Third item' comes up
as 1 and the 'Fourth item' as 2.

Is there a way of doing this in Beamer?  With as little ERT as possible
of course

el