Re: Small poll

2002-11-01 Thread Andre Poenitz
On Thu, Oct 31, 2002 at 05:13:35PM +0100, Moritz Moeller-Herrmann wrote:
> Well finishing the QT-Frontend won't make the Xforms-GUI go away 
> (immediately...). It is important to get the QT-Frontend to a usable state, 
> so that users can test it out. ATM, I find the QT-Frontend less responsive 
> than the Xforms frontend, especially where it comes to scrolling.

To put it mildly...

Even on my "new" AMD 1700+ scrolling is somewhat sluggish. Not to the
extend to make it unusable but I'd rather not try it on my good old P133...

Andre'

-- 
Those who desire to give up Freedom in order to gain Security,
will not have, nor do they deserve, either one. (T. Jefferson)



Re: Finding out LaTeX name for math symbol

2002-11-01 Thread Andre Poenitz
On Thu, Oct 31, 2002 at 07:49:58PM -0800, Eran Guendelman wrote:
> If I'm not mistaken, an old behaviour in LyX was that when you inserted a
> math symbol from the math panel, the LyX status bar (bottom of page) would
> tell you what command was just executed (math-insert ) which
> was useful in telling the name of the symbol inserted.  (But maybe I'm
> remembering wrong -- in any case that no longer happens with 1.2.1).

It's back again in 1.3.0cvs. There is a hint "Symbol: alpha" in the
minibuffer if the cursor is behind an \alpha.

Andre'

-- 
Those who desire to give up Freedom in order to gain Security,
will not have, nor do they deserve, either one. (T. Jefferson)



timing slides

2002-11-01 Thread Osvaldo Fornaro
Hi lyxers,

maybe a bit off-topic, but i am working on a presentation on prosper and need 
a timing control in a slide, among overlays.

Anybody knows if is possible to do something like that?

Thanks in advance.

Osvaldo


-- 
Dr. Osvaldo Fornaro <[EMAIL PROTECTED]>
Universidad Nacional del Centro de la Provincia de Buenos Aires
Instituto de Física de Materiales Tandil - CICPBA
Pinto 399 (B7000GHG)
Argentina



Re: Multiple bibliographies and koma-script

2002-11-01 Thread Milos Komarcevic
On Fri, 2002-10-25 at 15:54, Max Bian wrote:
> 1. Put "\usepackage{bibunits}" in preamble of your master document and
> each subdocument you include. Make sure to use "include" option. 
> Forget all other latex code.
> 
> 2. At the begining of each included document, write in ERT
> "\begin{bibunit}[unsrt]". Replace unsrt with the style you like.
> 
> 3. At the end of each included document, write in ERT:
> 
> "\putbib[/path/to/bib/file without .bib]"
> "\addtocontentsline{toc}{section}{\numberline{}\bibname}" -- this makes
> the references appear as a section in chapter.
> "\end{bibunit}"
> 
> Additionly, add this ERT for some good. :)  -- It lets the
> "Insert/citation reference" work as expected.
> 
> "{\renewcommand{\bibliography}[1]{}"
>  <<< Insert the BibTexGeneratedReferences via Insert/LIST &TOC menu>>>
> "}" 
> 
> And the final step:  Make a script (eg. name it mylatex) to wrap around
> "latex" command.
> 
> ===
> #!/bin/bash
> /usr/bin/latex $1
> /usr/bin/latex $1
> for file in *.aux;
> do
>  file=`echo $file |sed -e s/\.aux$//`;
>  /usr/bin/bibtex $file;
> done;
> /usr/bin/latex $1
> =
> You must go to Edit/Preferences/Conversion/Converters/ and change the
> Latex->DVI converter to "mylatex $$i".
> 
> After these simple steps, it should work!!
> 
> Max

Thanks for the suggestions Max, but it doesn't work for me.
After I got rid of 

\addtocontentsline... which gave me an error,


I still get the same result as using the other method: as many errors
as there are \cite's. This is one from the log file:

! LaTeX Error: Can be used only in preamble.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H   for immediate help.
 ...

l.16 \bibcite{deGennes93}{1}

Your command was ignored.
Type  Ito replace it with another command,
orto continue without it.



Does it matter where I put the 

{\renewcommand{\bibliography}...} 

sequence?



Re: Multiple bibliographies and koma-script

2002-11-01 Thread Max Bian
"{\renewcommand{\bibliography}[1]{}"
<<< Insert the BibTexGeneratedReferences via Insert/LIST &TOC 
menu>>>
"}" 


Please recheck it.  Make sure everything in "" is in ERT! And the above
should be in 3 lines.  The part in <<< ... >>> is the normal bibtex
list you include in the menual.

