Re: part of a document in 1 column?

2001-04-13 Thread Aaron Macks

Duh, I forgot about the LaTex commands:
\onecolumn and \twocolumn
thanks
Aaron
 
 I have a 2 column document, part of which I want to make one column,
 is that possible?
 Aaron
 




Re: part of a document in 1 column?

2001-04-13 Thread Herbert Voss

Aaron Macks wrote:
 
 I have a 2 column document, part of which I want to make one column,
 is that possible?

use package multicol, part of your local texinstallation or
available at ctan.

in .lyx/examples is a lyx example file

Herbert

-- 
http:[EMAIL PROTECTED]




DocBook

2001-04-13 Thread Robin Turner

Is there a way to import DocBook .xml files into LyX?

Robin



Meta Key

2001-04-13 Thread Yann Collete

Hello,

I've a problem with the Meta key.
I use an Unix Emulator (Exceed) and a french keyboard.
For this keyboard, the meta key is binded to the escape key
(it works fine under xemacs).
Under Lyx, I use the emacs binding (which redefine the meta key as
the escape key). It works fine (I can insert an equation using 
Esc-m m). But when I am under math editor, if I want to insert
an exponent (Esc-m e) or an index (Esc-m i), when I press the Esc
key, I leave the math editor. So, I think the binding (Meta = Esc)
is not working under the math editor.
How can I do to have the meta binding working correctly under the
math editor ?

Your sincerely,

Yann COLLETTE




Re: Meta Key

2001-04-13 Thread Jean-Marc Lasgouttes

 "Yann" == Yann Collete [EMAIL PROTECTED] writes:

Yann Hello, I've a problem with the Meta key. I use an Unix Emulator
Yann (Exceed) and a french keyboard. For this keyboard, the meta key
Yann is binded to the escape key (it works fine under xemacs). Under
Yann Lyx, I use the emacs binding (which redefine the meta key as the
Yann escape key). It works fine (I can insert an equation using Esc-m
Yann m). But when I am under math editor, if I want to insert an
Yann exponent (Esc-m e) or an index (Esc-m i), when I press the Esc
Yann key, I leave the math editor. So, I think the binding (Meta =
Yann Esc) is not working under the math editor. How can I do to have
Yann the meta binding working correctly under the math editor ?

Unfortunately, the locking insets (like math) explicitely exit on
escape (which is a very bad idea IMO). You can try to remove this
"feature" by commenting out the following code (around line 176 if
src/lyxfunc.C): 

if (owner-view()-available()) {
// this function should be used always [asierra060396]
UpdatableInset * tli = owner-view()-theLockingInset();
if (tli  (keysym == XK_Escape)) {
if (tli == tli-GetLockingInset()) {
owner-view()-unlockInset(tli);
owner-view()-text-CursorRight(owner-view());
moveCursorUpdate(false);
owner-showState();
} else {
tli-UnlockInsetInInset(owner-view(),
tli-GetLockingInset(),tr
ue);
}
//return 0;
return FL_PREEMPT;
}
}


JMarc



Re: unofficial deb package

2001-04-13 Thread Jean-Marc Lasgouttes

 "Paolo" == Paolo M Pumilia [EMAIL PROTECTED] writes:

Paolo I have just packaged, for personal use, the latest lyx release
Paolo 1.1.6fix1, on i686 hardware platform and debian/sid system
Paolo (libc6 = 2.2.1-2 required)

Paolo It can be retrieved at the url
Paolo 
http://www.linfe.it/OpenLab/DebianPackages/unstable/contrib/lyx_1.1.6fix1-1_i386.deb

Paolo It is just my first attempt to build a deb package, so please
Paolo let me know if you will find it useful

Please tell me if you want it uploaded to ftp.lyx.org. I'm sure such a
package would be useful.

JMarc



Re: Meta Key

2001-04-13 Thread Yann Collete

Ok, thank you.
Do you plan to correct this for the fix2 release ?

YC
 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
 X-No-Archive: yes
 List-Post: mailto:[EMAIL PROTECTED]
 List-Help: mailto:[EMAIL PROTECTED]
 List-Unsubscribe: 
mailto:[EMAIL PROTECTED]
 Delivered-To: mailing list [EMAIL PROTECTED]
 To: Yann Collete [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Subject: Re: Meta Key
 From: Jean-Marc Lasgouttes [EMAIL PROTECTED]
 Date: 13 Apr 2001 11:48:50 +0200
 
  "Yann" == Yann Collete [EMAIL PROTECTED] writes:
 
 Yann Hello, I've a problem with the Meta key. I use an Unix Emulator
 Yann (Exceed) and a french keyboard. For this keyboard, the meta key
 Yann is binded to the escape key (it works fine under xemacs). Under
 Yann Lyx, I use the emacs binding (which redefine the meta key as the
 Yann escape key). It works fine (I can insert an equation using Esc-m
 Yann m). But when I am under math editor, if I want to insert an
 Yann exponent (Esc-m e) or an index (Esc-m i), when I press the Esc
 Yann key, I leave the math editor. So, I think the binding (Meta =
 Yann Esc) is not working under the math editor. How can I do to have
 Yann the meta binding working correctly under the math editor ?
 
 Unfortunately, the locking insets (like math) explicitely exit on
 escape (which is a very bad idea IMO). You can try to remove this
 "feature" by commenting out the following code (around line 176 if
 src/lyxfunc.C): 
 
 if (owner-view()-available()) {
 // this function should be used always [asierra060396]
 UpdatableInset * tli = owner-view()-theLockingInset();
 if (tli  (keysym == XK_Escape)) {
 if (tli == tli-GetLockingInset()) {
 owner-view()-unlockInset(tli);
 
owner-view()-text-CursorRight(owner-view());
 moveCursorUpdate(false);
 owner-showState();
 } else {
 tli-UnlockInsetInInset(owner-view(),
 
tli-GetLockingInset(),tr
 ue);
 }
 //return 0;
 return FL_PREEMPT;
 }
 }
 
 
 JMarc




Re: RTF: changing linespacing for a single paragraph

2001-04-13 Thread Jean-Marc Lasgouttes

 "Christopher" == Christopher Jones [EMAIL PROTECTED] writes:

Christopher I have two inputted files in my document, I need their
Christopher contents to be doublespaced rather than single spaced,
Christopher which is the document default.

You can change the spacing of a particular paragraph via the command
  M-x paragraph-spacing double

There is unfortunately no GUI way of doing this (yet). Valid values
are "single", "onehalf", "double", "other length" and "default".

JMarc



Re: Meta Key

2001-04-13 Thread Jean-Marc Lasgouttes

 "Yann" == Yann Collete [EMAIL PROTECTED] writes:

Yann Ok, thank you. Do you plan to correct this for the fix2 release
Yann ?

No :) I do not know what the right fix is in this case... What I
propose is just a stopgap. I'd be interested to know whether it helps in
your case.

JMarc



Re: slides/foils?

2001-04-13 Thread Herbert Voss

