beamer uncover behaviour

2016-11-08 Thread Eran Kaplinsky
I notice that the inline overlay [uncover] generates a tex capacity error when the text selected for "editing" is already set to a smaller – but not bigger – size. In other words, if I want text to be set in small, smaller, smallest, etc, and to be uncovered in slide 2, I need to provide the inline

Re: pasted non-acceptable symbol

2016-11-08 Thread Stephan Witt
Am 08.11.2016 um 21:03 schrieb Enrico Forestieri : > > On Tue, Nov 08, 2016 at 02:28:51PM +0100, Stephan Witt wrote: >> Am 07.11.2016 um 15:34 schrieb Enrico Forestieri : >>> >>> On Mon, Nov 07, 2016 at 01:31:31PM +, Guenter Milde wrote: As the meaning of LINE SEPARATOR and PARAGRA

Re: Output some value

2016-11-08 Thread Richard Heck
On 11/08/2016 08:36 AM, Jean-Marc Lasgouttes wrote: > Le 08/11/2016 à 14:20, racoon a écrit : >> When fiddling with the code I often would like to print output some >> value to a console (the message pane?). What is a good way to do this? > > You can use the stream lyxerr: > > lyxerr << "Variable f

Re: pasted non-acceptable symbol

2016-11-08 Thread Enrico Forestieri
On Tue, Nov 08, 2016 at 02:28:51PM +0100, Stephan Witt wrote: > Am 07.11.2016 um 15:34 schrieb Enrico Forestieri : > > > > On Mon, Nov 07, 2016 at 01:31:31PM +, Guenter Milde wrote: > >> > >> As the meaning of LINE SEPARATOR and PARAGRAPH SEPARATOR is clear from > >> http://unicode.org/versio

Re: ctests for input encoding

2016-11-08 Thread Kornel Benko
Am Dienstag, 8. November 2016 um 07:21:46, schrieb Guenter Milde > On 2016-11-07, Kornel Benko wrote: > > Am Montag, 7. November 2016 um 15:47:28, schrieb Guenter Milde > > > > Dear Kornel, > > ... > > >> One export route suffices. This is why I set the "default output format" > >> to pdf2 in t

Re: [LyX/master] Get rid of ParagraphMetrics::insetDimension

2016-11-08 Thread Jean-Marc Lasgouttes
Le 07/11/2016 à 21:42, Scott Kostyshak a écrit : This commit leads to an assertion for me at line 31 (of current master) of CoordCache.cpp. My first thought was to look at the symptom: what this commit does is replace a function (insetDimension) that does not assert when inset metrics is not

Re: Shutdown bug?

2016-11-08 Thread Stephan Witt
Am 06.11.2016 um 15:34 schrieb Paola Manzini : > >> On 6 Nov 2016, at 12:32, Stephan Witt wrote: >> >>> Am 06.11.2016 um 13:21 schrieb Paola Manzini : >>> >>> Hi All, >>> >>> I am running LyX on mac OS Sierra on a macbook pro, and El Capitan on an >>> iMAc, and I’ve noticed the following bug,

Re: pasted non-acceptable symbol

2016-11-08 Thread Stephan Witt
Am 07.11.2016 um 10:59 schrieb Jean-Marc Lasgouttes : > > Le 06/11/2016 à 14:30, Jean-Marc Lasgouttes a écrit : >> This is a more radical approach that what I have in mind, and I do not >> know whether it is safe. My idea was to modify the Row building code and >> replace the character with some v

Re: Output some value

2016-11-08 Thread Jean-Marc Lasgouttes
Le 08/11/2016 à 14:20, racoon a écrit : When fiddling with the code I often would like to print output some value to a console (the message pane?). What is a good way to do this? You can use the stream lyxerr: lyxerr << "Variable foo is " << foo <

Re: pasted non-acceptable symbol

2016-11-08 Thread Stephan Witt
Am 07.11.2016 um 15:34 schrieb Enrico Forestieri : > > On Mon, Nov 07, 2016 at 01:31:31PM +, Guenter Milde wrote: >> >> As the meaning of LINE SEPARATOR and PARAGRAPH SEPARATOR is clear from >> http://unicode.org/versions/Unicode5.2.0/ch05.pdf >> we can transform them to the corresponding LaT

Output some value

2016-11-08 Thread racoon
When fiddling with the code I often would like to print output some value to a console (the message pane?). What is a good way to do this? Daniel