--- Milos Komarcevic <[EMAIL PROTECTED]> wrote:
> On Fri, 2002-10-25 at 15:54, Max Bian wrote:
> > 1. Put "\usepackage{bibunits}" in preamble of your master document
> and
> > each subdocument you include. Make sure to use "include" option. 
> > Forget all other latex code.
> > 
> > 2. At the begining of each included document, write in ERT
> > "\begin{bibunit}[unsrt]". Replace unsrt with the style you like.
> > 
> > 3. At the end of each included document, write in ERT:
> > 
> > "\putbib[/path/to/bib/file without .bib]"
> > "\addtocontentsline{toc}{section}{\numberline{}\bibname}" -- this
> makes
> > the references appear as a section in chapter.
> > "\end{bibunit}"
> > 
> > Additionly, add this ERT for some good. :)  -- It lets the
> > "Insert/citation reference" work as expected.
> > 
> > "{\renewcommand{\bibliography}[1]{}"
> >  <<< Insert the BibTexGeneratedReferences via Insert/LIST &TOC
> menu>>>
> > "}" 
> > 
> > And the final step:  Make a script (eg. name it mylatex) to wrap
> around
> > "latex" command.
> > 
> > ===
> > #!/bin/bash
> > /usr/bin/latex $1
> > /usr/bin/latex $1
> > for file in *.aux;
> > do
> >  file=`echo $file |sed -e s/\.aux$//`;
> >  /usr/bin/bibtex $file;
> > done;
> > /usr/bin/latex $1
> > =
> > You must go to Edit/Preferences/Conversion/Converters/ and change
> the
> > Latex->DVI converter to "mylatex $$i".
> > 
> > After these simple steps, it should work!!
> > 
> > Max
> 
> Thanks for the suggestions Max, but it doesn't work for me.
> After I got rid of 
> 
> \addtocontentsline... which gave me an error,
> 
> 
> I still get the same result as using the other method: as many errors
> as there are \cite's. This is one from the log file:
> 
> ! LaTeX Error: Can be used only in preamble.
> 
> See the LaTeX manual or LaTeX Companion for explanation.
> Type  H   for immediate help.
>  ...
> 
> l.16 \bibcite{deGennes93}{1}
> 
> Your command was ignored.
> Type  Ito replace it with another command,
> orto continue without it.
> 
> 
> 
> Does it matter where I put the 
> 
> {\renewcommand{\bibliography}...} 
> 
> sequence?


__
Do you Yahoo!?
HotJobs - Search new jobs daily now
http://hotjobs.yahoo.com/



Re: Finding out LaTeX name for math symbol

2002-11-01 Thread Les Denham
On Thursday 31 October 2002 2149 pm, you wrote:
> Is there an easy way to tell what the LaTeX name is for a math symbol in
> LyX?  (So I could subsequently manually type it in using its name rather

Get the Comprehensive list of LaTeX symbols from 
http://www.ctan.org/tex-archive/help/Catalogue/entries/symbols.html


-- 
L. R. Denham
--
Please avoid sending me Word or PowerPoint attachments.
See http://www.fsf.org/philosophy/no-word-attachments.html



extracting a figure from .ps file

2002-11-01 Thread Matthieu Amiguet
[This is not really a lyx question, although I'm confonted to in my use of 
lyx. Please direct me to another more appropriate list if necessary]

I'm looking for a way to extract a figure from a .ps file to include it in 
lyx. I know I can print the file and scan the required figure ;-) or try a 
direct conversion to a bitmap format and edit the file in gimp to get the 
part I want, but if there's a way to get the vectorial form of it, I would of 
course prefer it.

Thank you for your help, 

Matthieu



Re: extracting a figure from .ps file

2002-11-01 Thread Max Bian
Try ps2eps on it. Then open the eps file with ghostview. Find the
cordinates of the lower-left and upper-right corner of the area you
interested in. Then manually edit the file to give it the new
boundingbox.

Works for me.

Max
--- Matthieu Amiguet <[EMAIL PROTECTED]> wrote:
> [This is not really a lyx question, although I'm confonted to in my
> use of 
> lyx. Please direct me to another more appropriate list if necessary]
> 
> I'm looking for a way to extract a figure from a .ps file to include
> it in 
> lyx. I know I can print the file and scan the required figure ;-) or
> try a 
> direct conversion to a bitmap format and edit the file in gimp to get
> the 
> part I want, but if there's a way to get the vectorial form of it, I
> would of 
> course prefer it.
> 
> Thank you for your help, 
> 
> Matthieu


__
Do you Yahoo!?
HotJobs - Search new jobs daily now
http://hotjobs.yahoo.com/



beginner problem