"Anna H. Pryor" wrote:
 
 \fancyhead[L]{ \includegraphics [width=.5cm]{Meatball.eps}
 
 (I put in all of the comments to just get what I thought was the necessary
 stuff.)
 
 When I click on postscript the first time, it claims that the document is
 empty, when I click on it a second time the logo comes up, but it is centered
 and too large, and not at the top of the page.

can you send a lyx example file (only 1 page) with the imagefile
for your logo?

Herbert

-- 
http:[EMAIL PROTECTED]



Re: Meta Key

2001-04-13 Thread Dekel Tsur

On Fri, Apr 13, 2001 at 11:32:55AM +0200, Yann Collete wrote:
 Hello,
 
 I've a problem with the Meta key.
 I use an Unix Emulator (Exceed) and a french keyboard.
 For this keyboard, the meta key is binded to the escape key
 (it works fine under xemacs).
 Under Lyx, I use the emacs binding (which redefine the meta key as
 the escape key). It works fine (I can insert an equation using 
 Esc-m m). But when I am under math editor, if I want to insert
 an exponent (Esc-m e) or an index (Esc-m i), when I press the Esc

In case you don't know, you can use the ^ and _ keys for exponent/index.



Meta Key

2001-04-13 Thread Yann Collete

Hello again,

How can I bind the right control, left control or alt key to the Meta key
in a bind file.
I've tried:
\bind "Alt""Meta-prefix"
but lyx doesn't recognize the Alt symbol.

YC




Re: Meta Key

2001-04-13 Thread Jean-Marc Lasgouttes

 "Yann" == Yann Collete [EMAIL PROTECTED] writes:

Yann Hello again, How can I bind the right control, left control or
Yann alt key to the Meta key in a bind file. I've tried: \bind "Alt"
Yann "Meta-prefix" but lyx doesn't recognize the Alt symbol.

You can't. What you have to do is play with xmodmap settings so that
Meta is right (or see if you can improve your x server configuration).

JMarc



Re: Writing formulas in russian and ukrainian languages

2001-04-13 Thread Dekel Tsur

On Fri, Apr 13, 2001 at 12:18:29AM +0300, Alexander Dymo wrote:
 Can I write formulas in russian language within LyX?
 When I type a russian letter, formula editor just do nothing.
 OS: Linux (glibc 2.2, pgcc 2.95.2)
 LyX: 1.1.6fix1
 XFree: 4.0.3, localization thought xkb
 all locale settings are correct.

I thing that currently the mathed doesn't support languages that use
charcters other than 7bit ASCII.
This will hopefully be fixed soon.

In the meantime you can use \newcommand to write the text outside of mathed:
Before the formula put the following (in latex mode)
\newcommand{\txt}{\textrm{Your text}}
and in the formula put \txt.



Re: unofficial deb package

2001-04-13 Thread Paolo M. Pumilia

From Jean-Marc Lasgouttes, Fri Apr 13, at 11:50:
 .Please tell me if you want it uploaded to ftp.lyx.org. I'm sure such a
 .package would be useful.


sure 
you are welcome!  

-- 
 Paolo Pumilia
 email: [EMAIL PROTECTED]
 visit our (under construction) web site: www.linfe.it




Re: formatting tables

2001-04-13 Thread Dekel Tsur

On Fri, Apr 13, 2001 at 10:17:29AM +0200, Herbert Voss wrote:
 Kevin Gross wrote:
  1. Is there any way to merge cells across rows? I know it can be done across
  columns using special cell/multicolumn but apparently there is no
  corresponding way to merge rows. Is there a latex workaround? Will merging
  rows be a feature in a later release?
 
 why do you need this? in fact of the linebreak option
 you can write so much lines as possible.

Use the mulirow package (get it from CTAN if it is not installed on your
machine)

  2. In a table, I've got some mathematical notation containing both super- and
  sub-scripts, e.g. in latex \textrm{H}^{x}_{g}. Unfortunately, the bottom of
  the "g" touches the underlying row border. Is there anyway to increase the
  row height so as to prevent this behavior?
 
 try in latex preamble
 
 \newcommand\myIndexPower[3]{%
   $\textrm{#1}_{\raisebox{0.25ex}{$\scriptstyle #2$}}%
^{\raisebox{0.2ex}{$\scriptstyle #3$}}$%
 }
 
 and in text in tex(red)
 
 \myIndexPower{base}{index}{exponent}

A different solution: put
\newcommand{inch}[1]{\raisebox{0pt}[\height][1.4\depth]{\ensuremath{#1}}}
in the preamble, and then put \inch{} around each instance of H^x_g.




Re: Two latex questions

2001-04-13 Thread Dekel Tsur

On Thu, Apr 12, 2001 at 11:45:26AM +0200, Stefano Ghirlanda wrote:
 Brett Jones [EMAIL PROTECTED] writes:
 
  First, I cite a reference in a figure caption, but don't like that
  it shows up in the TOF.  Is there a way to show the reference in the
  figure caption, but not in the TOF?
 
 In LaTeX you can provide an optional argument to caption, that is used
 in the tof. In LyX you could try to put [your tof text] as the first
 thing in the caption.

This won't work.

A nice way for having both caption and a short caption is the following:

Modify the stdlayouts.inc file (or just the layout file
you use for your document), adding to it the following lines:

---begin-
Style ShortCaption
 CopyStyle Caption
 LatexName setshortcaption
 LabelString   "Short Caption:"
 LabelType Static
 Preamble
\let\oldcaption=\caption
\renewcommand{\caption}[1]{
\ifx \shortcaption \undefined
  \oldcaption{#1}
\else
  \oldcaption[\shortcaption]{#1}
\fi
}
\newcommand{\setshortcaption}[1]{
\newcommand{\shortcaption}{#1}
}
 EndPreamble
End
-end-
Then you can put a short caption paragraph before your caption paragraph.



Meta Key

2001-04-13 Thread Yann Collete

Hello,

Finally, I solved the problem.
Under Exceed, the Alt key is defined as a system key.
When you press the Alt key a first time, the focus swap from X to
windows and when you press the Alt key for the second time,
the focus swap from windows to X. In the configuration menu, you can
change this behavior. I select for the Alt Key: "To X". So, now
when I press the Alt key, the focus doesn't change and the Alt key
behave correctly in Lyx.

Your sincerely,

Yann COLLETTE




Re: unofficial deb package

2001-04-13 Thread Andre Berger

* Jean-Marc Lasgouttes [EMAIL PROTECTED], 2001-04-13 14:00 +0200:
  "Paolo" == Paolo M Pumilia [EMAIL PROTECTED] writes:
 
 Paolo I have just packaged, for personal use, the latest lyx release
 Paolo 1.1.6fix1, on i686 hardware platform and debian/sid system
 Paolo (libc6 = 2.2.1-2 required)
 Paolo It can be retrieved at the url
 Paolo 
http://www.linfe.it/OpenLab/DebianPackages/unstable/contrib/lyx_1.1.6fix1-1_i386.deb
 
 Please tell me if you want it uploaded to ftp.lyx.org. I'm sure such a
 package would be useful.
 
 JMarc

I could contribute debian 2.2/potato packages (libc6 2.1.3) for PC and
PPC if anybody's interested, and they compile... I'd start with
1.1.6fix2 though, which seems to be due out.

Andre Berger[[EMAIL PROTECTED]]



Re: unofficial deb package

2001-04-13 Thread Jean-Marc Lasgouttes

 "Andre" == Andre Berger [EMAIL PROTECTED] writes:

Andre * Jean-Marc Lasgouttes [EMAIL PROTECTED],
Andre 2001-04-13 14:00 +0200:
  "Paolo" == Paolo M Pumilia [EMAIL PROTECTED] writes:
 
Paolo I have just packaged, for personal use, the latest lyx release
Paolo 1.1.6fix1, on i686 hardware platform and debian/sid system
Paolo (libc6 = 2.2.1-2 required) It can be retrieved at the url
Paolo 
http://www.linfe.it/OpenLab/DebianPackages/unstable/contrib/lyx_1.1.6fix1-1_i386.deb
  Please tell me if you want it uploaded to ftp.lyx.org. I'm sure
 such a package would be useful.
 
 JMarc

Andre I could contribute debian 2.2/potato packages (libc6 2.1.3) for
Andre PC and PPC if anybody's interested, and they compile... I'd
Andre start with 1.1.6fix2 though, which seems to be due out.

Before we do anything, you should probably see with Jules Bean
([EMAIL PROTECTED]) whether your packages are done with the right
description file (I have to admit I do not know much about that). I
would not want to have him annoyed at seeing non-official deb files
floating around.

Let's say I'll upload the file when I get an OK from Jules (Jules, are
you here?)

JMarc



Re: DocBook

2001-04-13 Thread ben

Robin Turner a crit :

 Is there a way to import DocBook .xml files into LyX?

 Robin

Good question :-) I've started writing a set of XSL stylesheets to
translate a DocBook XML document to LyX (DB2LyX).

You can first read the install  use file at:
http://perso.libertysurf.fr/bgu/db2lyx/manual.html
or/and download the package (that includes the manual file) at:
http://perso.libertysurf.fr/bgu/db2lyx/db2lyx-0.1.tar.gz

It is the very first release, and many things are missing. Please
contact me if you have any troubles with it, wishes or remarks.

Bye,
BG




I am still having problems to install - Solaris

2001-04-13 Thread leo ber

Hi
I am still trying to install Lyx on Solaris 8. I was having problems when I
was running make, so somebody suggest me to use gmake. I got gmake and
installed it...fi... and then when I use gmake on the lyx installation , I
got a little bit farther but gmake crashes too reporting this:

(Sorry for the long attachment... But if somebody has installed lyx on solaris
8, please let me know because I am really tired of equation editor 3.0 (word),
I could run the lyx on windows but it needs the xclient program that shutdowns
every 2 hours and it gets annoying...)

Thanks 
Leo

# gmake
Making all in intl
gmake[1]: Entering directory `/export/home/lbermude/LATEX/lyx-1.1.6fix1/intl'
gmake[1]: Nothing to be done for `all'.
gmake[1]: Leaving directory `/export/home/lbermude/LATEX/lyx-1.1.6fix1/intl'
Making all in po
gmake[1]: Entering directory `/export/home/lbermude/LATEX/lyx-1.1.6fix1/po'
gmake[1]: Nothing to be done for `all'.
gmake[1]: Leaving directory `/export/home/lbermude/LATEX/lyx-1.1.6fix1/po'
Making all in sigc++
gmake[1]: Entering directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
gmake  all-recursive
gmake[2]: Entering directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
Making all in macros
gmake[3]: Entering directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++/macros'
gmake[3]: Nothing to be done for `all'.
gmake[3]: Leaving directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++/macros'
gmake[3]: Entering directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
/bin/sh ./libtool --mode=compile CC -DHAVE_CONFIG_H -I. -I. -I. -I./.. -I./.. 
  -g -c basic_signal.cc
CC -DHAVE_CONFIG_H -I. -I. -I. -I./.. -I./.. -g -c basic_signal.cc -o
basic_signal.o
"./../sigc++/basic_signal.h", line 66: Error: Invalid template parameter
default.
"./../sigc++/basic_signal.h", line 66: Error: Function templates may not have
default template parameters.
"./../sigc++/basic_signal.h", line 66: Error: A declaration was expected
instead of "".
"./../sigc++/basic_signal.h", line 66: Error: A declaration was expected
instead of "".
"./../sigc++/basic_signal.h", line 70: Error: R is not defined.
"./../sigc++/basic_signal.h", line 70: Error: Template parameter SigC::R
requires a type argument.
"./../sigc++/basic_signal.h", line 71: Error: Illegal value for template
parameter.
"./../sigc++/basic_signal.h", line 71: Error: No instantiation arguments
provided for template "SigC::Slot0SigC::R".
"./../sigc++/basic_signal.h", line 75: Error: Marsh is not defined.
"./../sigc++/basic_signal.h", line 75: Error: OutType is not defined.
"./../sigc++/basic_signal.h", line 76: Error: R is not defined.
"./../sigc++/basic_signal.h", line 82: Error: Use ";" to terminate
declarations.
"./../sigc++/basic_signal.h", line 82: Error: "}" expected instead of "".
"./../sigc++/basic_signal.h", line 82: Error: Use ";" to terminate
declarations.
"./../sigc++/basic_signal.h", line 82: Error: A declaration was expected
instead of "".
"./../sigc++/basic_signal.h", line 82: Error: "," expected instead of "".
"./../sigc++/basic_signal.h", line 83: Error: Illegal value for template
parameter.
"./../sigc++/basic_signal.h", line 83: Error: No instantiation arguments
provided for template "SigC::CallDataObj2SigC::C, SigC::O".
"./../sigc++/basic_signal.h", line 85: Error: SType is not defined.
"./../sigc++/basic_signal.h", line 88: Error: SigC::O is not a structure
type.
"./../sigc++/basic_signal.h", line 91: Error: A declaration was expected
instead of "public".
"./../sigc++/basic_signal.h", line 92: Error: OutSlotType is not defined.
"./../sigc++/basic_signal.h", line 94: Error: The function "in_connect" must
have a prototype.
"./../sigc++/basic_signal.h", line 96: Error: There is no matching ")".
"./../sigc++/basic_signal.h", line 97: Error: Can only use this within a
non-static member function.
Compilation aborted, too many Error messages.
gmake[3]: *** [basic_signal.lo] Error 1
gmake[3]: Leaving directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
gmake[2]: *** [all-recursive] Error 1
gmake[2]: Leaving directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
gmake[1]: *** [all-recursive-am] Error 2
gmake[1]: Leaving directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
gmake: *** [all-recursive] Error 1
# 



Get free email and a permanent address at http://www.netaddress.com/?N=1



Re: Quality problems with PDF windows

2001-04-13 Thread EagleIce

On Wednesday 11 April 2001 15:36, Matej Cepl wrote:
 http://www.cs.wisc.edu/~ghost/
  On Wednesday 11 April 2001 12:40, EagleIce wrote:
   Is there a free Win98  W2k software available for this purpose?
Thank's...:-)

ei

-- 
@ EagleIce  [EMAIL PROTECTED]  Running SuSE Linux 7.1 @
@~ Webmaster http://erin.se ~~ http://www.inspired-leadership.com ~@








\vspace in multicols{}

2001-04-13 Thread Jim Osborn

Can someone help explain how to put some extra blank vertical
space in a column in a multicols environment?  For example,
in a 3-column page, I can put \vspace*{10in} or whatever, and
push the subsequent text to the bottom of the first column.
But I can't seem to push it to the top of the second column!
If I add more space, it seems to simply push the text further
down, off the bottom of the page.  If I put a \newpage in the
first column, it gives me an entire blank page, starting the
text at the top of the next page.

I can't seem to get the text to flow gracefully between columns
with spacing commands.  Is there a way to do this?

TIA,

Jim



Re: \vspace in multicols{}

2001-04-13 Thread Christopher Jones

Couple of things: in the paragraph dialogue, you can set vfill above and below,
and you can "keep" it. Try playing around with this.

Also, the multicol package tries to adjust stuff to fill the whole column. If
you specify \raggedcolumns then you can override this behavior and specify your
own pushings around.

On Fri, 13 Apr 2001, you wrote:
 Can someone help explain how to put some extra blank vertical
 space in a column in a multicols environment?  For example,
 in a 3-column page, I can put \vspace*{10in} or whatever, and
 push the subsequent text to the bottom of the first column.
 But I can't seem to push it to the top of the second column!
 If I add more space, it seems to simply push the text further
 down, off the bottom of the page.  If I put a \newpage in the
 first column, it gives me an entire blank page, starting the
 text at the top of the next page.
 
 I can't seem to get the text to flow gracefully between columns
 with spacing commands.  Is there a way to do this?
 
 TIA,
 
 Jim



Re: cjk-lyx

2001-04-13 Thread Curtis Brune

Curtis Brune wrote:
 
 Hi,
 
 For my Chinese class I'm most interested in writing short
 documents and printing using big5 (traditional) -- cjk-lyx sounds
 perfect.
 
 cjk-lyx fails to run, however, saying "Sorry, This subroutine requires
 the scalable hangul fonts".  I can't seem to find any debian packages
 that contain hangul fonts (which are korean I believe).
 

Are there hangul font packages for debian unstable/testing?  I searched
and could not find them under stable or testing.

Cheers,
Curt



stupid newbie question...

2001-04-13 Thread Todd L. Miller

I do a 'M_c t', type '\circumflex a' and get an error from
LaTeX: 'Undefined control sequence.
\circumflex
o'

When I 'C_m' into Math mode, and type '\hat a', everything works
find; LyX even recognizes what I'm trying to do and display the
(emphasized) a with a hat.  (Trying '\hat a' instead of circumlex, above,
fails, LaTeX thinking I forgot to put myself in math mode.)

So how do I get normal text accents (and/or normal TeX macros?) to
work?  I'm using the the sequentially-numbered AMS article format.

Thanks.

-Todd L. Miller




Re: part of a document in 1 column?

2001-04-13 Thread Aaron Macks

Duh, I forgot about the LaTex commands:
\onecolumn and \twocolumn
thanks
Aaron
 
 I have a 2 column document, part of which I want to make one column,
 is that possible?
 Aaron
 




Re: part of a document in 1 column?

2001-04-13 Thread Herbert Voss

Aaron Macks wrote:
 
 I have a 2 column document, part of which I want to make one column,
 is that possible?

use package multicol, part of your local texinstallation or
available at ctan.

in .lyx/examples is a lyx example file

Herbert

-- 
http:[EMAIL PROTECTED]




DocBook

2001-04-13 Thread Robin Turner

Is there a way to import DocBook .xml files into LyX?

Robin



Meta Key

2001-04-13 Thread Yann Collete

Hello,

I've a problem with the Meta key.
I use an Unix Emulator (Exceed) and a french keyboard.
For this keyboard, the meta key is binded to the escape key
(it works fine under xemacs).
Under Lyx, I use the emacs binding (which redefine the meta key as
the escape key). It works fine (I can insert an equation using 
Esc-m m). But when I am under math editor, if I want to insert
an exponent (Esc-m e) or an index (Esc-m i), when I press the Esc
key, I leave the math editor. So, I think the binding (Meta = Esc)
is not working under the math editor.
How can I do to have the meta binding working correctly under the
math editor ?

Your sincerely,

Yann COLLETTE




Re: Meta Key

2001-04-13 Thread Jean-Marc Lasgouttes

 "Yann" == Yann Collete [EMAIL PROTECTED] writes:

Yann Hello, I've a problem with the Meta key. I use an Unix Emulator
Yann (Exceed) and a french keyboard. For this keyboard, the meta key
Yann is binded to the escape key (it works fine under xemacs). Under
Yann Lyx, I use the emacs binding (which redefine the meta key as the
Yann escape key). It works fine (I can insert an equation using Esc-m
Yann m). But when I am under math editor, if I want to insert an
Yann exponent (Esc-m e) or an index (Esc-m i), when I press the Esc
Yann key, I leave the math editor. So, I think the binding (Meta =
Yann Esc) is not working under the math editor. How can I do to have
Yann the meta binding working correctly under the math editor ?

Unfortunately, the locking insets (like math) explicitely exit on
escape (which is a very bad idea IMO). You can try to remove this
"feature" by commenting out the following code (around line 176 if
src/lyxfunc.C): 

if (owner-view()-available()) {
// this function should be used always [asierra060396]
UpdatableInset * tli = owner-view()-theLockingInset();
if (tli  (keysym == XK_Escape)) {
if (tli == tli-GetLockingInset()) {
owner-view()-unlockInset(tli);
owner-view()-text-CursorRight(owner-view());
moveCursorUpdate(false);
owner-showState();
} else {
tli-UnlockInsetInInset(owner-view(),
tli-GetLockingInset(),tr
ue);
}
//return 0;
return FL_PREEMPT;
}
}


JMarc



Re: unofficial deb package

2001-04-13 Thread Jean-Marc Lasgouttes

 "Paolo" == Paolo M Pumilia [EMAIL PROTECTED] writes:

Paolo I have just packaged, for personal use, the latest lyx release
Paolo 1.1.6fix1, on i686 hardware platform and debian/sid system
Paolo (libc6 = 2.2.1-2 required)

Paolo It can be retrieved at the url
Paolo 
http://www.linfe.it/OpenLab/DebianPackages/unstable/contrib/lyx_1.1.6fix1-1_i386.deb

Paolo It is just my first attempt to build a deb package, so please
Paolo let me know if you will find it useful

Please tell me if you want it uploaded to ftp.lyx.org. I'm sure such a
package would be useful.

JMarc



Re: Meta Key

2001-04-13 Thread Yann Collete

Ok, thank you.
Do you plan to correct this for the fix2 release ?

YC
 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
 X-No-Archive: yes
 List-Post: mailto:[EMAIL PROTECTED]
 List-Help: mailto:[EMAIL PROTECTED]
 List-Unsubscribe: 
mailto:[EMAIL PROTECTED]
 Delivered-To: mailing list [EMAIL PROTECTED]
 To: Yann Collete [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Subject: Re: Meta Key
 From: Jean-Marc Lasgouttes [EMAIL PROTECTED]
 Date: 13 Apr 2001 11:48:50 +0200
 
  "Yann" == Yann Collete [EMAIL PROTECTED] writes:
 
 Yann Hello, I've a problem with the Meta key. I use an Unix Emulator
 Yann (Exceed) and a french keyboard. For this keyboard, the meta key
 Yann is binded to the escape key (it works fine under xemacs). Under
 Yann Lyx, I use the emacs binding (which redefine the meta key as the
 Yann escape key). It works fine (I can insert an equation using Esc-m
 Yann m). But when I am under math editor, if I want to insert an
 Yann exponent (Esc-m e) or an index (Esc-m i), when I press the Esc
 Yann key, I leave the math editor. So, I think the binding (Meta =
 Yann Esc) is not working under the math editor. How can I do to have
 Yann the meta binding working correctly under the math editor ?
 
 Unfortunately, the locking insets (like math) explicitely exit on
 escape (which is a very bad idea IMO). You can try to remove this
 "feature" by commenting out the following code (around line 176 if
 src/lyxfunc.C): 
 
 if (owner-view()-available()) {
 // this function should be used always [asierra060396]
 UpdatableInset * tli = owner-view()-theLockingInset();
 if (tli  (keysym == XK_Escape)) {
 if (tli == tli-GetLockingInset()) {
 owner-view()-unlockInset(tli);
 
owner-view()-text-CursorRight(owner-view());
 moveCursorUpdate(false);
 owner-showState();
 } else {
 tli-UnlockInsetInInset(owner-view(),
 
tli-GetLockingInset(),tr
 ue);
 }
 //return 0;
 return FL_PREEMPT;
 }
 }
 
 
 JMarc




Re: RTF: changing linespacing for a single paragraph

2001-04-13 Thread Jean-Marc Lasgouttes

 "Christopher" == Christopher Jones [EMAIL PROTECTED] writes:

Christopher I have two inputted files in my document, I need their
Christopher contents to be doublespaced rather than single spaced,
Christopher which is the document default.

You can change the spacing of a particular paragraph via the command
  M-x paragraph-spacing double

There is unfortunately no GUI way of doing this (yet). Valid values
are "single", "onehalf", "double", "other length" and "default".

JMarc



Re: Meta Key

2001-04-13 Thread Jean-Marc Lasgouttes

 "Yann" == Yann Collete [EMAIL PROTECTED] writes:

Yann Ok, thank you. Do you plan to correct this for the fix2 release
Yann ?

No :) I do not know what the right fix is in this case... What I
propose is just a stopgap. I'd be interested to know whether it helps in
your case.

JMarc



Re: slides/foils?

2001-04-13 Thread Herbert Voss

"Anna H. Pryor" wrote:
 
 \fancyhead[L]{ \includegraphics [width=.5cm]{Meatball.eps}
 
 (I put in all of the comments to just get what I thought was the necessary
 stuff.)
 
 When I click on postscript the first time, it claims that the document is
 empty, when I click on it a second time the logo comes up, but it is centered
 and too large, and not at the top of the page.

can you send a lyx example file (only 1 page) with the imagefile
for your logo?

Herbert

-- 
http:[EMAIL PROTECTED]



Re: Meta Key

2001-04-13 Thread Dekel Tsur

On Fri, Apr 13, 2001 at 11:32:55AM +0200, Yann Collete wrote:
 Hello,
 
 I've a problem with the Meta key.
 I use an Unix Emulator (Exceed) and a french keyboard.
 For this keyboard, the meta key is binded to the escape key
 (it works fine under xemacs).
 Under Lyx, I use the emacs binding (which redefine the meta key as
 the escape key). It works fine (I can insert an equation using 
 Esc-m m). But when I am under math editor, if I want to insert
 an exponent (Esc-m e) or an index (Esc-m i), when I press the Esc

In case you don't know, you can use the ^ and _ keys for exponent/index.



Meta Key

2001-04-13 Thread Yann Collete

Hello again,

How can I bind the right control, left control or alt key to the Meta key
in a bind file.
I've tried:
\bind "Alt""Meta-prefix"
but lyx doesn't recognize the Alt symbol.

YC




Re: Meta Key

2001-04-13 Thread Jean-Marc Lasgouttes

 "Yann" == Yann Collete [EMAIL PROTECTED] writes:

Yann Hello again, How can I bind the right control, left control or
Yann alt key to the Meta key in a bind file. I've tried: \bind "Alt"
Yann "Meta-prefix" but lyx doesn't recognize the Alt symbol.

You can't. What you have to do is play with xmodmap settings so that
Meta is right (or see if you can improve your x server configuration).

JMarc



Re: Writing formulas in russian and ukrainian languages

2001-04-13 Thread Dekel Tsur

On Fri, Apr 13, 2001 at 12:18:29AM +0300, Alexander Dymo wrote:
 Can I write formulas in russian language within LyX?
 When I type a russian letter, formula editor just do nothing.
 OS: Linux (glibc 2.2, pgcc 2.95.2)
 LyX: 1.1.6fix1
 XFree: 4.0.3, localization thought xkb
 all locale settings are correct.

I thing that currently the mathed doesn't support languages that use
charcters other than 7bit ASCII.
This will hopefully be fixed soon.

In the meantime you can use \newcommand to write the text outside of mathed:
Before the formula put the following (in latex mode)
\newcommand{\txt}{\textrm{Your text}}
and in the formula put \txt.



Re: unofficial deb package

2001-04-13 Thread Paolo M. Pumilia

From Jean-Marc Lasgouttes, Fri Apr 13, at 11:50:
 .Please tell me if you want it uploaded to ftp.lyx.org. I'm sure such a
 .package would be useful.


sure 
you are welcome!  

-- 
 Paolo Pumilia
 email: [EMAIL PROTECTED]
 visit our (under construction) web site: www.linfe.it




Re: formatting tables

2001-04-13 Thread Dekel Tsur

On Fri, Apr 13, 2001 at 10:17:29AM +0200, Herbert Voss wrote:
 Kevin Gross wrote:
  1. Is there any way to merge cells across rows? I know it can be done across
  columns using special cell/multicolumn but apparently there is no
  corresponding way to merge rows. Is there a latex workaround? Will merging
  rows be a feature in a later release?
 
 why do you need this? in fact of the linebreak option
 you can write so much lines as possible.

Use the mulirow package (get it from CTAN if it is not installed on your
machine)

  2. In a table, I've got some mathematical notation containing both super- and
  sub-scripts, e.g. in latex \textrm{H}^{x}_{g}. Unfortunately, the bottom of
  the "g" touches the underlying row border. Is there anyway to increase the
  row height so as to prevent this behavior?
 
 try in latex preamble
 
 \newcommand\myIndexPower[3]{%
   $\textrm{#1}_{\raisebox{0.25ex}{$\scriptstyle #2$}}%
^{\raisebox{0.2ex}{$\scriptstyle #3$}}$%
 }
 
 and in text in tex(red)
 
 \myIndexPower{base}{index}{exponent}

A different solution: put
\newcommand{inch}[1]{\raisebox{0pt}[\height][1.4\depth]{\ensuremath{#1}}}
in the preamble, and then put \inch{} around each instance of H^x_g.




Re: Two latex questions

2001-04-13 Thread Dekel Tsur

On Thu, Apr 12, 2001 at 11:45:26AM +0200, Stefano Ghirlanda wrote:
 Brett Jones [EMAIL PROTECTED] writes:
 
  First, I cite a reference in a figure caption, but don't like that
  it shows up in the TOF.  Is there a way to show the reference in the
  figure caption, but not in the TOF?
 
 In LaTeX you can provide an optional argument to caption, that is used
 in the tof. In LyX you could try to put [your tof text] as the first
 thing in the caption.

This won't work.

A nice way for having both caption and a short caption is the following:

Modify the stdlayouts.inc file (or just the layout file
you use for your document), adding to it the following lines:

---begin-
Style ShortCaption
 CopyStyle Caption
 LatexName setshortcaption
 LabelString   "Short Caption:"
 LabelType Static
 Preamble
\let\oldcaption=\caption
\renewcommand{\caption}[1]{
\ifx \shortcaption \undefined
  \oldcaption{#1}
\else
  \oldcaption[\shortcaption]{#1}
\fi
}
\newcommand{\setshortcaption}[1]{
\newcommand{\shortcaption}{#1}
}
 EndPreamble
End
-end-
Then you can put a short caption paragraph before your caption paragraph.



Meta Key

2001-04-13 Thread Yann Collete

Hello,

Finally, I solved the problem.
Under Exceed, the Alt key is defined as a system key.
When you press the Alt key a first time, the focus swap from X to
windows and when you press the Alt key for the second time,
the focus swap from windows to X. In the configuration menu, you can
change this behavior. I select for the Alt Key: "To X". So, now
when I press the Alt key, the focus doesn't change and the Alt key
behave correctly in Lyx.

Your sincerely,

Yann COLLETTE




Re: unofficial deb package

2001-04-13 Thread Andre Berger

* Jean-Marc Lasgouttes [EMAIL PROTECTED], 2001-04-13 14:00 +0200:
  "Paolo" == Paolo M Pumilia [EMAIL PROTECTED] writes:
 
 Paolo I have just packaged, for personal use, the latest lyx release
 Paolo 1.1.6fix1, on i686 hardware platform and debian/sid system
 Paolo (libc6 = 2.2.1-2 required)
 Paolo It can be retrieved at the url
 Paolo 
http://www.linfe.it/OpenLab/DebianPackages/unstable/contrib/lyx_1.1.6fix1-1_i386.deb
 
 Please tell me if you want it uploaded to ftp.lyx.org. I'm sure such a
 package would be useful.
 
 JMarc

I could contribute debian 2.2/potato packages (libc6 2.1.3) for PC and
PPC if anybody's interested, and they compile... I'd start with
1.1.6fix2 though, which seems to be due out.

Andre Berger[[EMAIL PROTECTED]]



Re: unofficial deb package

2001-04-13 Thread Jean-Marc Lasgouttes

 "Andre" == Andre Berger [EMAIL PROTECTED] writes:

Andre * Jean-Marc Lasgouttes [EMAIL PROTECTED],
Andre 2001-04-13 14:00 +0200:
  "Paolo" == Paolo M Pumilia [EMAIL PROTECTED] writes:
 
Paolo I have just packaged, for personal use, the latest lyx release
Paolo 1.1.6fix1, on i686 hardware platform and debian/sid system
Paolo (libc6 = 2.2.1-2 required) It can be retrieved at the url
Paolo 
http://www.linfe.it/OpenLab/DebianPackages/unstable/contrib/lyx_1.1.6fix1-1_i386.deb
  Please tell me if you want it uploaded to ftp.lyx.org. I'm sure
 such a package would be useful.
 
 JMarc

Andre I could contribute debian 2.2/potato packages (libc6 2.1.3) for
Andre PC and PPC if anybody's interested, and they compile... I'd
Andre start with 1.1.6fix2 though, which seems to be due out.

Before we do anything, you should probably see with Jules Bean
([EMAIL PROTECTED]) whether your packages are done with the right
description file (I have to admit I do not know much about that). I
would not want to have him annoyed at seeing non-official deb files
floating around.

Let's say I'll upload the file when I get an OK from Jules (Jules, are
you here?)

JMarc



Re: DocBook

2001-04-13 Thread ben

Robin Turner a crit :

 Is there a way to import DocBook .xml files into LyX?

 Robin

Good question :-) I've started writing a set of XSL stylesheets to
translate a DocBook XML document to LyX (DB2LyX).

You can first read the install  use file at:
http://perso.libertysurf.fr/bgu/db2lyx/manual.html
or/and download the package (that includes the manual file) at:
http://perso.libertysurf.fr/bgu/db2lyx/db2lyx-0.1.tar.gz

It is the very first release, and many things are missing. Please
contact me if you have any troubles with it, wishes or remarks.

Bye,
BG




I am still having problems to install - Solaris

2001-04-13 Thread leo ber

Hi
I am still trying to install Lyx on Solaris 8. I was having problems when I
was running make, so somebody suggest me to use gmake. I got gmake and
installed it...fi... and then when I use gmake on the lyx installation , I
got a little bit farther but gmake crashes too reporting this:

(Sorry for the long attachment... But if somebody has installed lyx on solaris
8, please let me know because I am really tired of equation editor 3.0 (word),
I could run the lyx on windows but it needs the xclient program that shutdowns
every 2 hours and it gets annoying...)

Thanks 
Leo

# gmake
Making all in intl
gmake[1]: Entering directory `/export/home/lbermude/LATEX/lyx-1.1.6fix1/intl'
gmake[1]: Nothing to be done for `all'.
gmake[1]: Leaving directory `/export/home/lbermude/LATEX/lyx-1.1.6fix1/intl'
Making all in po
gmake[1]: Entering directory `/export/home/lbermude/LATEX/lyx-1.1.6fix1/po'
gmake[1]: Nothing to be done for `all'.
gmake[1]: Leaving directory `/export/home/lbermude/LATEX/lyx-1.1.6fix1/po'
Making all in sigc++
gmake[1]: Entering directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
gmake  all-recursive
gmake[2]: Entering directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
Making all in macros
gmake[3]: Entering directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++/macros'
gmake[3]: Nothing to be done for `all'.
gmake[3]: Leaving directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++/macros'
gmake[3]: Entering directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
/bin/sh ./libtool --mode=compile CC -DHAVE_CONFIG_H -I. -I. -I. -I./.. -I./.. 
  -g -c basic_signal.cc
CC -DHAVE_CONFIG_H -I. -I. -I. -I./.. -I./.. -g -c basic_signal.cc -o
basic_signal.o
"./../sigc++/basic_signal.h", line 66: Error: Invalid template parameter
default.
"./../sigc++/basic_signal.h", line 66: Error: Function templates may not have
default template parameters.
"./../sigc++/basic_signal.h", line 66: Error: A declaration was expected
instead of "".
"./../sigc++/basic_signal.h", line 66: Error: A declaration was expected
instead of "".
"./../sigc++/basic_signal.h", line 70: Error: R is not defined.
"./../sigc++/basic_signal.h", line 70: Error: Template parameter SigC::R
requires a type argument.
"./../sigc++/basic_signal.h", line 71: Error: Illegal value for template
parameter.
"./../sigc++/basic_signal.h", line 71: Error: No instantiation arguments
provided for template "SigC::Slot0SigC::R".
"./../sigc++/basic_signal.h", line 75: Error: Marsh is not defined.
"./../sigc++/basic_signal.h", line 75: Error: OutType is not defined.
"./../sigc++/basic_signal.h", line 76: Error: R is not defined.
"./../sigc++/basic_signal.h", line 82: Error: Use ";" to terminate
declarations.
"./../sigc++/basic_signal.h", line 82: Error: "}" expected instead of "".
"./../sigc++/basic_signal.h", line 82: Error: Use ";" to terminate
declarations.
"./../sigc++/basic_signal.h", line 82: Error: A declaration was expected
instead of "".
"./../sigc++/basic_signal.h", line 82: Error: "," expected instead of "".
"./../sigc++/basic_signal.h", line 83: Error: Illegal value for template
parameter.
"./../sigc++/basic_signal.h", line 83: Error: No instantiation arguments
provided for template "SigC::CallDataObj2SigC::C, SigC::O".
"./../sigc++/basic_signal.h", line 85: Error: SType is not defined.
"./../sigc++/basic_signal.h", line 88: Error: SigC::O is not a structure
type.
"./../sigc++/basic_signal.h", line 91: Error: A declaration was expected
instead of "public".
"./../sigc++/basic_signal.h", line 92: Error: OutSlotType is not defined.
"./../sigc++/basic_signal.h", line 94: Error: The function "in_connect" must
have a prototype.
"./../sigc++/basic_signal.h", line 96: Error: There is no matching ")".
"./../sigc++/basic_signal.h", line 97: Error: Can only use this within a
non-static member function.
Compilation aborted, too many Error messages.
gmake[3]: *** [basic_signal.lo] Error 1
gmake[3]: Leaving directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
gmake[2]: *** [all-recursive] Error 1
gmake[2]: Leaving directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
gmake[1]: *** [all-recursive-am] Error 2
gmake[1]: Leaving directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
gmake: *** [all-recursive] Error 1
# 



Get free email and a permanent address at http://www.netaddress.com/?N=1



Re: Quality problems with PDF windows

2001-04-13 Thread EagleIce

On Wednesday 11 April 2001 15:36, Matej Cepl wrote:
 http://www.cs.wisc.edu/~ghost/
  On Wednesday 11 April 2001 12:40, EagleIce wrote:
   Is there a free Win98  W2k software available for this purpose?
Thank's...:-)

ei

-- 
@ EagleIce  [EMAIL PROTECTED]  Running SuSE Linux 7.1 @
@~ Webmaster http://erin.se ~~ http://www.inspired-leadership.com ~@








\vspace in multicols{}

2001-04-13 Thread Jim Osborn

Can someone help explain how to put some extra blank vertical
space in a column in a multicols environment?  For example,
in a 3-column page, I can put \vspace*{10in} or whatever, and
push the subsequent text to the bottom of the first column.
But I can't seem to push it to the top of the second column!
If I add more space, it seems to simply push the text further
down, off the bottom of the page.  If I put a \newpage in the
first column, it gives me an entire blank page, starting the
text at the top of the next page.

I can't seem to get the text to flow gracefully between columns
with spacing commands.  Is there a way to do this?

TIA,

Jim



Re: \vspace in multicols{}

2001-04-13 Thread Christopher Jones

Couple of things: in the paragraph dialogue, you can set vfill above and below,
and you can "keep" it. Try playing around with this.

Also, the multicol package tries to adjust stuff to fill the whole column. If
you specify \raggedcolumns then you can override this behavior and specify your
own pushings around.

On Fri, 13 Apr 2001, you wrote:
 Can someone help explain how to put some extra blank vertical
 space in a column in a multicols environment?  For example,
 in a 3-column page, I can put \vspace*{10in} or whatever, and
 push the subsequent text to the bottom of the first column.
 But I can't seem to push it to the top of the second column!
 If I add more space, it seems to simply push the text further
 down, off the bottom of the page.  If I put a \newpage in the
 first column, it gives me an entire blank page, starting the
 text at the top of the next page.
 
 I can't seem to get the text to flow gracefully between columns
 with spacing commands.  Is there a way to do this?
 
 TIA,
 
 Jim



Re: cjk-lyx

2001-04-13 Thread Curtis Brune

Curtis Brune wrote:
 
 Hi,
 
 For my Chinese class I'm most interested in writing short
 documents and printing using big5 (traditional) -- cjk-lyx sounds
 perfect.
 
 cjk-lyx fails to run, however, saying "Sorry, This subroutine requires
 the scalable hangul fonts".  I can't seem to find any debian packages
 that contain hangul fonts (which are korean I believe).
 

Are there hangul font packages for debian unstable/testing?  I searched
and could not find them under stable or testing.

Cheers,
Curt



stupid newbie question...

2001-04-13 Thread Todd L. Miller

I do a 'M_c t', type '\circumflex a' and get an error from
LaTeX: 'Undefined control sequence.
\circumflex
o'

When I 'C_m' into Math mode, and type '\hat a', everything works
find; LyX even recognizes what I'm trying to do and display the
(emphasized) a with a hat.  (Trying '\hat a' instead of circumlex, above,
fails, LaTeX thinking I forgot to put myself in math mode.)

So how do I get normal text accents (and/or normal TeX macros?) to
work?  I'm using the the sequentially-numbered AMS article format.

Thanks.

-Todd L. Miller




Re: part of a document in 1 column?

2001-04-13 Thread Aaron Macks

Duh, I forgot about the LaTex commands:
\onecolumn and \twocolumn
thanks
Aaron
> 
> I have a 2 column document, part of which I want to make one column,
> is that possible?
> Aaron
> 




Re: part of a document in 1 column?

2001-04-13 Thread Herbert Voss

Aaron Macks wrote:
> 
> I have a 2 column document, part of which I want to make one column,
> is that possible?

use package multicol, part of your local texinstallation or
available at ctan.

in .lyx/examples is a lyx example file

Herbert

-- 
http:[EMAIL PROTECTED]




DocBook

2001-04-13 Thread Robin Turner

Is there a way to import DocBook .xml files into LyX?

Robin



Meta Key

2001-04-13 Thread Yann Collete

Hello,

I've a problem with the Meta key.
I use an Unix Emulator (Exceed) and a french keyboard.
For this keyboard, the meta key is binded to the escape key
(it works fine under xemacs).
Under Lyx, I use the emacs binding (which redefine the meta key as
the escape key). It works fine (I can insert an equation using 
Esc-m m). But when I am under math editor, if I want to insert
an exponent (Esc-m e) or an index (Esc-m i), when I press the Esc
key, I leave the math editor. So, I think the binding (Meta = Esc)
is not working under the math editor.
How can I do to have the meta binding working correctly under the
math editor ?

Your sincerely,

Yann COLLETTE




Re: Meta Key

2001-04-13 Thread Jean-Marc Lasgouttes

> "Yann" == Yann Collete <[EMAIL PROTECTED]> writes:

Yann> Hello, I've a problem with the Meta key. I use an Unix Emulator
Yann> (Exceed) and a french keyboard. For this keyboard, the meta key
Yann> is binded to the escape key (it works fine under xemacs). Under
Yann> Lyx, I use the emacs binding (which redefine the meta key as the
Yann> escape key). It works fine (I can insert an equation using Esc-m
Yann> m). But when I am under math editor, if I want to insert an
Yann> exponent (Esc-m e) or an index (Esc-m i), when I press the Esc
Yann> key, I leave the math editor. So, I think the binding (Meta =
Yann> Esc) is not working under the math editor. How can I do to have
Yann> the meta binding working correctly under the math editor ?

Unfortunately, the locking insets (like math) explicitely exit on
escape (which is a very bad idea IMO). You can try to remove this
"feature" by commenting out the following code (around line 176 if
src/lyxfunc.C): 

if (owner->view()->available()) {
// this function should be used always [asierra060396]
UpdatableInset * tli = owner->view()->theLockingInset();
if (tli && (keysym == XK_Escape)) {
if (tli == tli->GetLockingInset()) {
owner->view()->unlockInset(tli);
owner->view()->text->CursorRight(owner->view());
moveCursorUpdate(false);
owner->showState();
} else {
tli->UnlockInsetInInset(owner->view(),
tli->GetLockingInset(),tr
ue);
}
//return 0;
return FL_PREEMPT;
}
}


JMarc



Re: unofficial deb package

2001-04-13 Thread Jean-Marc Lasgouttes

> "Paolo" == Paolo M Pumilia <[EMAIL PROTECTED]> writes:

Paolo> I have just packaged, for personal use, the latest lyx release
Paolo> 1.1.6fix1, on i686 hardware platform and debian/sid system
Paolo> (libc6 >= 2.2.1-2 required)

Paolo> It can be retrieved at the url
Paolo> 
http://www.linfe.it/OpenLab/DebianPackages/unstable/contrib/lyx_1.1.6fix1-1_i386.deb

Paolo> It is just my first attempt to build a deb package, so please
Paolo> let me know if you will find it useful

Please tell me if you want it uploaded to ftp.lyx.org. I'm sure such a
package would be useful.

JMarc



Re: Meta Key

2001-04-13 Thread Yann Collete

Ok, thank you.
Do you plan to correct this for the fix2 release ?

YC
> Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
> X-No-Archive: yes
> List-Post: 
> List-Help: 
> List-Unsubscribe: 

> Delivered-To: mailing list [EMAIL PROTECTED]
> To: Yann Collete <[EMAIL PROTECTED]>
> Cc: [EMAIL PROTECTED]
> Subject: Re: Meta Key
> From: Jean-Marc Lasgouttes <[EMAIL PROTECTED]>
> Date: 13 Apr 2001 11:48:50 +0200
> 
> > "Yann" == Yann Collete <[EMAIL PROTECTED]> writes:
> 
> Yann> Hello, I've a problem with the Meta key. I use an Unix Emulator
> Yann> (Exceed) and a french keyboard. For this keyboard, the meta key
> Yann> is binded to the escape key (it works fine under xemacs). Under
> Yann> Lyx, I use the emacs binding (which redefine the meta key as the
> Yann> escape key). It works fine (I can insert an equation using Esc-m
> Yann> m). But when I am under math editor, if I want to insert an
> Yann> exponent (Esc-m e) or an index (Esc-m i), when I press the Esc
> Yann> key, I leave the math editor. So, I think the binding (Meta =
> Yann> Esc) is not working under the math editor. How can I do to have
> Yann> the meta binding working correctly under the math editor ?
> 
> Unfortunately, the locking insets (like math) explicitely exit on
> escape (which is a very bad idea IMO). You can try to remove this
> "feature" by commenting out the following code (around line 176 if
> src/lyxfunc.C): 
> 
> if (owner->view()->available()) {
> // this function should be used always [asierra060396]
> UpdatableInset * tli = owner->view()->theLockingInset();
> if (tli && (keysym == XK_Escape)) {
> if (tli == tli->GetLockingInset()) {
> owner->view()->unlockInset(tli);
> 
owner->view()->text->CursorRight(owner->view());
> moveCursorUpdate(false);
> owner->showState();
> } else {
> tli->UnlockInsetInInset(owner->view(),
> 
tli->GetLockingInset(),tr
> ue);
> }
> //return 0;
> return FL_PREEMPT;
> }
> }
> 
> 
> JMarc




Re: RTF: changing linespacing for a single paragraph

2001-04-13 Thread Jean-Marc Lasgouttes

> "Christopher" == Christopher Jones <[EMAIL PROTECTED]> writes:

Christopher> I have two inputted files in my document, I need their
Christopher> contents to be doublespaced rather than single spaced,
Christopher> which is the document default.

You can change the spacing of a particular paragraph via the command
  M-x paragraph-spacing double

There is unfortunately no GUI way of doing this (yet). Valid values
are "single", "onehalf", "double", "other " and "default".

JMarc



Re: Meta Key

2001-04-13 Thread Jean-Marc Lasgouttes

> "Yann" == Yann Collete <[EMAIL PROTECTED]> writes:

Yann> Ok, thank you. Do you plan to correct this for the fix2 release
Yann> ?

No :) I do not know what the right fix is in this case... What I
propose is just a stopgap. I'd be interested to know whether it helps in
your case.

JMarc



Re: slides/foils?

2001-04-13 Thread Herbert Voss

"Anna H. Pryor" wrote:
> 
> \fancyhead[L]{ \includegraphics [width=.5cm]{Meatball.eps}
> 
> (I put in all of the comments to just get what I thought was the necessary
> stuff.)
> 
> When I click on postscript the first time, it claims that the document is
> empty, when I click on it a second time the logo comes up, but it is centered
> and too large, and not at the top of the page.

can you send a lyx example file (only 1 page) with the imagefile
for your logo?

Herbert

-- 
http:[EMAIL PROTECTED]



Re: Meta Key

2001-04-13 Thread Dekel Tsur

On Fri, Apr 13, 2001 at 11:32:55AM +0200, Yann Collete wrote:
> Hello,
> 
> I've a problem with the Meta key.
> I use an Unix Emulator (Exceed) and a french keyboard.
> For this keyboard, the meta key is binded to the escape key
> (it works fine under xemacs).
> Under Lyx, I use the emacs binding (which redefine the meta key as
> the escape key). It works fine (I can insert an equation using 
> Esc-m m). But when I am under math editor, if I want to insert
> an exponent (Esc-m e) or an index (Esc-m i), when I press the Esc

In case you don't know, you can use the ^ and _ keys for exponent/index.



Meta Key

2001-04-13 Thread Yann Collete

Hello again,

How can I bind the right control, left control or alt key to the Meta key
in a bind file.
I've tried:
\bind "Alt""Meta-prefix"
but lyx doesn't recognize the Alt symbol.

YC




Re: Meta Key

2001-04-13 Thread Jean-Marc Lasgouttes

> "Yann" == Yann Collete <[EMAIL PROTECTED]> writes:

Yann> Hello again, How can I bind the right control, left control or
Yann> alt key to the Meta key in a bind file. I've tried: \bind "Alt"
Yann> "Meta-prefix" but lyx doesn't recognize the Alt symbol.

You can't. What you have to do is play with xmodmap settings so that
Meta is right (or see if you can improve your x server configuration).

JMarc



Re: Writing formulas in russian and ukrainian languages

2001-04-13 Thread Dekel Tsur

On Fri, Apr 13, 2001 at 12:18:29AM +0300, Alexander Dymo wrote:
> Can I write formulas in russian language within LyX?
> When I type a russian letter, formula editor just do nothing.
> OS: Linux (glibc 2.2, pgcc 2.95.2)
> LyX: 1.1.6fix1
> XFree: 4.0.3, localization thought xkb
> all locale settings are correct.

I thing that currently the mathed doesn't support languages that use
charcters other than 7bit ASCII.
This will hopefully be fixed soon.

In the meantime you can use \newcommand to write the text outside of mathed:
Before the formula put the following (in latex mode)
\newcommand{\txt}{\textrm{Your text}}
and in the formula put \txt.



Re: unofficial deb package

2001-04-13 Thread Paolo M. Pumilia

>From Jean-Marc Lasgouttes, Fri Apr 13, at 11:50:
 .Please tell me if you want it uploaded to ftp.lyx.org. I'm sure such a
 .package would be useful.


sure 
you are welcome!  

-- 
 Paolo Pumilia
 email: [EMAIL PROTECTED]
 visit our (under construction) web site: www.linfe.it




Re: formatting tables

2001-04-13 Thread Dekel Tsur

On Fri, Apr 13, 2001 at 10:17:29AM +0200, Herbert Voss wrote:
> Kevin Gross wrote:
> > 1. Is there any way to merge cells across rows? I know it can be done across
> > columns using special cell/multicolumn but apparently there is no
> > corresponding way to merge rows. Is there a latex workaround? Will merging
> > rows be a feature in a later release?
> 
> why do you need this? in fact of the linebreak option
> you can write so much lines as possible.

Use the mulirow package (get it from CTAN if it is not installed on your
machine)

> > 2. In a table, I've got some mathematical notation containing both super- and
> > sub-scripts, e.g. in latex \textrm{H}^{x}_{g}. Unfortunately, the bottom of
> > the "g" touches the underlying row border. Is there anyway to increase the
> > row height so as to prevent this behavior?
> 
> try in latex preamble
> 
> \newcommand\myIndexPower[3]{%
>   $\textrm{#1}_{\raisebox{0.25ex}{$\scriptstyle #2$}}%
>^{\raisebox{0.2ex}{$\scriptstyle #3$}}$%
> }
> 
> and in text in tex(red)
> 
> \myIndexPower{base}{index}{exponent}

A different solution: put
\newcommand{inch}[1]{\raisebox{0pt}[\height][1.4\depth]{\ensuremath{#1}}}
in the preamble, and then put \inch{} around each instance of H^x_g.




Re: Two latex questions

2001-04-13 Thread Dekel Tsur

On Thu, Apr 12, 2001 at 11:45:26AM +0200, Stefano Ghirlanda wrote:
> Brett Jones <[EMAIL PROTECTED]> writes:
> 
> > First, I cite a reference in a figure caption, but don't like that
> > it shows up in the TOF.  Is there a way to show the reference in the
> > figure caption, but not in the TOF?
> 
> In LaTeX you can provide an optional argument to caption, that is used
> in the tof. In LyX you could try to put [your tof text] as the first
> thing in the caption.

This won't work.

A nice way for having both caption and a short caption is the following:

Modify the stdlayouts.inc file (or just the layout file
you use for your document), adding to it the following lines:

---begin-
Style ShortCaption
 CopyStyle Caption
 LatexName setshortcaption
 LabelString   "Short Caption:"
 LabelType Static
 Preamble
\let\oldcaption=\caption
\renewcommand{\caption}[1]{
\ifx \shortcaption \undefined
  \oldcaption{#1}
\else
  \oldcaption[\shortcaption]{#1}
\fi
}
\newcommand{\setshortcaption}[1]{
\newcommand{\shortcaption}{#1}
}
 EndPreamble
End
-end-
Then you can put a short caption paragraph before your caption paragraph.



Meta Key

2001-04-13 Thread Yann Collete

Hello,

Finally, I solved the problem.
Under Exceed, the Alt key is defined as a system key.
When you press the Alt key a first time, the focus swap from X to
windows and when you press the Alt key for the second time,
the focus swap from windows to X. In the configuration menu, you can
change this behavior. I select for the Alt Key: "To X". So, now
when I press the Alt key, the focus doesn't change and the Alt key
behave correctly in Lyx.

Your sincerely,

Yann COLLETTE




Re: unofficial deb package

2001-04-13 Thread Andre Berger

* Jean-Marc Lasgouttes <[EMAIL PROTECTED]>, 2001-04-13 14:00 +0200:
> > "Paolo" == Paolo M Pumilia <[EMAIL PROTECTED]> writes:
> 
> Paolo> I have just packaged, for personal use, the latest lyx release
> Paolo> 1.1.6fix1, on i686 hardware platform and debian/sid system
> Paolo> (libc6 >= 2.2.1-2 required)
> Paolo> It can be retrieved at the url
> Paolo> 
>http://www.linfe.it/OpenLab/DebianPackages/unstable/contrib/lyx_1.1.6fix1-1_i386.deb
> 
> Please tell me if you want it uploaded to ftp.lyx.org. I'm sure such a
> package would be useful.
> 
> JMarc

I could contribute debian 2.2/potato packages (libc6 2.1.3) for PC and
PPC if anybody's interested, and they compile... I'd start with
1.1.6fix2 though, which seems to be due out.

Andre Berger[[EMAIL PROTECTED]]



Re: unofficial deb package

2001-04-13 Thread Jean-Marc Lasgouttes

> "Andre" == Andre Berger <[EMAIL PROTECTED]> writes:

Andre> * Jean-Marc Lasgouttes <[EMAIL PROTECTED]>,
Andre> 2001-04-13 14:00 +0200:
>> > "Paolo" == Paolo M Pumilia <[EMAIL PROTECTED]> writes:
>> 
Paolo> I have just packaged, for personal use, the latest lyx release
Paolo> 1.1.6fix1, on i686 hardware platform and debian/sid system
Paolo> (libc6 >= 2.2.1-2 required) It can be retrieved at the url
Paolo> 
http://www.linfe.it/OpenLab/DebianPackages/unstable/contrib/lyx_1.1.6fix1-1_i386.deb
>>  Please tell me if you want it uploaded to ftp.lyx.org. I'm sure
>> such a package would be useful.
>> 
>> JMarc

Andre> I could contribute debian 2.2/potato packages (libc6 2.1.3) for
Andre> PC and PPC if anybody's interested, and they compile... I'd
Andre> start with 1.1.6fix2 though, which seems to be due out.

Before we do anything, you should probably see with Jules Bean
([EMAIL PROTECTED]) whether your packages are done with the right
description file (I have to admit I do not know much about that). I
would not want to have him annoyed at seeing non-official deb files
floating around.

Let's say I'll upload the file when I get an OK from Jules (Jules, are
you here?)

JMarc



Re: DocBook

2001-04-13 Thread ben

Robin Turner a écrit :

> Is there a way to import DocBook .xml files into LyX?
>
> Robin

Good question :-) I've started writing a set of XSL stylesheets to
translate a DocBook XML document to LyX (DB2LyX).

You can first read the install & use file at:
http://perso.libertysurf.fr/bgu/db2lyx/manual.html
or/and download the package (that includes the manual file) at:
http://perso.libertysurf.fr/bgu/db2lyx/db2lyx-0.1.tar.gz

It is the very first release, and many things are missing. Please
contact me if you have any troubles with it, wishes or remarks.

Bye,
BG




I am still having problems to install - Solaris

2001-04-13 Thread leo ber

Hi
I am still trying to install Lyx on Solaris 8. I was having problems when I
was running make, so somebody suggest me to use gmake. I got gmake and
installed it...fi... and then when I use gmake on the lyx installation , I
got a little bit farther but gmake crashes too reporting this:

(Sorry for the long attachment... But if somebody has installed lyx on solaris
8, please let me know because I am really tired of equation editor 3.0 (word),
I could run the lyx on windows but it needs the xclient program that shutdowns
every 2 hours and it gets annoying...)

Thanks 
Leo

# gmake
Making all in intl
gmake[1]: Entering directory `/export/home/lbermude/LATEX/lyx-1.1.6fix1/intl'
gmake[1]: Nothing to be done for `all'.
gmake[1]: Leaving directory `/export/home/lbermude/LATEX/lyx-1.1.6fix1/intl'
Making all in po
gmake[1]: Entering directory `/export/home/lbermude/LATEX/lyx-1.1.6fix1/po'
gmake[1]: Nothing to be done for `all'.
gmake[1]: Leaving directory `/export/home/lbermude/LATEX/lyx-1.1.6fix1/po'
Making all in sigc++
gmake[1]: Entering directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
gmake  all-recursive
gmake[2]: Entering directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
Making all in macros
gmake[3]: Entering directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++/macros'
gmake[3]: Nothing to be done for `all'.
gmake[3]: Leaving directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++/macros'
gmake[3]: Entering directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
/bin/sh ./libtool --mode=compile CC -DHAVE_CONFIG_H -I. -I. -I. -I./.. -I./.. 
  -g -c basic_signal.cc
CC -DHAVE_CONFIG_H -I. -I. -I. -I./.. -I./.. -g -c basic_signal.cc -o
basic_signal.o
"./../sigc++/basic_signal.h", line 66: Error: Invalid template parameter
default.
"./../sigc++/basic_signal.h", line 66: Error: Function templates may not have
default template parameters.
"./../sigc++/basic_signal.h", line 66: Error: A declaration was expected
instead of ">".
"./../sigc++/basic_signal.h", line 66: Error: A declaration was expected
instead of ">".
"./../sigc++/basic_signal.h", line 70: Error: R is not defined.
"./../sigc++/basic_signal.h", line 70: Error: Template parameter SigC::R
requires a type argument.
"./../sigc++/basic_signal.h", line 71: Error: Illegal value for template
parameter.
"./../sigc++/basic_signal.h", line 71: Error: No instantiation arguments
provided for template "SigC::Slot0".
"./../sigc++/basic_signal.h", line 75: Error: Marsh is not defined.
"./../sigc++/basic_signal.h", line 75: Error: OutType is not defined.
"./../sigc++/basic_signal.h", line 76: Error: R is not defined.
"./../sigc++/basic_signal.h", line 82: Error: Use ";" to terminate
declarations.
"./../sigc++/basic_signal.h", line 82: Error: "}" expected instead of "<".
"./../sigc++/basic_signal.h", line 82: Error: Use ";" to terminate
declarations.
"./../sigc++/basic_signal.h", line 82: Error: A declaration was expected
instead of "<".
"./../sigc++/basic_signal.h", line 82: Error: "," expected instead of ">".
"./../sigc++/basic_signal.h", line 83: Error: Illegal value for template
parameter.
"./../sigc++/basic_signal.h", line 83: Error: No instantiation arguments
provided for template "SigC::CallDataObj2".
"./../sigc++/basic_signal.h", line 85: Error: SType is not defined.
"./../sigc++/basic_signal.h", line 88: Error: SigC::O is not a structure
type.
"./../sigc++/basic_signal.h", line 91: Error: A declaration was expected
instead of "public".
"./../sigc++/basic_signal.h", line 92: Error: OutSlotType is not defined.
"./../sigc++/basic_signal.h", line 94: Error: The function "in_connect" must
have a prototype.
"./../sigc++/basic_signal.h", line 96: Error: There is no matching ")".
"./../sigc++/basic_signal.h", line 97: Error: Can only use this within a
non-static member function.
Compilation aborted, too many Error messages.
gmake[3]: *** [basic_signal.lo] Error 1
gmake[3]: Leaving directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
gmake[2]: *** [all-recursive] Error 1
gmake[2]: Leaving directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
gmake[1]: *** [all-recursive-am] Error 2
gmake[1]: Leaving directory
`/export/home/lbermude/LATEX/lyx-1.1.6fix1/sigc++'
gmake: *** [all-recursive] Error 1
# 



Get free email and a permanent address at http://www.netaddress.com/?N=1



Re: Quality problems with PDF windows

2001-04-13 Thread EagleIce

On Wednesday 11 April 2001 15:36, Matej Cepl wrote:
> http://www.cs.wisc.edu/~ghost/
> > On Wednesday 11 April 2001 12:40, EagleIce wrote:
> > > Is there a free Win98 & W2k software available for this purpose?
Thank's...:-)

ei

-- 
@ EagleIce  [EMAIL PROTECTED]  Running SuSE Linux 7.1 @
@~ Webmaster  ~~  ~@








\vspace in multicols{}

2001-04-13 Thread Jim Osborn

Can someone help explain how to put some extra blank vertical
space in a column in a multicols environment?  For example,
in a 3-column page, I can put \vspace*{10in} or whatever, and
push the subsequent text to the bottom of the first column.
But I can't seem to push it to the top of the second column!
If I add more space, it seems to simply push the text further
down, off the bottom of the page.  If I put a \newpage in the
first column, it gives me an entire blank page, starting the
text at the top of the next page.

I can't seem to get the text to flow gracefully between columns
with spacing commands.  Is there a way to do this?

TIA,

Jim



Re: \vspace in multicols{}

2001-04-13 Thread Christopher Jones

Couple of things: in the paragraph dialogue, you can set vfill above and below,
and you can "keep" it. Try playing around with this.

Also, the multicol package tries to adjust stuff to fill the whole column. If
you specify \raggedcolumns then you can override this behavior and specify your
own pushings around.

On Fri, 13 Apr 2001, you wrote:
> Can someone help explain how to put some extra blank vertical
> space in a column in a multicols environment?  For example,
> in a 3-column page, I can put \vspace*{10in} or whatever, and
> push the subsequent text to the bottom of the first column.
> But I can't seem to push it to the top of the second column!
> If I add more space, it seems to simply push the text further
> down, off the bottom of the page.  If I put a \newpage in the
> first column, it gives me an entire blank page, starting the
> text at the top of the next page.
> 
> I can't seem to get the text to flow gracefully between columns
> with spacing commands.  Is there a way to do this?
> 
> TIA,
> 
> Jim



Re: cjk-lyx

2001-04-13 Thread Curtis Brune

Curtis Brune wrote:
> 
> Hi,
> 
> For my Chinese class I'm most interested in writing short
> documents and printing using big5 (traditional) -- cjk-lyx sounds
> perfect.
> 
> cjk-lyx fails to run, however, saying "Sorry, This subroutine requires
> the scalable hangul fonts".  I can't seem to find any debian packages
> that contain hangul fonts (which are korean I believe).
> 

Are there hangul font packages for debian unstable/testing?  I searched
and could not find them under stable or testing.

Cheers,
Curt



stupid newbie question...

2001-04-13 Thread Todd L. Miller

I do a 'M_c t', type '\circumflex a' and get an error from
LaTeX: 'Undefined control sequence.
\circumflex
o'

When I 'C_m' into Math mode, and type '\hat a', everything works
find; LyX even recognizes what I'm trying to do and display the
(emphasized) a with a hat.  (Trying '\hat a' instead of circumlex, above,
fails, LaTeX thinking I forgot to put myself in math mode.)

So how do I get normal text accents (and/or normal TeX macros?) to
work?  I'm using the the sequentially-numbered AMS article format.

Thanks.

-Todd L. Miller