Eildert Groeneveld <[EMAIL PROTECTED]> writes:
| Hello everyone,
|
| the current cvs produces this problem with table and figure floats:
|
| ! LaTeX Error: Illegal character in array arg.
|
| See the LaTeX manual or LaTeX Companion for explanation.
| Type H for immediate help.
| ...
|
|
Hello everyone,
the current cvs produces this problem with table and figure floats:
! LaTeX Error: Illegal character in array arg.
See the LaTeX manual or LaTeX Companion for explanation.
Type H for immediate help.
...
l.112 \begin{tabular}{|c|m{40mm}|m{60mm}|c|}
includegraphics does n
On Thu, Mar 22, 2001 at 09:38:19PM +0100, Lars Gullik Bjønnes wrote:
> move enum PAR_TAG out of the method into an anon namespace and therein
> add also a operator|=, like this:
There is still hope, this was the first thing I have done.
> namespace {
>
> enum PAR_TAG {
> NONE = 0,
>
On Fri, Mar 23, 2001 at 09:15:01AM +0900, Miyata Shigeru wrote:
> I wrote:
>
> > Since I cannot compile LyX any more here, I would like Windows developers
> > to submit the final patch.
>
> Thanks to a help from Ilya Zakharevich, I modified syscall() of EMX and
> I can compile LyX again on OS/2.
Hi,
I have just committed a quick-and-dirty fix to make the Qt2 frontend compile
again - I commented out the credits dialog. We cannot reuse that from XForms
any longer. I'll port it as soon as I get around to doing it.
I also committed my old files. They are not compiled in yet but hopefully
Juergen Vigna wrote:
> I'll fix this now (or try to) then please Garst have a look with your
> files and tell me if there are still differences in the produced code!
>
> Jürgen
I'll be happy to as soon as I can get it to compile.
gcc-3.0 log attached.
Garst
Making all in controllers
mak
I wrote:
> Since I cannot compile LyX any more here, I would like Windows developers
> to submit the final patch.
Thanks to a help from Ilya Zakharevich, I modified syscall() of EMX and
I can compile LyX again on OS/2. Well, almost.
In buffer.C, is included before "LString.h", which breaks the
Jose Abilio Oliveira Matos <[EMAIL PROTECTED]> writes:
| On Thu, Mar 22, 2001 at 01:05:16PM +0100, Lars Gullik Bjønnes wrote:
| >
| > enum PAR_TAG {
| > NONE = 0
| > TT = 1,
| > SF = 2,
| > BF = 4,
| > IT = 8,
| > SL = 16,
| > EM = 32
| > };
| >
| >
| > And
On Thu, Mar 22, 2001 at 01:05:16PM +0100, Lars Gullik Bjønnes wrote:
>
> enum PAR_TAG {
> NONE = 0
> TT = 1,
> SF = 2,
> BF = 4,
> IT = 8,
> SL = 16,
> EM = 32
> };
>
>
> And instead of bitset tag_close;
>
> PAR_TAG tag_close = 0;
>
> Instead of t
The following file shows what we want to do. You have to view it with
latest CVS, to get the idea.
Minipage.lyx
--
Lgb
Jose Abilio Oliveira Matos <[EMAIL PROTECTED]> writes:
| > working with bit representations. And by using it you get no type
| > checking on the enum type.
|
| The the "C++ Programming Language" refers bitset to other uses, such as
| having parameters with boolean flags, not only for bit opera
On Thu, Mar 22, 2001 at 07:10:13PM +0100, Lars Gullik Bjønnes wrote:
> | Notice that the code with bitsets is more clear than this version.
> | Notice the following line:
> | char const * tag_name[] = {"tt","sf","bf","it","sl","em"};
>
> And I dislike this one too.
>
> You can solve this o
Jose Abilio Oliveira Matos <[EMAIL PROTECTED]> writes:
| On Thu, Mar 22, 2001 at 01:05:16PM +0100, Lars Gullik Bjønnes wrote:
| > Dekel Tsur <[EMAIL PROTECTED]> writes:
| >
| > | g++ -DHAVE_CONFIG_H -I. -I. -I. -I.. -I.. -I../boost-isystem
| > | /usr/X11R6/include -O -fno-rtti -fno-exceptio
On Thu, Mar 22, 2001 at 01:05:16PM +0100, Lars Gullik Bjønnes wrote:
> Dekel Tsur <[EMAIL PROTECTED]> writes:
>
> | g++ -DHAVE_CONFIG_H -I. -I. -I. -I.. -I.. -I../boost-isystem
> | /usr/X11R6/include -O -fno-rtti -fno-exceptions -W -Wall -c buffer.C
> | buffer.C:21: bitset: No such file or d
[EMAIL PROTECTED] (Lars Gullik Bjønnes) writes:
| I am not sure how safe those template operators are.
This is the last version, I am a bit unsure about the odr implications
of the friends in EnumSet.
template
class EnumSet {
public:
EnumSet() : e_(E(0)) {}
EnumSet(E val) : e_(
* Lars Gullik Bjønnes <[EMAIL PROTECTED]> [010322 18:32]:
> Baruch Even <[EMAIL PROTECTED]> writes:
>
> | I'm pretty much stuck with the asynchronous image loading and the image
> | resize.
>
> Anything I can help with?
The current status is that images are loaded synchronously, that is when
yo
Andre Poenitz <[EMAIL PROTECTED]> writes:
| > I am not sure how safe those template operators are.
|
| Oh... pretty safe. You can now safely perform | and & on doubles as
| well ;-}
mmm... those operators should have some concept checking
boost::is_enum comes to mind...
Lgb
> I am not sure how safe those template operators are.
Oh... pretty safe. You can now safely perform | and & on doubles as well ;-}
Andre'
--
André Pönitz [EMAIL PROTECTED]
On 22-Mar-2001 Jose Abilio Oliveira Matos wrote:
> Hi,
> I have one question related with docbook. If a table is inside a
> table float, the output code is different. The difference is a simple
> wrapper .
>
> Is it possible for the table to know that the table float is one of
>
[EMAIL PROTECTED] (Lars Gullik Bjønnes) writes:
| right there.
| (I have a slightly more updated version in my tree, but it is far from
| finished yet.)
And this is a more updated version:
template
class EnumSet {
public:
EnumSet() : e_(static_cast(0)) {}
EnumSet(E val) : e_(va
Hi,
I have one question related with docbook. If a table is inside a
table float, the output code is different. The difference is a simple
wrapper .
Is it possible for the table to know that the table float is one of
its ancestors? I only need to know if there is one table flo
Jose Abilio Oliveira Matos <[EMAIL PROTECTED]> writes:
| On Thu, Mar 22, 2001 at 04:18:20PM +0100, Lars Gullik Bjønnes wrote:
| >
| > I have some helper classes that can be useful, but not quite finished
| > and tested yet:
| >
| > template
| > class EnumSet {
| >
| > };
|
| Wh
On Thu, Mar 22, 2001 at 04:18:20PM +0100, Lars Gullik Bjønnes wrote:
>
> I have some helper classes that can be useful, but not quite finished
> and tested yet:
>
> template
> class EnumSet {
>
> };
Where is it?
I would only need to replace, bitset < LAST > by EnumSet , no?
Lars,
I really, really like your cvsweb interface!
#warning what are you really doing here... (Lgb)
// why not just send a stringstream to the calling func?
// then the reader would look like:
// stringstream ss;
// ss << in.rdbuf();
I didn't do this because I di
Jose Abilio Oliveira Matos <[EMAIL PROTECTED]> writes:
| This is my code, I will replace it tonight, unless someone beats
|me first.
I have some helper classes that can be useful, but not quite finished
and tested yet:
template
class EnumSet {
public:
EnumSet() : e_(static_cast(0
> Fantastic!!! Somebody else using the controllers! Welcome aboard!
Glad you liked the brochure. Hope you will like the trip. ;-)
Ed.
Juergen Vigna <[EMAIL PROTECTED]> writes:
| On 22-Mar-2001 Angus Leeming wrote:
|
| > Oops! Wonder why mine compiled?
|
| >
|
| Nope! Didn't help!
Update from cvs now.
--
Lgb
Angus Leeming <[EMAIL PROTECTED]> writes:
| > My questions are:
| >
| > Where to find ios_base? (ControlCredits.C)
|
| Oops! Wonder why mine compiled?
|
|
no no... just change the ios_base to ios
I already did this in my local three.
(and just committed)
--
Lgb
On Thu, Mar 22, 2001 at 01:05:16PM +0100, Lars Gullik Bjønnes wrote:
> Dekel Tsur <[EMAIL PROTECTED]> writes:
>
> | g++ -DHAVE_CONFIG_H -I. -I. -I. -I.. -I.. -I../boost-isystem
> | /usr/X11R6/include -O -fno-rtti -fno-exceptions -W -Wall -c buffer.C
> | buffer.C:21: bitset: No such file or d
On 22-Mar-2001 Angus Leeming wrote:
> Oops! Wonder why mine compiled?
>
Nope! Didn't help!
Jürgen
--
-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._
Dr. Jürgen VignaE-Mail: [EMAIL PROTECTED]
Italienallee 13/N Tel/Fax: +39-0471-450260 / +39-0471-450
> My questions are:
>
> Where to find ios_base? (ControlCredits.C)
Oops! Wonder why mine compiled?
A
> Angus, I hope to have some time soon to help along with this quest to MVCise
> the rest of the dialogs. Can you possibly tell the mailing list when you
start
> working on a dialog so any work doesn't clash ?
;-)
Sure. Since last commit FormError is done and FormInclude is being done. This
me
I wanted to commit the minipage changes I made, but I cannot compile anymore.
My questions are:
Where to find ios_base? (ControlCredits.C)
The log follows:
---
g++ -DHAVE_CONFIG_H -I. -I. -I../../../src -I../../../src/ -I..
On Thu, 22 Mar 2001, Angus Leeming wrote:
> On Thursday 22 March 2001 14:43, Edwin Leuven wrote:
> > I will do the following:
> >
> > 1.
> >
> > frontends/xforms/FormSpell.[Ch]
> > frontends/xforms/form_spell.[Ch]
> > frontends/xforms/forms/form_spell.fd
> >
> > 2.
> >
> > frontends/controll
On 22-Mar-2001 Edwin Leuven wrote:
> Do you agree?
I do!
Jürgen
--
-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._
Dr. Jürgen VignaE-Mail: [EMAIL PROTECTED]
Italienallee 13/N Tel/Fax: +39-0471-450260 / +39-0471-450253
I-39100 Bozen Web:
On Thursday 22 March 2001 14:43, Edwin Leuven wrote:
> I will do the following:
>
> 1.
>
> frontends/xforms/FormSpell.[Ch]
> frontends/xforms/form_spell.[Ch]
> frontends/xforms/forms/form_spell.fd
>
> 2.
>
> frontends/controllers/ControlSpell.[Ch]
>
> where the controller uses the present sp
> I had a look at the patch! I thought it was a GUII patch but what you did
> is just moving some functions around! IMO this is not good it just makes
> spellchecker.C more complicated. If you want to remove those functions
> from BufferView, then IMO it's better to move them inside a new file
> (
On Thu, Mar 22, 2001 at 02:43:31PM +0100, Lars Gullik Bjønnes wrote:
> | http://lambda.cs.utu.fi/
> I don't want to begin using the LL lib before it is accepted into
> Boost.
And the list of supported compilers
(http://lambda.cs.utu.fi/supported_compilers.html)
contains only gcc 2.95 ...
On 21-Mar-2001 Edwin Leuven wrote:
> Hi All,
>
Hi Edwin!
> As a first hesitant step towards cleaning up the spellcheck code (and move it
> to frontends) this patch moves some functions out of BufferView into the
> spellcheck code. It's perhaps not very pretty but I don't see why we have
I
> In other words, using directly the lambda-expression
> $\lambda x.-sin(x*pi/180)$
>
> It works with simple expressions, functions, functors, member functions,
> has control flow, exceptions handling ...
Nice, isn't it? ;-)
Andre'
--
André Pönitz [EMA
> "Christian" == Christian B Wiik <[EMAIL PROTECTED]> writes:
Christian> [Jean-Marc Lasgouttes <[EMAIL PROTECTED]>] |
Christian> > "Christian" == Christian B Wiik
Christian> <[EMAIL PROTECTED]> writes: | | Christian> User
Christian> LyX directory: /home/christbw/./ | | This should not
Chr
> Where can I get this ? Freshmeat turns up blank.
A snippet from the main header file:
// -- ll.hpp -- Lambda Library
// -
// Copyright (C) 1999, 2000 Jaakko Järvi ([EMAIL PROTECTED])
//
// Permission to copy, use, sell and distribute this software i
[Jean-Marc Lasgouttes <[EMAIL PROTECTED]>]
| > "Christian" == Christian B Wiik <[EMAIL PROTECTED]> writes:
|
| Christian> User LyX directory: /home/christbw/./
|
| This should not happen. What does
| grep PACKAGE src/config.h
| say? Did you do something special to configure LyX?
#define P
Yves Bastide <[EMAIL PROTECTED]> writes:
| > Where can I get this ? Freshmeat turns up blank.
| >
| http://lambda.cs.utu.fi/
|
| I didn't know either, but jumped on it the instant I read André's message.
| Seems it can make all those pesky five-lines functors a bad memory.
I don't want to begi
> "Christian" == Christian B Wiik <[EMAIL PROTECTED]> writes:
Christian> User LyX directory: /home/christbw/./
This should not happen. What does
grep PACKAGE src/config.h
say? Did you do something special to configure LyX?
JMarc
> "R" == R Lahaye <[EMAIL PROTECTED]> writes:
R> Hi, All options in Edit->Floats&Insets will print out text in the
R> text terminal:
R>A truly unknown func!
This is because these functions have not yet been implemented for new
insets.
JMarc
On Thu, 22 Mar 2001, Yves Bastide wrote:
> On Thu, Mar 22, 2001 at 12:40:03PM +, John Levon wrote:
> > On Wed, 21 Mar 2001, Andre Poenitz wrote:
> >
> > > I admit that functors in the current Standard Lirary are clumsy to use.
> > > If LyX would use them on a regular base I'd suggest to use
On Thu, Mar 22, 2001 at 12:40:03PM +, John Levon wrote:
> On Wed, 21 Mar 2001, Andre Poenitz wrote:
>
> > I admit that functors in the current Standard Lirary are clumsy to use.
> > If LyX would use them on a regular base I'd suggest to use the 'Lambda
> > Library' which makes those things mu
> "John" == John Levon <[EMAIL PROTECTED]> writes:
John> Oh, and JMarc, is the comment about gcc 2.8.1 in
John> support/debugstream still applicable now ?
Now that we use namespaces all over, support for gcc 2.8.1 should be
considered as dead.
JMarc
Hello,
I've come into the habit of regularly compiling Lyx from CVS. There have been
constant improvements e.g. of the table editing features, which I liked (and
used) a lot.
However, with the current code (as of today), I had a nasty surprise:
I noticed that the small "tab" and "fig" tags we
On Wed, 21 Mar 2001, Andre Poenitz wrote:
> I admit that functors in the current Standard Lirary are clumsy to use.
> If LyX would use them on a regular base I'd suggest to use the 'Lambda
> Library' which makes those things much easier to write and more pleasing to
> the eye, but for the occasio
Andre Poenitz <[EMAIL PROTECTED]> writes:
| > And I don't see whay a bitset should be used...
|
| Encapsulation?
of what?
Lgb
> And I don't see whay a bitset should be used...
Encapsulation?
Andre'
--
André Pönitz [EMAIL PROTECTED]
Dekel Tsur <[EMAIL PROTECTED]> writes:
| g++ -DHAVE_CONFIG_H -I. -I. -I. -I.. -I.. -I../boost-isystem
| /usr/X11R6/include -O -fno-rtti -fno-exceptions -W -Wall -c buffer.C
| buffer.C:21: bitset: No such file or directory
| make[2]: *** [buffer.o] Error 1
And I don't see whay a bitset shoul
Dekel Tsur <[EMAIL PROTECTED]> writes:
| g++ -DHAVE_CONFIG_H -I. -I. -I. -I.. -I.. -I../boost-isystem
| /usr/X11R6/include -O -fno-rtti -fno-exceptions -W -Wall -c buffer.C
| buffer.C:21: bitset: No such file or directory
| make[2]: *** [buffer.o] Error 1
Hmm, what are we using bitset for?
g++ -DHAVE_CONFIG_H -I. -I. -I. -I.. -I.. -I../boost-isystem
/usr/X11R6/include -O -fno-rtti -fno-exceptions -W -Wall -c buffer.C
buffer.C:21: bitset: No such file or directory
make[2]: *** [buffer.o] Error 1
> "Steven" == Steven van Dijk <[EMAIL PROTECTED]> writes:
Steven> This patch seems to solve the latter problem, and maybe the
Steven> first one too (bibdata contains paths). I tried to search CVS
Steven> to find this patch, and I did not find it. I am unfamiliar
Steven> with the interface, so
> "Sasa" == Sasa Janiska <[EMAIL PROTECTED]> writes:
Sasa> Hi! I'm trying to run LyX on SuSE 7.1 with KDE 2.0.x and use it
Sasa> for Croatian language.
Sasa> I have Croatian characters in all KDE applications, but I cannot
Sasa> enter them in LyX although it can display them.
What version o
> "Juergen" == Juergen Vigna <[EMAIL PROTECTED]> writes:
Juergen> On 22-Mar-2001 Jean-Marc Lasgouttes wrote:
>> Dumb question: why should we have handling for paragraph and hfill
>> in minipages? Since this can be handled directly by LyX, shoudn't
>> we remove such features now (and convert g
On 22-Mar-2001 Edwin Leuven wrote:
> Please tell me if these questions are too ignorant and stupid to merit a
> reply:
No they aren't but I didn't have time yesterday to have a look at your
patch. I hopefully have time today and then I'll answer you (as much as
I can/and know ;)
Jürgen
> Please tell me if these questions are too ignorant and stupid to merit a
> reply:
Not really, I'd just expected other people to take care of it since it is
not my ballpark. Anyway:
> > As a first hesitant step towards cleaning up the spellcheck code (and move
> > it to frontends) this patch m
Hello,
Appended as usual is a list of what has been fixed since 1.1.6fix1.
My plan is to release 1.1.6fix2 soon (tomorrow?). Lars, will you be
able today or tomorrow to prepare a tar file if I flag the version?
I'll do the updloads, patch and announcement. Kayvan, will you be able
to provide a r
Please tell me if these questions are too ignorant and stupid to merit a
reply:
> As a first hesitant step towards cleaning up the spellcheck code (and move
> it to frontends) this patch moves some functions out of BufferView into the
> spellcheck code. It's perhaps not very pretty but I don't s
Eildert Groeneveld <[EMAIL PROTECTED]> writes:
| Hello all,
| when creating a float with the current CVS version of lyx, I do not get the
| Figure: prompt for adding the caption for that float. Has that changed or
| am I missing something?
But you get a "Senseless:" right?, Just use that. on nex
> | > LYX no longer links on my Solaris machine. Anyone have a patch?
> |
> | Did you try a clean build? (make
maintainer-clean;./autogen.sh;configure;make)
> | This seems like some problem with not recompiled object-code.
>
> It is fixed in CVS.
H. Thanks, Lars.
A
Hello all,
when creating a float with the current CVS version of lyx, I do not get the
Figure: prompt for adding the caption for that float. Has that changed or
am I missing something?
greetings
Eildert Groeneveld
==
Institute for Animal Science an
On 22-Mar-2001 Jean-Marc Lasgouttes wrote:
> Dumb question: why should we have handling for paragraph and hfill in
> minipages? Since this can be handled directly by LyX, shoudn't we
> remove such features now (and convert gracefully old files, of
> course)?
We are talking about reading old fil
> "Juergen" == Juergen Vigna <[EMAIL PROTECTED]> writes:
Juergen>* The first of a series of minipages should be in it's own
Juergen> paragraph Lars did this but he also regarded the "Hfill"
Juergen> flag! In the old output routine this "Hfill" flag was not
Juergen> regarded, or if it was
Some more notes on this:
1. I've seen that Lars was busy and implemented the stuff where I only put
#warnings (very good work Lars!)
2. I fixed a small bug in the LaTeX production code where only withp_ was
outputed but not width_ (if not empty).
3. We have still some missbehaviours in t
Juergen Vigna <[EMAIL PROTECTED]> writes:
| On 21-Mar-2001 Kayvan Sylvan wrote:
| > Hi folks,
| >
| > LYX no longer links on my Solaris machine. Anyone have a patch?
|
| Did you try a clean build? (make maintainer-clean;./autogen.sh;configure;make)
| This seems like some problem with not recomp
On 22-Mar-2001 Garst R. Reese wrote:
> I notice that they are still not working. Is this still a known problem
> or should I send a more complete report?
No you're right some parameters is not taken into account when outputting the
LaTeX code. I'll have a look at this today!
Jürgen
--
-.
On 21-Mar-2001 Kayvan Sylvan wrote:
> Hi folks,
>
> LYX no longer links on my Solaris machine. Anyone have a patch?
Did you try a clean build? (make maintainer-clean;./autogen.sh;configure;make)
This seems like some problem with not recompiled object-code.
Jürgen
--
-._-._-._-._-._-._-.
72 matches
Mail list logo