2002-11-01 Thread David Valyou
Can anyone help me understand Lyx printing.I can't print and have 
nothing in the view-update submenu. Otherwise things seem to be working.

lyx 1.2.1
tetex stuff 1.0.7
gs 7.05
gv 3.5.8



Please let these three old features appear again in new versions of LyX

2002-11-01 Thread Heiko Schröder
Hi list,

I love to work with LyX since several years, but in my opinion LyX 1.2.1 still 
lacks three very important old features. Old versions before made life 
easier. 

1. Preparing a special window for TeX commands is IMHO *not* a good idea! In 
older versions it was possible to use Mathed in a TeX/LaTeX surrounding. Now 
you have to put in real LaTeX-commands for formulas. Since there is still no 
support for the very important command \newtheorem it is necessary to have 
the ability of using Mathed in the TeX surrounding. Since that seems to be 
not possible any more, one of the main ideas of LyX seems to have vanished 
and it may be more convenient to use Emacs instead. 

2. Mathed: In older versions e.g. ALT-M-F creates a fraction and *stays* in 
Mathed. Now you must insert at first STRG-M and afterwards ALT-M-F which 
makes the inserting of a formula slowlier than before. Inserting a fraction 
by using the Math-Symbols-Panel leaves Mathed as well (and in older versions 
you stayed in Mathed).

3. Using the Minibuffer is IMHO less convenient than before. Now you *have* to 
type in ALT-M-X; the use of the mouse seems to be not supported any more 
(which is not so very important). But: when you insert a mathematical 
expression, where you do not remember the shortcuts from older versions, the 
minibuffer does not show you the shortcuts any more. 

In general a *lot* of new features have been inserted in LyX. And the 
developers did a great work, indeed. But since these older features are 
lacking the use of LyX did not increase the velocity of your work. It seems 
to be just the opposite.

Greetings from
Heiko Schroeder, Germany
-- 
Heiko Schröder
Ahrensburg, Germany
http://home.foni.net/~heikos




Re: beginner problem

2002-11-01 Thread Bo Peng
On Fri, Nov 01, 2002 at 03:51:08PM -0500, David Valyou wrote:
> Can anyone help me understand Lyx printing.I can't print and have 
> nothing in the view-update submenu. Otherwise things seem to be working.

> lyx 1.2.1
> tetex stuff 1.0.7
> gs 7.05
> gv 3.5.8

I assume that you are using windows since you are using gs and gv. You 
need to make sure that gsview32.exe and tetex texmf etc are in your 
$PATH. Add them from the control panel if necessary. Lyx depend on this 
variable to determine if you have the dvi/ps viewers during 
configuration.

-- 
Bo Peng



Re: beginner problem

2002-11-01 Thread Nirmal Govind
> need to make sure that gsview32.exe and tetex texmf etc are in your 
> $PATH. Add them from the control panel if necessary. Lyx depend on
> this variable to determine if you have the dvi/ps viewers during 
> configuration.
> 

You might also want to check the path to the viewers in the Edit ->
Preferences->Conversion menus where you can specify where your viewers
and converters are located.. once you've set these correctly, you'll
need to run Reconfigure from the Edit menu and then restart LyX... hope
this helps..

nirmal





Re: Lyx Printing to HP LJ2

2002-11-01 Thread Reed Loefgren

On Wed, 30 Oct 2002, Dekel Tsur wrote:

> On Fri, Oct 25, 2002 at 10:04:01PM -0600, Reed Loefgren wrote:
> > Hi all,
> >
> > In the past I had no trouble getting lyx to print to an HP inkjet. I've
> > recently come into possession of an HP IIP with 4 MB of memory and I'm
> > having trouble getting it to work with Lyx.
> >
> > It prints fine in apps such as Abiword, so I think the problem is in dvips
> > (which is not used by an inkjet.) I've done the config file thing
> > mentioned in the lyx manual and also placed "o | lpr -P ljet" in
> > /some/path/here/config.ps, but still, when I send a small job to the
> > printer it takes paper and spits it out but prints nothing on it. If it
> > matters, I'm using apsfilter on a Slackware 8.1 box.
> >
> > If anyone here has experience with Lyx and this printer I'd appreciate
> > hearing of your solutions to this (assuming you had trouble to begin
> > with.)
>
> Try exporting to DVI, and then run dvips on the .dvi file.
> Does it help ?
>

1. my apologies for the late reply.

2. Yes, exporting as a .dvi and then running it through dvips works
beautifully. Can't this be set up in Lyx's preferences, as if it was going
to an inkjet? I'm going through the manual again to see what I might have
missed; it would be nice to get lyx to do this export/conversion. Somehow
I just have to let it, rather than make it.


regards,

rl