Re: \SpecialChar

2000-04-30 Thread Carl Ollivier-Gooch
On 01-May-00 Allan Rae wrote: > In my case just about everything I write gets a couple of protected > spaces > because it's recommended practice to use one between a word and its > following citation~[1]. Just like that one, to ensure the citation > doesn't get orphaned.Maybe LaTeX/BibTeX s

Re: wish list

2000-04-30 Thread Garst R. Reese
Dekel Tsur wrote: > > On Sun, Apr 30, 2000 at 12:26:43AM +0200, Asger K. Alstrup Nielsen wrote: > > > (1) void LyXParagraph::String(string & s) > > > that writes the paragraph into the string s. > > > > > > The alternative is > > > (2) string LyXParagraph::String() > > > that returns a string fro

Re: \SpecialChar

2000-04-30 Thread Garst R. Reese
Allan Rae wrote: > > > Come on everybody, send in your tips. We've got a volunteer! > > ;-) > Allan. (ARRae) As you see, I will test them first %;>)

Re: \SpecialChar

2000-04-30 Thread Garst R. Reese
Allan Rae wrote: > What happens with a minipage set to \columnwidth? Centred lines should > then be centred in the middle of the minipage and you shouldn't need to > worry about how wide the widest line of the poem is. > > Allan. (ARRae) OK, I tried it. Verse does not allow centered lines. Catch

Re: \SpecialChar

2000-04-30 Thread Allan Rae
On Mon, 1 May 2000, Garst R. Reese wrote: > Allan Rae wrote: > > > > What happens with a minipage set to \columnwidth? Centred lines should > > then be centred in the middle of the minipage and you shouldn't need to > > worry about how wide the widest line of the poem is. > > > > Allan. (ARRae

Re: \SpecialChar

2000-04-30 Thread Garst R. Reese
Allan Rae wrote: > > What happens with a minipage set to \columnwidth? Centred lines should > then be centred in the middle of the minipage and you shouldn't need to > worry about how wide the widest line of the poem is. > > Allan. (ARRae) Hmm, It was not obvious to me that I could do that in t

Re: \SpecialChar

2000-04-30 Thread Allan Rae
On Sun, 30 Apr 2000, Garst R. Reese wrote: > Dekel Tsur wrote: > > > > On Thu, Apr 27, 2000 at 12:21:52PM +0200, Lars Gullik Bjønnes wrote: > > > Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: > > > > > > | Lars> It does not buy anything other than 19 bytes saved. > > > > But you can have man

Re: \SpecialChar

2000-04-30 Thread Garst R. Reese
Dekel Tsur wrote: > > On Thu, Apr 27, 2000 at 12:21:52PM +0200, Lars Gullik Bjønnes wrote: > > Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: > > > > | Lars> It does not buy anything other than 19 bytes saved. > > But you can have many protected spaces in one document. > For example, the refer

Re: wish list

2000-04-30 Thread Allan Rae
On Fri, 28 Apr 2000, Dekel Tsur wrote: > There are so many things I want to add to LyX, and so little time :( > To name few features that I want to add: [...] > 2. Better citation popup (I know that it is possible to use external > bibliography program, but I do want LyX to have something better

Re: wish list

2000-04-30 Thread Garst R. Reese
Dekel Tsur wrote: > > On Sun, Apr 30, 2000 at 12:26:43AM +0200, Asger K. Alstrup Nielsen wrote: > > > (1) void LyXParagraph::String(string & s) > > > that writes the paragraph into the string s. > > > > > > The alternative is > > > (2) string LyXParagraph::String() > > > that returns a string fro

Re: \SpecialChar

2000-04-30 Thread Dekel Tsur
On Thu, Apr 27, 2000 at 12:21:52PM +0200, Lars Gullik Bj&resh;nnes wrote: > Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: > > | Lars> It does not buy anything other than 19 bytes saved. But you can have many protected spaces in one document. For example, the reference manual contains 1012 p.

Re: wish list

2000-04-30 Thread Dekel Tsur
On Sun, Apr 30, 2000 at 12:26:43AM +0200, Asger K. Alstrup Nielsen wrote: > > (1) void LyXParagraph::String(string & s) > > that writes the paragraph into the string s. > > > > The alternative is > > (2) string LyXParagraph::String() > > that returns a string from the paragraph. > > > This is w

Re: more wish list

2000-04-30 Thread Garst R. Reese
Dekel Tsur wrote: > > On Sun, Apr 30, 2000 at 03:27:28AM -0300, Garst R. Reese wrote: > > > > I also noticed that if I set Section Number Depth to -1, clicking on an > > entry in the TOC takes me to the top of the document instead of the > > desired place. > > I've rewritten the TOC code, and fi

Re: more wish list

2000-04-30 Thread Dekel Tsur
On Sun, Apr 30, 2000 at 03:27:28AM -0300, Garst R. Reese wrote: > > I also noticed that if I set Section Number Depth to -1, clicking on an > entry in the TOC takes me to the top of the document instead of the > desired place. I've rewritten the TOC code, and fixed this bug as a side effect :) I

Re: wish list

2000-04-30 Thread Lars Gullik Bjønnes
Jules Bean <[EMAIL PROTECTED]> writes: | (2) says what it means. If efficiency is bothering you, you can save a | copy by making th procedure return a string&. No you can't unless you have a static string in the method, or returning a temporary which is invalid. Lgb

Re: wish list

2000-04-30 Thread Lars Gullik Bjønnes
"Asger K. Alstrup Nielsen" <[EMAIL PROTECTED]> writes: | > The alternative is | > (2) string LyXParagraph::String() | > that returns a string from the paragraph. | > | > Do you really think that (2) is clearer/better than (1) ? | > Should I stay with (1) ? | | If the method produces a new strin

Re: wish list

2000-04-30 Thread Jules Bean
On Sun, Apr 30, 2000 at 01:15:12AM +0300, Dekel Tsur wrote: > Yes, but I think that the style I use is quite clear. > To refresh your memory, I've created a procedure > (1) void LyXParagraph::String(string & s) > that writes the paragraph into the string s. > > The alternative is > (2) string LyX