math-macros

2001-06-08 Thread Michael P Friedlander

I just started using LyX, and even after a few hours, it's clear that it's
a great advance over using LaTeX directly, even with great packages like
AucTeX under Emacs.  In switching over to LyX, I'm trying to decide how to
best deal with the extensive set of LaTeX math macros I've put together
over the years.

Under LyX, the most straight forward approach would be to simply insert

\input{macros.tex}

into the LaTeX preamble box.  I can then save this preamble as part of the
~/.lyx/defaults.lyx file and have it available for all documents I
compose.  The disadvantage of this approach is that the macro doesn't get
expanded into WYSIWM mode.  For example, \norm{x} appears in the red, TeX
mode.

The math-macro definitions have the advantage that they are expanded and
appear in WYSIWM mode (a LyX perk!).  However, there seems to be no
mechanism for saving the math-macro definitions as part of a standard
template.

Are there other options for setting up my macros in LyX as some sort of
default for all new documents, and still take advantage of the WYSIWM
feature?

Thanks for the help.

--Michael





Re: math-macros

2001-06-08 Thread Jean-Pierre.Chretien


Date: Thu, 7 Jun 2001 23:41:19 -0700 (PDT)
From: Michael P Friedlander [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: math-macros

I just started using LyX, and even after a few hours, it's clear that it's
a great advance over using LaTeX directly, even with great packages like
AucTeX under Emacs.  In switching over to LyX, I'm trying to decide how to
best deal with the extensive set of LaTeX math macros I've put together
over the years.

Under LyX, the most straight forward approach would be to simply insert

\input{macros.tex}

into the LaTeX preamble box.  I can then save this preamble as part of the
~/.lyx/defaults.lyx file and have it available for all documents I
compose.  The disadvantage of this approach is that the macro doesn't get
expanded into WYSIWM mode.  For example, \norm{x} appears in the red, TeX
mode.

The math-macro definitions have the advantage that they are expanded and
appear in WYSIWM mode (a LyX perk!).  However, there seems to be no
mechanism for saving the math-macro definitions as part of a standard
template.

Are there other options for setting up my macros in LyX as some sort of
default for all new documents, and still take advantage of the WYSIWM
feature?

Thanks for the help.

--Michael

I wrote a perl script to translate (as reLyX, in a way) a set of lateX
macros a sa set of LyX math-macros, which you had to Include
as a LyX file.
I made it work, but time lacked to make it robust, particularly to old
2.09 constructs embedding math in \mbox to be able to use them in normal
and in TeX mode, which makes no sense in mathed and seemingly in 2e as
somebody pointed out to me recently on the list.

I must have it some where, but I can't have a look right now, I may
do so if you're interested.

-- 
Jean-Pierre





Re: Make-Index doesn,t work

2001-06-08 Thread Claus Hentschel

  I´m using LyX 1.1.6fix1 on a Mandrake 8.0-System.
  Everything works really fine with LyX, but the Index doesn´t appear in
  PDF-Files (either using the Way with ps2pdf nor pdftex)
  Is there anybody out there, who has an idea or solution ?

 does it appears in dvi- or ps-view?

 Herbert

This seems to be the same problem as with MikTeX 2.01 on Win32! I already
have posted log-files to
JMarc Lasgouttes [EMAIL PROTECTED] from different TeX
distributions because makeindex works with fpTeX 0.4 (the teTeX distribution
for Win32) and with the old MikTeX 1.2 release!

JMarc expects different log-files to be the reason for that misbehaviour.
The log-file will be parsed inside Lyx to create the depency file and (you
can check this) there is in some cases no entry for the idx file present!

Maybe that can be fixed soon!

Claus




Math symbols in screen

2001-06-08 Thread Jos Luis da Silva

Dear Lyx users,

on my screen most of the math symbols, e.g. \sum, \int do not show
instead a white space appear. Nevertheless compiling is ok!
Can somebody help me?
Thanks in advance

José Luis
-- 
José Luis da Silva
Campus da Penteada
9000-390 Funchal, Madeira
Telf. +351-291-705180
Fax +351-291-705199
E-mail: [EMAIL PROTECTED]



Re: Lyx latex2html

2001-06-08 Thread Jean-Pierre.Chretien


From: Adolfo Pachón [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Lyx  latex2html
Date: Thu, 7 Jun 2001 17:54:05 +0200

Hi all!!

I want to obtain this in the HTML output:

a href=http://www.lyx.org;Go to Lyx/a

How have I to write in Lyx to export to Latex and then generate the HTML
output with latex2html?

Thanks


(Adolfo M. Pachón Rodríguez)

Here is a short perl script which used to work before 1.1.5
Works with 1.1.5 (but errors about tokens in TeX mode in the calling window)
Didn't check it with 1.1.6
The usage explains (almost) everything.
url2h.sh allows to test it in a subdir (l2h is a shortcut here for latex2html).

The idea is to use the Name field of the url inset to provide the anchor.

-- 
Jean-Pierre


#!/usr/local/bin/perl
#

$| = 1;

if ($ARGV[0] eq -h || $ARGV[0] eq ) {
usage; exit;
}

# pas de séparateur : lecture du fichier comme une chaîne
undef $/;
$argv=join(' ',@ARGV);
 
BOUCLE: while (@ARGV) {
$ARG = shift @ARGV;
   if (!open(IN, $ARG)) 
   { print Erreur ouverture fichier $ARG\n;
 next BOUCLE;
   }
($rac,$suf)=($ARG=~m/(.*)\.(.*?)$/m);
print $rac.$suf\n;
   $file= IN;
   close IN;
# on applique le filtre
if ($suf eq lyx) {
$file=~s/\\begin_inset LatexCommand \\htmlurl\[(.*?)\]\{(.*?)\}.*?\\end_inset 
/\\latex latex 
\\htmladdnormallink\{$1\}\{$2\}\~
\\begin\{latexonly\}
\\url\{$2\}
\\end\{latexonly\}
\\layout Standard
/gs ;
$file=~s/\\begin_inset LatexCommand \\url\[(.*?)\]\{(.*?)\}.*?\\end_inset 
/\\latex latex 
\\htmladdnormallink\{$1\}\{$2\}\~
\\begin\{latexonly\}
\\url\{$2\}
\\end\{latexonly\}
\\layout Standard
/gs;
$file=~s/\\begin_inset LatexCommand \\htmlurl\{(.*?)\}.*?\\end_inset /\\latex 
latex 
\\htmladdnormallink\{\\url\{$1\}\}\{$1\}\~
\\layout Standard
/gs ;
$file=~s/\\begin_inset LatexCommand \\url\{(.*?)\}.*?\\end_inset /\\latex 
latex 
\\htmladdnormallink\{\\url\{$1\}\}\{$1\}\~
\\layout Standard
/gs;
}

$file=~s/\~(\\begin\{latexonly\})/\n$1/gs if ($suf eq tex);
open(OUT,$ARG);
print OUT $file;
close OUT;
}

sub usage {
print Usage: url2h [-h(elp)]  file1 file2 ... \n(star convention allowed, 
e.g. url2h *.lyx)\nConverts \\htmlurl macros into ERT \\htmladdnormallink macros.
Keeps the original typesetting. 
Run url2h on the exported .tex file to
provide the required newline before latexonly environment.
Be sure to add \\usepackage{url} and \\usepackage{html} in the preamble;
}





 url2h.sh

#LyX 1.1 created this file. For more info see http://www.lyx.org/
\lyxformat 2.16
\textclass article
\begin_preamble
\usepackage{html}
\usepackage{url}
\end_preamble
\language french
\inputencoding auto
\fontscheme default
\graphics default
\paperfontsize default
\spacing single 
\papersize Default
\paperpackage a4
\use_geometry 0
\use_amsmath 0
\paperorientation portrait
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\defskip medskip
\quotes_language english
\quotes_times 2
\papercolumns 1
\papersides 1
\paperpagestyle default

\layout Standard

This i a link on 
\begin_inset LatexCommand \url[lyx]{http://www.lyx.org}

\end_inset 


\the_end



Re: Make-Index doesn,t work

2001-06-08 Thread Herbert Voss


On Fri, 8 Jun 2001, Thorsten [iso-8859-1] Körner wrote:

 I´m using LyX 1.1.6fix1 on a Mandrake 8.0-System.
 Everything works really fine with LyX, but the Index doesn´t appear in
 PDF-Files (either using the Way with ps2pdf nor pdftex)
 Is there anybody out there, who has an idea or solution ?

does it appears in dvi- or ps-view?

Herbert




Bibtex problem

2001-06-08 Thread Ragnar Beer

Howdy!

I downloaded the apacite style fron CTAN and found a small but nasty buglet:
When there are a couple of authors there is a colon too much in the citation
before the '', e.g. (Hahlweg, Klann,  Hank, 1992). Unfortunately the email
that the authour gives in the manual isn't valid anymore . Is this something
that I can correct myself easily?

Cheers,

Ragnar



table float with caption at the bottom

2001-06-08 Thread Peer Frank

Hi Lyxers,

Inserting table floats with the caption below the table does not work as in 
previous versions (before 1.1.6 fix2), I don't get it to work at all:

insert - floats - table floats
then write mycaptiontext, then insert table between Table: and 
mycaptiontext 

produces the following error:

Paragraph ended before \@caption was complete.
\end{tabular} mycaptiontext} ...

My mistake or a  bug ?

Bye !
Peer



-- 
Dr. Peer Frank 
Skytec
Fuggerweg 19
D-86874 Mattsies (Germany)
phone: +49-8268-732
mail: [EMAIL PROTECTED]
web: www.skytec-engineering.de



Re: table float with caption at the bottom

2001-06-08 Thread Herbert Voss



On Fri, 8 Jun 2001, Peer Frank wrote:

 Inserting table floats with the caption below the table does not work as in
 previous versions (before 1.1.6 fix2), I don't get it to work at all:

 insert - floats - table floats
 then write mycaptiontext, then insert table between Table: and
 mycaptiontext

 produces the following error:

 Paragraph ended before \@caption was complete.
 \end{tabular} mycaptiontext} ...

did you hit enter before inserting the table?

Herbert




Re: Math symbols in screen

2001-06-08 Thread Andre Poenitz

 on my screen most of the math symbols, e.g. \sum, \int do not show
 instead a white space appear. Nevertheless compiling is ok!
 Can somebody help me?

Which LyX version do you use?

Andre'

-- 
André Pönitz . [EMAIL PROTECTED]



pdf error...

2001-06-08 Thread Michael

When I insert an eps graphic in my document pdflatex gives an error:

 unknown graphics extension .ps   

The extension doesn't matter, I allways get that error. Without graphic, 
pdflatex works fine. PS2PDF also works, but doesn't look as good

thanks for answering,
 Michael

p.s.: lyx 1.1.6fix2




Re: pdf error...

2001-06-08 Thread Herbert Voss



On Fri, 8 Jun 2001, Michael wrote:

 When I insert an eps graphic in my document pdflatex gives an error:

unknown graphics extension .ps

 The extension doesn't matter, I allways get that error. Without graphic,
 pdflatex works fine. PS2PDF also works, but doesn't look as good

pdflatex needs pdf-file format for the images. choose
the script from steffen.

http://tex2pdf.berlios.de/

Herbert




View-LyX

2001-06-08 Thread Thomas de Grenier de Latour

Hi,

I'd like to add a LyX item to my View menu (I'm using 1.1.6fix2),
which would launch a text viewer/editor on a temporary copy of the
current opened lyx document. Ok, that wouldn't be a major feature...
It's just because I'm sometimes curious, but also easily bored with
saving files, launching programs, and opening files again..., each time
I'm wondering something about the lyx format. 
I've managed to do it for Latex, just adding gvim in the
Preference-Converters-Format-LaTeX-Viewer, but it doesn't seems to
work with LyX.  What exactly does the ViewFormats item in the ui file
refer to? 
I also tried to do my stuff creating a new file format, namely LyxCopy,
with cat as an export converter (yes, there's a long story between
cats and me, but I think I've already written you about that;), which
would have gvim as a viewer. But it doesn't appear neither in the View
menu, nor in the Export one. So a second question is: what exactly can
Converters do? Are they only used as import features?

Thanks for your lights,


-- 
Thomas.



Re: Math symbols in screen

2001-06-08 Thread Tuukka Toivonen

On Fri, 8 Jun 2001, [iso-8859-2] José Luis da Silva wrote:

 on my screen most of the math symbols, e.g. \sum, \int do not show
 instead a white space appear. Nevertheless compiling is ok!

Maybe a font problem. You could try removing unused fonts and reordering
the rest. If you don't use font server, this is done in /etc/XF86Config, I
don't know where's fontservers config file.

Althought, if I recall correctly, in my situation I didn't get white
spaces but wrong fonts instead.




Re: table float with caption at the bottom

2001-06-08 Thread Peer Frank

On Friday 08 June 2001 10:41, Herbert Voss wrote:
 On Fri, 8 Jun 2001, Peer Frank wrote:
  Inserting table floats with the caption below the table does not work as
  in previous versions (before 1.1.6 fix2), I don't get it to work at all:
 
  insert - floats - table floats
  then write mycaptiontext, then insert table between Table: and
  mycaptiontext
 
  produces the following error:
 
  Paragraph ended before \@caption was complete.
  \end{tabular} mycaptiontext} ...

 did you hit enter before inserting the table?

 Herbert


Well, no, but it helps a lot !!
Thanks !
Peer



Re: Lyx latex2html

2001-06-08 Thread Dekel Tsur

On Thu, Jun 07, 2001 at 08:15:06PM +0200, Adolfo Pachón wrote:
 Yes, I read this in the latex2html manual, but in Lyx, an CTRL+D shows me an
 error message:
 
 File html.sty Not Found
 
 I've put this file in all sites, but always tell me the error.
 
 Where have I to put the html.sty exactly?

1. Put html.sty in TEXMF/tex/latex/latex2html/html.sty

where TEXMF is the directory of tex (you can find the value of TEXMF
by running kpsexpand '$TEXMF').

2. Run texhash



Re: Make-Index doesn,t work

2001-06-08 Thread Dekel Tsur

On Fri, Jun 08, 2001 at 12:09:14AM -0400, Thorsten Körner wrote:
 Hi
 I´m using LyX 1.1.6fix1 on a Mandrake 8.0-System.
 Everything works really fine with LyX, but the Index doesn´t appear in 
 PDF-Files (either using the Way with ps2pdf nor pdftex)
 Is there anybody out there, who has an idea or solution ?
 Thank You for help 

Did you do Insert-ListTOC-Index List ?



Re: Book layout and included files problem.

2001-06-08 Thread Dekel Tsur

On Thu, Jun 07, 2001 at 05:36:25PM -0600, Fernando Pérez wrote:
 I'm using Lyx 1.1.6fix1 and am encountering the following problem: if I
 create a document which includes other lyx documents using the article
 class, everything is fine. But if I change the master document layout to
 be book or Thesis (University of Colorado's thesis, specifically), the
 included files vanish! That is, the include gray boxes are still present
 in the lyx document, but when a latex file is produced (either
 automatically for making the PostScript or explicitly by Latex Export), the
 \include{file} lines are simply not there! As far as I can tell this is a
 lyx bug, can anyone confirm and suggest solutions?

Currently, the documentclass of the master file should be equal to the
documentclass of the included files.



About Lyx RTF Format

2001-06-08 Thread Adolfo Pachón

Hi all!!

At now, from my Lyx file I can generate:

* .tex (from Lyx Export)
* .dvi (from latex command)
* .ps (from latex command)
* .pdf (using dvipdfm)

But my problem is the RTF format. I use latex2rtf for that and occurs than:

a) If I Export Lyx to Latex and try latex2rtf my_tex_file.tex, system
says: ERROR ...- and no RTF file is obtained.
b) If I delete the lines about Lyx in the exported .tex file,..., I OBTAIN
AN RTF FILE!!


Can someone explain to me this?
Can someone suggest to me the most efficient method (or program) for the
conversion from Lyx to RTF, or from Latex to RTF?

Thanks...

(Adolfo M. Pachón Rodríguez)




postscript upodate doesn't work :(

2001-06-08 Thread Giorgio Corani

hi!
I've just updated lyx to the 1.1.6fix1 release.
Although it works fine, I'm experiencing some problems with postscript 
preview.
As a matter of fact, when  I try to update it, gv continues to display 
the same postscript file; moreover, if I close gv and follow the menu 
(view-postscript), I get once more the old file.
In order to get the updated version, I have to close lyx, delete the 
.lyx directory in /tmp and re-open the file.
Ideas?
should the 1.1.6fix2 fix that?

Giorgio




Hyphenation of citation references

2001-06-08 Thread José Ernesto Jardim

Hi

I'm writing a document using bibtex to manage bibliography and calling
it within lyx with apalike style.

When I produce the postscript document the citations are not hyphenated
and I get lines extended throught the margins.

How can I solve this ?

Thanks

EJ



Re: Bibtex problem

2001-06-08 Thread Herbert Voss

Ragnar Beer wrote:
 
 I downloaded the apacite style fron CTAN and found a small but nasty buglet:
 When there are a couple of authors there is a colon too much in the citation
 before the '', e.g. (Hahlweg, Klann,  Hank, 1992). Unfortunately the email
 that the authour gives in the manual isn't valid anymore . Is this something
 that I can correct myself easily?

yes, you can, but it's not easy. have a look at
the apacite.bst. there is a function format.names.

otherwise write to tex users list
comp.text.tex

Herbert

-- 
http://www.educat.hu-berlin.de/~voss/lyx/




Online LyX Documentation updated!

2001-06-08 Thread Juergen Vigna

For anybody interested:

  After I got a complaint that the Online Documentation is a bit old I
  updated the site http://www.sad.it/~jug/lyx/lyxdoc with current lyxdoc
  Documentation, using as export to LaTeX the lyx-1.1.6cvs version.


Jürgen

--
-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._
Dr. Jürgen VignaE-Mail:  [EMAIL PROTECTED]
Italienallee 13/N   Tel/Fax: +39-0471-450260 / +39-0471-450253
I-39100 Bozen   Web: http://www.sad.it/~jug
-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._

Forgive him, for he believes that the customs of his tribe are the laws
of nature!
-- G.B. Shaw




linesize in table

2001-06-08 Thread Jörg Haug

Is there a possibility to change the size of a line in a table in Lyx ?
I did not find anything in the tutorial.

Thanks,

Jörg




Re: Math symbols in screen

2001-06-08 Thread Rem

edit - preferences
turn of 'scalable fonts'
you may have to increase zoom as well...

Remzi

- Original Message -
From: Tuukka Toivonen [EMAIL PROTECTED]
To: José Luis da Silva [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Friday, June 08, 2001 4:31 AM
Subject: Re: Math symbols in screen


 On Fri, 8 Jun 2001, [iso-8859-2] José Luis da Silva wrote:

  on my screen most of the math symbols, e.g. \sum, \int do not show
  instead a white space appear. Nevertheless compiling is ok!

 Maybe a font problem. You could try removing unused fonts and reordering
 the rest. If you don't use font server, this is done in /etc/XF86Config, I
 don't know where's fontservers config file.

 Althought, if I recall correctly, in my situation I didn't get white
 spaces but wrong fonts instead.





RE: linesize in table

2001-06-08 Thread Juergen Vigna


On 08-Jun-2001 Jörg Haug wrote:
 Is there a possibility to change the size of a line in a table in Lyx ?
 I did not find anything in the tutorial.

Vertically (NO) or Horizontally (with the Width-Field)?

  Jürgen

--
-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._
Dr. Jürgen VignaE-Mail:  [EMAIL PROTECTED]
Italienallee 13/N   Tel/Fax: +39-0471-450260 / +39-0471-450253
I-39100 Bozen   Web: http://www.sad.it/~jug
-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._

Got a complaint about the Internal Revenue Service?  
Call the convenient toll-free IRS Taxpayer Complaint Hot Line Number:

1-800-AUDITME




Re: linesize in table

2001-06-08 Thread Herbert Voss

Jörg Haug wrote:
 
 Is there a possibility to change the size of a line in a table in Lyx ?
 I did not find anything in the tutorial.

put the cursor in any cell of a column and click
right mouse button. than click on table menu
row/column and insert in the width-field any
value with a valid unit, e.g. 1cm, and hit
enter

Herbert

-- 
http://www.educat.hu-berlin.de/~voss/lyx/



Capitalization in BibTeX to LyX

2001-06-08 Thread Michelle Dukich

 
 Greetings:

Moving right along in my experience with Lyx, I am
setting up my bibliography with BibTeX. 

Couple of questions.

1.  I cannot seem to get the harvard style to work. 
Went to a couple of sites:  one was missing the
makefile info

http://www.mit.edu/afs/sipb/project/tex-new/doc/latex/harvard/

the other was a dead URL

http://www.arch.su.edu.au/~peterw/latex/harvard/ .

I am using plain for now, but help here would be
greatly appreciated.  How can I get the Harvard
package and the various styles to work in Lyx?  

2.  I used the Incollection type for a reference and
the Title (as opposed to the BookTitle) will only
capitalize the first word.  I understand that this is
the normal mode, but my title is The Guatemalan
Commission for Historical Clarification: blah blah
blah which is a Proper noun.  How can I override the
non-cap tendency when necessary?

Otherwise, I am a happy lil camper in my Lyx'ing. 
Just call me a LyxChix now.  LOL.  

Many thanks for help on this and my previous posts.

Michelle


__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/



Re: linesize in table

2001-06-08 Thread Jörg Haug

Herbert Voss schrieb:

 Jörg Haug wrote:
 
  Is there a possibility to change the size of a line in a table in Lyx ?
  I did not find anything in the tutorial.

 put the cursor in any cell of a column and click
 right mouse button. than click on table menu
 row/column and insert in the width-field any
 value with a valid unit, e.g. 1cm, and hit
 enter

 Herbert


Sorry there is a misunderstanding. I want to change the size of the line
between two rows (e.g. to 1pt). Is this possible ?

Jörg




Re: Capitalization in BibTeX to LyX

2001-06-08 Thread Jean-Marc Lasgouttes

 Michelle == Michelle Dukich [EMAIL PROTECTED] writes:

Michelle 2. I used the Incollection type for a reference and the
Michelle Title (as opposed to the BookTitle) will only capitalize the
Michelle first word. I understand that this is the normal mode, but
Michelle my title is The Guatemalan Commission for Historical
Michelle Clarification: blah blah blah which is a Proper noun. How
Michelle can I override the non-cap tendency when necessary?

You can enclose the letter in {}, like {G}uatemalan.

JMarc



Re: linesize in table

2001-06-08 Thread Herbert Voss

Jörg Haug wrote:
  
   Is there a possibility to change the size of a line in a table in Lyx ?
   I did not find anything in the tutorial.
 
 Sorry there is a misunderstanding. I want to change the size of the line
 between two rows (e.g. to 1pt). Is this possible ?

in latex preamble write
\usepackage{array}

clear all entries for a cell-width in any column,
than open table-menu for the first cell (upper left)
and write in the alignment field (lower left)
for example:

|c!{\vrule width 3pt}p{12cm}|

this must be the whole definition of the table!
here it is:
|center column|||column with a width of 12cm|
^ ^^^   ^
vline vline 3pt  vline

or for a simple table

|c!{\vrule width 3pt}c|

the !{\vrule width 3pt} is like a | for a vertical line.

Herbert


-- 
http://www.educat.hu-berlin.de/~voss/lyx/



special fonts in math mode

2001-06-08 Thread becherini yvonne Gruppo II

Hi everybody,
do you know how to write special characters as ö in math mode.

Many thanks from Bologna (Italy)

Yvonne




Re: Does LyX complain about broken label or citation references?

2001-06-08 Thread Jean-Marc Lasgouttes

 Ramon == Ramon Felciano [EMAIL PROTECTED] writes:

Ramon Hi -- I've noticed that LyX (or LaTeX I guess) doesn't seem to
Ramon complain about broken label references. Instead, the reference
Ramon gets printed with a ? indicating that the target couldn't be
Ramon found. Is there any way to do a pre-flight of a LyX (LaTeX)
Ramon document to check the references and make sure they are all
Ramon present and accessible?

LyX does not have this feature yet. It would certainly be useful...

JMarc



Re: linesize in table

2001-06-08 Thread Jörg Haug

Herbert Voss schrieb:

 Jörg Haug wrote:
   
Is there a possibility to change the size of a line in a table in Lyx ?
I did not find anything in the tutorial.
 
  Sorry there is a misunderstanding. I want to change the size of the line
  between two rows (e.g. to 1pt). Is this possible ?

 in latex preamble write
 \usepackage{array}

 clear all entries for a cell-width in any column,
 than open table-menu for the first cell (upper left)
 and write in the alignment field (lower left)
 for example:

 |c!{\vrule width 3pt}p{12cm}|

 this must be the whole definition of the table!
 here it is:
 |center column|||column with a width of 12cm|
 ^ ^^^   ^
 vline vline 3pt  vline

 or for a simple table

 |c!{\vrule width 3pt}c|

 the !{\vrule width 3pt} is like a | for a vertical line.

 Herbert

 --
 http://www.educat.hu-berlin.de/~voss/lyx/

I want to change the horizontal line. Now i used
\setlenght{\doublerulesep}{0.5pt} before the table and after the table i set it
back to 2pt.




Re: Capitalization in BibTeX to LyX

2001-06-08 Thread Herbert Voss

Michelle Dukich wrote:
 
 
  Greetings:
 
 Moving right along in my experience with Lyx, I am
 setting up my bibliography with BibTeX.
 
 Couple of questions.
 
 1.  I cannot seem to get the harvard style to work.
 Went to a couple of sites:  one was missing the
 makefile info
 
 http://www.mit.edu/afs/sipb/project/tex-new/doc/latex/harvard/
 
 the other was a dead URL
 
 http://www.arch.su.edu.au/~peterw/latex/harvard/ .

ftp://ftp.dante.de/tex-archive/macros/latex/contrib/supported/harvard/

this should work

possible harvard bib-styles are

http://www.educat.hu-berlin.de/~voss/lyx/bibtex/bibtex.html#harvard

Herbert

-- 
http://www.educat.hu-berlin.de/~voss/lyx/



Re: special fonts in math mode

2001-06-08 Thread Herbert Voss

becherini yvonne Gruppo II wrote:
 
 do you know how to write special characters as ö in math mode.

http://www.educat.hu-berlin.de/~voss/lyx/mathstuff/mathtext.html

Herbert

-- 
http://www.educat.hu-berlin.de/~voss/lyx/



Harvard Styles (packages problems)

2001-06-08 Thread Michelle Dukich

 
 
Greetings all:

I put harvard.sty in the dir below:

/usr/share/texmf/tex/latex/base

which is where article.sty and other packages seem to
live, but Lyx gives me the error:

Harvard.sty not found

when I put \usepackage{harvard} in the Latex Preamble.

What is up?

Also, where are the bst files supposed to live?


Thanks.



__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/



Re: Book layout and included files problem.

2001-06-08 Thread Fernando Pérez

Dekel Tsur wrote:
 
 Currently, the documentclass of the master file should be equal to the
 documentclass of the included files.

Thanks a lot (also to Herbert) for the reply. It worked perfectly. I wonder
if it might be worth having a little message in the File Include box
indicating that styles have to match across master/subfiles. It can be
somewhat of a disconcerting problem to run into, and a simple warning could
help a lot of people.

Regards,

Fernando



Re: Does LyX complain about broken label or citation references?

2001-06-08 Thread mike.ressler

On 8 Jun 2001, Jean-Marc Lasgouttes wrote:

  Ramon == Ramon Felciano [EMAIL PROTECTED] writes:
 Ramon found. Is there any way to do a pre-flight of a LyX (LaTeX)
 Ramon document to check the references and make sure they are all
 Ramon present and accessible?

 LyX does not have this feature yet. It would certainly be useful...

Does ChkTeX, which is supported at some level by LyX, check for these
sorts of errors? I'm probably just showing my ignorance of ChkTeX, but I
know it catches a whole host of other errors ...

Mike

-- 
Mike Ressler
[EMAIL PROTECTED]
OK, I'm lame: I don't have my own website ...




Re: Harvard Styles (packages problems)

2001-06-08 Thread Rem

become root and run
mktexlsr

then run lyx, reconfigure, restart and it should be allright.
I copy the styles under /usr/share/texmf/tex/latex/misc/


- Original Message - 
From: Michelle Dukich [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, June 08, 2001 12:06 PM
Subject: Harvard Styles (packages problems)


 
  
 Greetings all:
 
 I put harvard.sty in the dir below:
 
 /usr/share/texmf/tex/latex/base
 
 which is where article.sty and other packages seem to
 live, but Lyx gives me the error:
 
 Harvard.sty not found
 
 when I put \usepackage{harvard} in the Latex Preamble.
 
 What is up?
 
 Also, where are the bst files supposed to live?
 
 
 Thanks.
 
 
 
 __
 Do You Yahoo!?
 Get personalized email addresses from Yahoo! Mail - only $35 
 a year!  http://personal.mail.yahoo.com/




Re: Harvard Styles (packages problems)

2001-06-08 Thread Jean-Pierre.Chretien


Date: Fri, 8 Jun 2001 10:06:37 -0700 (PDT)
From: Michelle Dukich [EMAIL PROTECTED]
Subject: Harvard Styles (packages problems)
To: [EMAIL PROTECTED]

 
 
Greetings all:

I put harvard.sty in the dir below:

/usr/share/texmf/tex/latex/base

which is where article.sty and other packages seem to
live, but Lyx gives me the error:

Harvard.sty not found


Should be harvard.sty, not Harvard.sty
You must run texhash to update the hashtable used to find files
quickly.

when I put \usepackage{harvard} in the Latex Preamble.

What is up?

Also, where are the bst files supposed to live?


Thanks.

In the adequate directory, which I never use.
I always put imported stuff in a local directory, e.g.
/usr/share/texmf/tex/latex/local
whatever the nature of the files, to be able to export
it easily in another installation.
Might need an update of the texmf.cnf file to tell how to find
bst file, I don't remember.

-- 
Jean-Pierre






Re: Harvard Styles (packages problems)

2001-06-08 Thread Herbert Voss

Michelle Dukich wrote:
 
 I put harvard.sty in the dir below:
 
 /usr/share/texmf/tex/latex/base


better is /usr/share/texmf/tex/latex/harvard

 which is where article.sty and other packages seem to
 live, but Lyx gives me the error:
 
 Harvard.sty not found

did you run texhash to update the tex-dirs?

Herbert

-- 
http://www.educat.hu-berlin.de/~voss/lyx/



Re: Does LyX complain about broken label or citation references?

2001-06-08 Thread Jean-Pierre.Chretien



 Ramon == Ramon Felciano [EMAIL PROTECTED] writes:

Ramon Hi -- I've noticed that LyX (or LaTeX I guess) doesn't seem to
Ramon complain about broken label references. Instead, the reference
Ramon gets printed with a ? indicating that the target couldn't be
Ramon found. Is there any way to do a pre-flight of a LyX (LaTeX)
Ramon document to check the references and make sure they are all
Ramon present and accessible?

LyX does not have this feature yet. It would certainly be useful...

JMarc

LaTeX does, look for undefined references in the log file.
It should not be very hard to search for it and open a warning popup
I guess as it does something of the kind to re-run LaTeX.


-- 
Jean-Pierre




Re: Harvard Styles (packages problems)

2001-06-08 Thread mike.ressler

On Fri, 8 Jun 2001, Michelle Dukich wrote:
 I put harvard.sty in the dir below:

 /usr/share/texmf/tex/latex/base

 which is where article.sty and other packages seem to
 live, but Lyx gives me the error:

 Harvard.sty not found

Assuming you are using teTeX, you now need to run the texhash command;
or texconfig and select the rebuild ls-R database option. (Same thing,
but different ways to get there.)

Mike

-- 
Mike Ressler
[EMAIL PROTECTED]
OK, I'm lame: I don't have my own website ...




Re: Languages (was Re: sorting tables?)

2001-06-08 Thread Jose Abilio Oliveira Matos

On Wed, May 30, 2001 at 06:32:57PM +0200, Jean-Pierre.Chretien wrote:
 
  Hi Jean-Pierre,
I know that you made a question but I haven't seen it. I got only a
truncated message with quoted text...

This happens sometimes, and I don't know why... the only pattern I see
is that those messages are sent from sun machines...

   If I remember your question from mail-archive the answer is yes. Python
has one module to cgi.

-- 
José



Re: Make-Index doesn,t work

2001-06-08 Thread Thorsten Körner

Am Freitag,  8. Juni 2001 01:26 schrieb Herbert Voss:
 On Fri, 8 Jun 2001, Thorsten [iso-8859-1] Körner wrote:
  I´m using LyX 1.1.6fix1 on a Mandrake 8.0-System.
  Everything works really fine with LyX, but the Index doesn´t appear in
  PDF-Files (either using the Way with ps2pdf nor pdftex)
  Is there anybody out there, who has an idea or solution ?

 does it appears in dvi- or ps-view?

No. Not when I´m working with LyX. 
-- 
Canada Post doesn't really charge 32 cents for a stamp.  It's 2 cents
for postage and 30 cents for storage.
-- Gerald Regan, Cabinet Minister, 12/31/83 Financial Post



Re: Make-Index doesn,t work

2001-06-08 Thread Thorsten Körner

Am Freitag,  8. Juni 2001 06:35 schrieb Dekel Tsur:
 On Fri, Jun 08, 2001 at 12:09:14AM -0400, Thorsten Körner wrote:
  Hi
  I´m using LyX 1.1.6fix1 on a Mandrake 8.0-System.
  Everything works really fine with LyX, but the Index doesn´t appear in
  PDF-Files (either using the Way with ps2pdf nor pdftex)
  Is there anybody out there, who has an idea or solution ?
  Thank You for help

 Did you do Insert-ListTOC-Index List ?

Yes, of course I did. In Lyx the label is shown, but it has no effect. In the 
preamble are the lines:
\usepackage{makeidx}
\makeindex
and if I call 
File--Export--PDF(pdflatex) are 3 LaTeX-runs shown in the status-line 
before the PDF-File is written. But the Index is not buildt.
-- 
Hand, n.:
A singular instrument worn at the end of a human arm and
commonly thrust into somebody's pocket.
-- Ambrose Bierce, The Devil's Dictionary



Re: Make-Index doesn,t work

2001-06-08 Thread Herbert Voss

Thorsten Körner wrote:
 
 Am Freitag,  8. Juni 2001 01:26 schrieb Herbert Voss:
  On Fri, 8 Jun 2001, Thorsten [iso-8859-1] Körner wrote:
   I´m using LyX 1.1.6fix1 on a Mandrake 8.0-System.
   Everything works really fine with LyX, but the Index doesn´t appear in
   PDF-Files (either using the Way with ps2pdf nor pdftex)
   Is there anybody out there, who has an idea or solution ?
 
  does it appears in dvi- or ps-view?
 
 No. Not when I´m working with LyX.

can you send a minimal lyx-file which shows this
behaviour?

Herbert

-- 
http://www.educat.hu-berlin.de/~voss/lyx/



Thanks

2001-06-08 Thread Michelle Dukich

 
 Greetings all:

Many thanks to those who have been so gracious and
prompt in their replies to my queries on Lyx.  My
transition to Linux has been painful and slow at
times, but my migration to Lyx has been enhanced by
the wonderful people on this list who have been so
generous with their knowledge.

We may yet get the rest of the people in the office to
switch, especially with such great support from the
Lyx open source community.  

I did the texhash and things are smoother now.  I am
trying to use different styles in BibTeX, mla and
chicago bst in particular, but they keep crashing. 
Lyx reports that says:

Undefined COntrol Sequence 
et~al.

and then it gives the citation code that is barfing
up.

Again, many thanks to you all.  

Michelle
LyxChix on Linux





__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/



Re: Make-Index doesn,t work

2001-06-08 Thread Thorsten Körner

Am Freitag,  8. Juni 2001 14:55 schrieb Herbert Voss:
 Thorsten Körner wrote:
  Am Freitag,  8. Juni 2001 01:26 schrieb Herbert Voss:
   On Fri, 8 Jun 2001, Thorsten [iso-8859-1] Körner wrote:
I´m using LyX 1.1.6fix1 on a Mandrake 8.0-System.
Everything works really fine with LyX, but the Index doesn´t appear
in PDF-Files (either using the Way with ps2pdf nor pdftex)
Is there anybody out there, who has an idea or solution ?
  
   does it appears in dvi- or ps-view?
 
  No. Not when I´m working with LyX.

 can you send a minimal lyx-file which shows this
 behaviour?

Hi
I´ve attached a file named test.lyx it is Documentclass book (a very short 
book ;-) but it should have an index) 
Cu
Thorsten
-- 
WHOA!!  Ken and Barbie are having TOO MUCH FUN!!  It must be the
NEGATIVE IONS!!

 LyX - Testfile


Re: Make-Index doesn,t work

2001-06-08 Thread Herbert Voss

Thorsten Körner wrote:
 I´ve attached a file named test.lyx it is Documentclass book (a very short
 book ;-) but it should have an index)

no problem for me with 1.1.6fix2
a nice index... ;-)

please try again with lyx, than export to latex
and run manually
latex test.tex
makeindex test.tex
latex test.tex

ehat does the logfile says?

Herbert

-- 
http://www.educat.hu-berlin.de/~voss/lyx/



Re: Thanks

2001-06-08 Thread Herbert Voss

Michelle Dukich wrote:
 
 Many thanks to those who have been so gracious and
 prompt in their replies to my queries on Lyx.  My
 transition to Linux has been painful and slow at
 times, but my migration to Lyx has been enhanced by
 the wonderful people on this list who have been so
 generous with their knowledge.

:-)

 I did the texhash and things are smoother now.  I am
 trying to use different styles in BibTeX, mla and
 chicago bst in particular, but they keep crashing.
 Lyx reports that says:
 
 Undefined COntrol Sequence
 et~al.

can you send only the bibdata file?

Herbert

-- 
http://www.educat.hu-berlin.de/~voss/lyx/



Lyx exports Latex, but without Lyx Code

2001-06-08 Thread Adolfo Pachón

Hi all!!

I want to do this:

1. I create my lyx file.
2. I select Export-Latex from Lyx
3. I want that Lyx generate an tex file without Lyx code lines.

How can I do it?


Thanks
-- 


(Adolfo Pachón)



pretty ref..

2001-06-08 Thread Michael

funny:
if I use the pretty ref to refer to a figure, the resulting reference is in 
English: figure x on page y, instead German, as all other text. All other 
ref-types work well ( i.e. German )

Michael



Re: Make-Index doesn,t work

2001-06-08 Thread Thorsten Körner

Am Freitag,  8. Juni 2001 15:56 schrieb Herbert Voss:
 Thorsten Körner wrote:
  I´ve attached a file named test.lyx it is Documentclass book (a very
  short book ;-) but it should have an index)

 no problem for me with 1.1.6fix2
 a nice index... ;-)

It´s just a nice book :-)

 please try again with lyx, than export to latex
 and run manually
 latex test.tex
 makeindex test.tex
 latex test.tex

 ehat does the logfile says?


The logfile says:
--snipp
(/usr/share/texmf/tex/latex/base/makeidx.sty
Package: makeidx 2000/03/29 v1.0m Standard LaTeX package
)
\@indexfile=\write3
\openout3 = `test.idx'.


Writing index file test.idx
(/usr/share/texmf/tex/latex/psnfss/pifont.sty
Package: pifont 2000/01/12 PSNFSS-v8.1 Pi font support (SPQR)
LaTeX Font Info:Try loading font information for U+pzd on input line 62.

(/usr/share/texmf/tex/latex/psnfss/upzd.fd
File: upzd.fd 2000/01/12 PSNFSS-v8.1 font definitions for U/pzd.
)
LaTeX Font Info:Try loading font information for U+psy on input line 63.

(/usr/share/texmf/tex/latex/psnfss/upsy.fd
File: upsy.fd 2000/01/12 PSNFSS-v8.1 font definitions for U/psy.
)) (test.aux)
\openout1 = `test.aux'.
--snapp

it seems to be allright, but the index is invisible. Only 5 pages (incl. 
Titlepage) are shown in Ghostview (as PS and as PDF ) or in Acrobat-Reader 
(PDF)
It´s mysterious, isn´t it?
CU
Thorsten
-- 
Yours is not to reason why,
Just to Sail Away.
And when you find you have to throw
Your Legacy away;
Remember life as was it is,
And is as it were;
Chasing sounds across the galaxy
'Till silence is but a blur.
-- QYX.



Re: Make-Index doesn,t work

2001-06-08 Thread Herbert Voss

Thorsten Körner wrote:
 
 
 Writing index file test.idx
 (/usr/share/texmf/tex/latex/psnfss/pifont.sty

what's about the index file test.idx. is it empty?

Herbert

-- 
http://www.educat.hu-berlin.de/~voss/lyx/



Re: Make-Index doesn,t work

2001-06-08 Thread Thorsten Körner

Am Freitag,  8. Juni 2001 17:06 schrieb Herbert Voss:
 Thorsten Körner wrote:
  Writing index file test.idx
  (/usr/share/texmf/tex/latex/psnfss/pifont.sty

 what's about the index file test.idx. is it empty?

 Herbert

The Index-file goes here:
snipp
\indexentry{LaTeX}{5}
\indexentry{LyX-Testfile}{5}
snapp
That´s all. But I think that´s OK.
CU
Thorsten
-- 
It's a poor workman who blames his tools.



Re: pdf error...

2001-06-08 Thread Dekel Tsur

On Fri, Jun 08, 2001 at 10:52:17AM +0200, Michael wrote:
 When I insert an eps graphic in my document pdflatex gives an error:
 
unknown graphics extension .ps   
 
 The extension doesn't matter, I allways get that error. Without graphic, 
 pdflatex works fine. PS2PDF also works, but doesn't look as good

Put the following lines in ~/.dvipsrc , and you will be able to produce
pretty PDF with ps2pdf

p +bsr.map
p +bsr-interpolated.map
p +hoekwater.map



Re: math-macros

2001-06-08 Thread Dekel Tsur

On Fri, Jun 08, 2001 at 08:44:47AM +0200, Jean-Pierre.Chretien wrote:
 The math-macro definitions have the advantage that they are expanded and
 appear in WYSIWM mode (a LyX perk!).  However, there seems to be no
 mechanism for saving the math-macro definitions as part of a standard
 template.

 I wrote a perl script to translate (as reLyX, in a way) a set of lateX
 macros a sa set of LyX math-macros, which you had to Include
 as a LyX file.

This is not a complete solution because the macros will not be expanded on
the LyX display unless you load (when starting LyX) the macro file.
Currently, there isn't a better solution.



Re: Bibtex problem

2001-06-08 Thread Dekel Tsur

On Fri, Jun 08, 2001 at 10:12:15AM +0200, Ragnar Beer wrote:
 Howdy!
 
 I downloaded the apacite style fron CTAN and found a small but nasty buglet:
 When there are a couple of authors there is a colon too much in the citation
 before the '', e.g. (Hahlweg, Klann,  Hank, 1992). Unfortunately the email
 that the authour gives in the manual isn't valid anymore . Is this something
 that I can correct myself easily?

As far as I know, the '' should be preceded by a comma, so this is not a bug!



Re: View-LyX

2001-06-08 Thread Dekel Tsur

On Fri, Jun 08, 2001 at 10:57:37AM +0200, Thomas de Grenier de Latour wrote:
 I'd like to add a LyX item to my View menu (I'm using 1.1.6fix2),
 which would launch a text viewer/editor on a temporary copy of the
 current opened lyx document. Ok, that wouldn't be a major feature...

You can't

 I also tried to do my stuff creating a new file format, namely LyxCopy,
 with cat as an export converter (yes, there's a long story between
 cats and me, but I think I've already written you about that;), which
 would have gvim as a viewer. But it doesn't appear neither in the View
 menu, nor in the Export one. So a second question is: what exactly can
 Converters do? Are they only used as import features?

They are used both for import and export.



Re: About Lyx RTF Format

2001-06-08 Thread Dekel Tsur

On Fri, Jun 08, 2001 at 12:56:51PM +0200, Adolfo Pachón wrote:
 a) If I Export Lyx to Latex and try latex2rtf my_tex_file.tex, system
 says: ERROR ...- and no RTF file is obtained.
 b) If I delete the lines about Lyx in the exported .tex file,..., I OBTAIN
 AN RTF FILE!!
 
 
 Can someone explain to me this?

The does a bad job of parsing the tex file.
Try updating your version of latex2rtf (get the latest version from
http://sourceforge.net/project/showfiles.php?group_id=22654)

 Can someone suggest to me the most efficient method (or program) for the
 conversion from Lyx to RTF, or from Latex to RTF?

You can either use latex2rtf or ltx2rtf (ftp://ftp.lps.u-psud.fr/pub/ltx2rtf/)
I did some testing and ltx2rtf seems to work better.

Note that if your purpose is to create a file that is readable by MSWord,
you can just create a HTML file.



Re: postscript upodate doesn't work :(

2001-06-08 Thread Dekel Tsur

On Fri, Jun 08, 2001 at 01:04:08PM +0200, Giorgio Corani wrote:
 I've just updated lyx to the 1.1.6fix1 release.
 Although it works fine, I'm experiencing some problems with postscript 
 preview.
 As a matter of fact, when  I try to update it, gv continues to display 
 the same postscript file; moreover, if I close gv and follow the menu 
 (view-postscript), I get once more the old file.
 In order to get the updated version, I have to close lyx, delete the 
 .lyx directory in /tmp and re-open the file.
 Ideas?

This problem is mainly due to a bad compiler.

 should the 1.1.6fix2 fix that?

Yes.



Re: Hyphenation of citation references

2001-06-08 Thread Dekel Tsur

On Fri, Jun 08, 2001 at 01:31:26PM +0100, José Ernesto Jardim wrote:
 I'm writing a document using bibtex to manage bibliography and calling
 it within lyx with apalike style.
 
 When I produce the postscript document the citations are not hyphenated
 and I get lines extended throught the margins.
 
 How can I solve this ?

Put \usepackage{apalike} in the preamble.




Re: Capitalization in BibTeX to LyX

2001-06-08 Thread Dekel Tsur

On Fri, Jun 08, 2001 at 08:07:08AM -0700, Michelle Dukich wrote:
 Couple of questions.
 
 1.  I cannot seem to get the harvard style to work. 
 Went to a couple of sites:  one was missing the
 makefile info

Go to www.ctan.org

 I am using plain for now, but help here would be
 greatly appreciated.  How can I get the Harvard
 package and the various styles to work in Lyx?  

1. Copy all .tex/.sty files to TEXMF/latex/harvard
2. Copy all .bst files to TEXMF/bibtex/bst/harvard
3. Run texhash

 2.  I used the Incollection type for a reference and
 the Title (as opposed to the BookTitle) will only
 capitalize the first word.  I understand that this is
 the normal mode, but my title is The Guatemalan
 Commission for Historical Clarification: blah blah
 blah which is a Proper noun.  How can I override the
 non-cap tendency when necessary?

{T}he {G}uatemalan {C}ommission etc.



math-macros

2001-06-08 Thread Michael P Friedlander

I just started using LyX, and even after a few hours, it's clear that it's
a great advance over using LaTeX directly, even with great packages like
AucTeX under Emacs.  In switching over to LyX, I'm trying to decide how to
best deal with the extensive set of LaTeX math macros I've put together
over the years.

Under LyX, the most straight forward approach would be to simply insert

\input{macros.tex}

into the LaTeX preamble box.  I can then save this preamble as part of the
~/.lyx/defaults.lyx file and have it available for all documents I
compose.  The disadvantage of this approach is that the macro doesn't get
expanded into WYSIWM mode.  For example, \norm{x} appears in the red, TeX
mode.

The math-macro definitions have the advantage that they are expanded and
appear in WYSIWM mode (a LyX perk!).  However, there seems to be no
mechanism for saving the math-macro definitions as part of a standard
template.

Are there other options for setting up my macros in LyX as some sort of
default for all new documents, and still take advantage of the WYSIWM
feature?

Thanks for the help.

--Michael





Re: math-macros

2001-06-08 Thread Jean-Pierre.Chretien


Date: Thu, 7 Jun 2001 23:41:19 -0700 (PDT)
From: Michael P Friedlander [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: math-macros

I just started using LyX, and even after a few hours, it's clear that it's
a great advance over using LaTeX directly, even with great packages like
AucTeX under Emacs.  In switching over to LyX, I'm trying to decide how to
best deal with the extensive set of LaTeX math macros I've put together
over the years.

Under LyX, the most straight forward approach would be to simply insert

\input{macros.tex}

into the LaTeX preamble box.  I can then save this preamble as part of the
~/.lyx/defaults.lyx file and have it available for all documents I
compose.  The disadvantage of this approach is that the macro doesn't get
expanded into WYSIWM mode.  For example, \norm{x} appears in the red, TeX
mode.

The math-macro definitions have the advantage that they are expanded and
appear in WYSIWM mode (a LyX perk!).  However, there seems to be no
mechanism for saving the math-macro definitions as part of a standard
template.

Are there other options for setting up my macros in LyX as some sort of
default for all new documents, and still take advantage of the WYSIWM
feature?

Thanks for the help.

--Michael

I wrote a perl script to translate (as reLyX, in a way) a set of lateX
macros a sa set of LyX math-macros, which you had to Include
as a LyX file.
I made it work, but time lacked to make it robust, particularly to old
2.09 constructs embedding math in \mbox to be able to use them in normal
and in TeX mode, which makes no sense in mathed and seemingly in 2e as
somebody pointed out to me recently on the list.

I must have it some where, but I can't have a look right now, I may
do so if you're interested.

-- 
Jean-Pierre





Re: Make-Index doesn,t work

2001-06-08 Thread Claus Hentschel

  I´m using LyX 1.1.6fix1 on a Mandrake 8.0-System.
  Everything works really fine with LyX, but the Index doesn´t appear in
  PDF-Files (either using the Way with ps2pdf nor pdftex)
  Is there anybody out there, who has an idea or solution ?

 does it appears in dvi- or ps-view?

 Herbert

This seems to be the same problem as with MikTeX 2.01 on Win32! I already
have posted log-files to
JMarc Lasgouttes [EMAIL PROTECTED] from different TeX
distributions because makeindex works with fpTeX 0.4 (the teTeX distribution
for Win32) and with the old MikTeX 1.2 release!

JMarc expects different log-files to be the reason for that misbehaviour.
The log-file will be parsed inside Lyx to create the depency file and (you
can check this) there is in some cases no entry for the idx file present!

Maybe that can be fixed soon!

Claus




Math symbols in screen

2001-06-08 Thread Jos Luis da Silva

Dear Lyx users,

on my screen most of the math symbols, e.g. \sum, \int do not show
instead a white space appear. Nevertheless compiling is ok!
Can somebody help me?
Thanks in advance

José Luis
-- 
José Luis da Silva
Campus da Penteada
9000-390 Funchal, Madeira
Telf. +351-291-705180
Fax +351-291-705199
E-mail: [EMAIL PROTECTED]



Re: Lyx latex2html

2001-06-08 Thread Jean-Pierre.Chretien


From: Adolfo Pachón [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Lyx  latex2html
Date: Thu, 7 Jun 2001 17:54:05 +0200

Hi all!!

I want to obtain this in the HTML output:

a href=http://www.lyx.org;Go to Lyx/a

How have I to write in Lyx to export to Latex and then generate the HTML
output with latex2html?

Thanks


(Adolfo M. Pachón Rodríguez)

Here is a short perl script which used to work before 1.1.5
Works with 1.1.5 (but errors about tokens in TeX mode in the calling window)
Didn't check it with 1.1.6
The usage explains (almost) everything.
url2h.sh allows to test it in a subdir (l2h is a shortcut here for latex2html).

The idea is to use the Name field of the url inset to provide the anchor.

-- 
Jean-Pierre


#!/usr/local/bin/perl
#

$| = 1;

if ($ARGV[0] eq -h || $ARGV[0] eq ) {
usage; exit;
}

# pas de séparateur : lecture du fichier comme une chaîne
undef $/;
$argv=join(' ',@ARGV);
 
BOUCLE: while (@ARGV) {
$ARG = shift @ARGV;
   if (!open(IN, $ARG)) 
   { print Erreur ouverture fichier $ARG\n;
 next BOUCLE;
   }
($rac,$suf)=($ARG=~m/(.*)\.(.*?)$/m);
print $rac.$suf\n;
   $file= IN;
   close IN;
# on applique le filtre
if ($suf eq lyx) {
$file=~s/\\begin_inset LatexCommand \\htmlurl\[(.*?)\]\{(.*?)\}.*?\\end_inset 
/\\latex latex 
\\htmladdnormallink\{$1\}\{$2\}\~
\\begin\{latexonly\}
\\url\{$2\}
\\end\{latexonly\}
\\layout Standard
/gs ;
$file=~s/\\begin_inset LatexCommand \\url\[(.*?)\]\{(.*?)\}.*?\\end_inset 
/\\latex latex 
\\htmladdnormallink\{$1\}\{$2\}\~
\\begin\{latexonly\}
\\url\{$2\}
\\end\{latexonly\}
\\layout Standard
/gs;
$file=~s/\\begin_inset LatexCommand \\htmlurl\{(.*?)\}.*?\\end_inset /\\latex 
latex 
\\htmladdnormallink\{\\url\{$1\}\}\{$1\}\~
\\layout Standard
/gs ;
$file=~s/\\begin_inset LatexCommand \\url\{(.*?)\}.*?\\end_inset /\\latex 
latex 
\\htmladdnormallink\{\\url\{$1\}\}\{$1\}\~
\\layout Standard
/gs;
}

$file=~s/\~(\\begin\{latexonly\})/\n$1/gs if ($suf eq tex);
open(OUT,$ARG);
print OUT $file;
close OUT;
}

sub usage {
print Usage: url2h [-h(elp)]  file1 file2 ... \n(star convention allowed, 
e.g. url2h *.lyx)\nConverts \\htmlurl macros into ERT \\htmladdnormallink macros.
Keeps the original typesetting. 
Run url2h on the exported .tex file to
provide the required newline before latexonly environment.
Be sure to add \\usepackage{url} and \\usepackage{html} in the preamble;
}





 url2h.sh

#LyX 1.1 created this file. For more info see http://www.lyx.org/
\lyxformat 2.16
\textclass article
\begin_preamble
\usepackage{html}
\usepackage{url}
\end_preamble
\language french
\inputencoding auto
\fontscheme default
\graphics default
\paperfontsize default
\spacing single 
\papersize Default
\paperpackage a4
\use_geometry 0
\use_amsmath 0
\paperorientation portrait
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\defskip medskip
\quotes_language english
\quotes_times 2
\papercolumns 1
\papersides 1
\paperpagestyle default

\layout Standard

This i a link on 
\begin_inset LatexCommand \url[lyx]{http://www.lyx.org}

\end_inset 


\the_end



Re: Make-Index doesn,t work

2001-06-08 Thread Herbert Voss


On Fri, 8 Jun 2001, Thorsten [iso-8859-1] Körner wrote:

 I´m using LyX 1.1.6fix1 on a Mandrake 8.0-System.
 Everything works really fine with LyX, but the Index doesn´t appear in
 PDF-Files (either using the Way with ps2pdf nor pdftex)
 Is there anybody out there, who has an idea or solution ?

does it appears in dvi- or ps-view?

Herbert




Bibtex problem

2001-06-08 Thread Ragnar Beer

Howdy!

I downloaded the apacite style fron CTAN and found a small but nasty buglet:
When there are a couple of authors there is a colon too much in the citation
before the '', e.g. (Hahlweg, Klann,  Hank, 1992). Unfortunately the email
that the authour gives in the manual isn't valid anymore . Is this something
that I can correct myself easily?

Cheers,

Ragnar



table float with caption at the bottom

2001-06-08 Thread Peer Frank

Hi Lyxers,

Inserting table floats with the caption below the table does not work as in 
previous versions (before 1.1.6 fix2), I don't get it to work at all:

insert - floats - table floats
then write mycaptiontext, then insert table between Table: and 
mycaptiontext 

produces the following error:

Paragraph ended before \@caption was complete.
\end{tabular} mycaptiontext} ...

My mistake or a  bug ?

Bye !
Peer



-- 
Dr. Peer Frank 
Skytec
Fuggerweg 19
D-86874 Mattsies (Germany)
phone: +49-8268-732
mail: [EMAIL PROTECTED]
web: www.skytec-engineering.de



Re: table float with caption at the bottom

2001-06-08 Thread Herbert Voss



On Fri, 8 Jun 2001, Peer Frank wrote:

 Inserting table floats with the caption below the table does not work as in
 previous versions (before 1.1.6 fix2), I don't get it to work at all:

 insert - floats - table floats
 then write mycaptiontext, then insert table between Table: and
 mycaptiontext

 produces the following error:

 Paragraph ended before \@caption was complete.
 \end{tabular} mycaptiontext} ...

did you hit enter before inserting the table?

Herbert




Re: Math symbols in screen

2001-06-08 Thread Andre Poenitz

 on my screen most of the math symbols, e.g. \sum, \int do not show
 instead a white space appear. Nevertheless compiling is ok!
 Can somebody help me?

Which LyX version do you use?

Andre'

-- 
André Pönitz . [EMAIL PROTECTED]



pdf error...

2001-06-08 Thread Michael

When I insert an eps graphic in my document pdflatex gives an error:

 unknown graphics extension .ps   

The extension doesn't matter, I allways get that error. Without graphic, 
pdflatex works fine. PS2PDF also works, but doesn't look as good

thanks for answering,
 Michael

p.s.: lyx 1.1.6fix2




Re: pdf error...

2001-06-08 Thread Herbert Voss



On Fri, 8 Jun 2001, Michael wrote:

 When I insert an eps graphic in my document pdflatex gives an error:

unknown graphics extension .ps

 The extension doesn't matter, I allways get that error. Without graphic,
 pdflatex works fine. PS2PDF also works, but doesn't look as good

pdflatex needs pdf-file format for the images. choose
the script from steffen.

http://tex2pdf.berlios.de/

Herbert




View-LyX

2001-06-08 Thread Thomas de Grenier de Latour

Hi,

I'd like to add a LyX item to my View menu (I'm using 1.1.6fix2),
which would launch a text viewer/editor on a temporary copy of the
current opened lyx document. Ok, that wouldn't be a major feature...
It's just because I'm sometimes curious, but also easily bored with
saving files, launching programs, and opening files again..., each time
I'm wondering something about the lyx format. 
I've managed to do it for Latex, just adding gvim in the
Preference-Converters-Format-LaTeX-Viewer, but it doesn't seems to
work with LyX.  What exactly does the ViewFormats item in the ui file
refer to? 
I also tried to do my stuff creating a new file format, namely LyxCopy,
with cat as an export converter (yes, there's a long story between
cats and me, but I think I've already written you about that;), which
would have gvim as a viewer. But it doesn't appear neither in the View
menu, nor in the Export one. So a second question is: what exactly can
Converters do? Are they only used as import features?

Thanks for your lights,


-- 
Thomas.



Re: Math symbols in screen

2001-06-08 Thread Tuukka Toivonen

On Fri, 8 Jun 2001, [iso-8859-2] José Luis da Silva wrote:

 on my screen most of the math symbols, e.g. \sum, \int do not show
 instead a white space appear. Nevertheless compiling is ok!

Maybe a font problem. You could try removing unused fonts and reordering
the rest. If you don't use font server, this is done in /etc/XF86Config, I
don't know where's fontservers config file.

Althought, if I recall correctly, in my situation I didn't get white
spaces but wrong fonts instead.




Re: table float with caption at the bottom

2001-06-08 Thread Peer Frank

On Friday 08 June 2001 10:41, Herbert Voss wrote:
 On Fri, 8 Jun 2001, Peer Frank wrote:
  Inserting table floats with the caption below the table does not work as
  in previous versions (before 1.1.6 fix2), I don't get it to work at all:
 
  insert - floats - table floats
  then write mycaptiontext, then insert table between Table: and
  mycaptiontext
 
  produces the following error:
 
  Paragraph ended before \@caption was complete.
  \end{tabular} mycaptiontext} ...

 did you hit enter before inserting the table?

 Herbert


Well, no, but it helps a lot !!
Thanks !
Peer



Re: Lyx latex2html

2001-06-08 Thread Dekel Tsur

On Thu, Jun 07, 2001 at 08:15:06PM +0200, Adolfo Pachón wrote:
 Yes, I read this in the latex2html manual, but in Lyx, an CTRL+D shows me an
 error message:
 
 File html.sty Not Found
 
 I've put this file in all sites, but always tell me the error.
 
 Where have I to put the html.sty exactly?

1. Put html.sty in TEXMF/tex/latex/latex2html/html.sty

where TEXMF is the directory of tex (you can find the value of TEXMF
by running kpsexpand '$TEXMF').

2. Run texhash



Re: Make-Index doesn,t work

2001-06-08 Thread Dekel Tsur

On Fri, Jun 08, 2001 at 12:09:14AM -0400, Thorsten Körner wrote:
 Hi
 I´m using LyX 1.1.6fix1 on a Mandrake 8.0-System.
 Everything works really fine with LyX, but the Index doesn´t appear in 
 PDF-Files (either using the Way with ps2pdf nor pdftex)
 Is there anybody out there, who has an idea or solution ?
 Thank You for help 

Did you do Insert-ListTOC-Index List ?



Re: Book layout and included files problem.

2001-06-08 Thread Dekel Tsur

On Thu, Jun 07, 2001 at 05:36:25PM -0600, Fernando Pérez wrote:
 I'm using Lyx 1.1.6fix1 and am encountering the following problem: if I
 create a document which includes other lyx documents using the article
 class, everything is fine. But if I change the master document layout to
 be book or Thesis (University of Colorado's thesis, specifically), the
 included files vanish! That is, the include gray boxes are still present
 in the lyx document, but when a latex file is produced (either
 automatically for making the PostScript or explicitly by Latex Export), the
 \include{file} lines are simply not there! As far as I can tell this is a
 lyx bug, can anyone confirm and suggest solutions?

Currently, the documentclass of the master file should be equal to the
documentclass of the included files.



About Lyx RTF Format

2001-06-08 Thread Adolfo Pachón

Hi all!!

At now, from my Lyx file I can generate:

* .tex (from Lyx Export)
* .dvi (from latex command)
* .ps (from latex command)
* .pdf (using dvipdfm)

But my problem is the RTF format. I use latex2rtf for that and occurs than:

a) If I Export Lyx to Latex and try latex2rtf my_tex_file.tex, system
says: ERROR ...- and no RTF file is obtained.
b) If I delete the lines about Lyx in the exported .tex file,..., I OBTAIN
AN RTF FILE!!


Can someone explain to me this?
Can someone suggest to me the most efficient method (or program) for the
conversion from Lyx to RTF, or from Latex to RTF?

Thanks...

(Adolfo M. Pachón Rodríguez)




postscript upodate doesn't work :(

2001-06-08 Thread Giorgio Corani

hi!
I've just updated lyx to the 1.1.6fix1 release.
Although it works fine, I'm experiencing some problems with postscript 
preview.
As a matter of fact, when  I try to update it, gv continues to display 
the same postscript file; moreover, if I close gv and follow the menu 
(view-postscript), I get once more the old file.
In order to get the updated version, I have to close lyx, delete the 
.lyx directory in /tmp and re-open the file.
Ideas?
should the 1.1.6fix2 fix that?

Giorgio




Hyphenation of citation references

2001-06-08 Thread José Ernesto Jardim

Hi

I'm writing a document using bibtex to manage bibliography and calling
it within lyx with apalike style.

When I produce the postscript document the citations are not hyphenated
and I get lines extended throught the margins.

How can I solve this ?

Thanks

EJ



Re: Bibtex problem

2001-06-08 Thread Herbert Voss

Ragnar Beer wrote:
 
 I downloaded the apacite style fron CTAN and found a small but nasty buglet:
 When there are a couple of authors there is a colon too much in the citation
 before the '', e.g. (Hahlweg, Klann,  Hank, 1992). Unfortunately the email
 that the authour gives in the manual isn't valid anymore . Is this something
 that I can correct myself easily?

yes, you can, but it's not easy. have a look at
the apacite.bst. there is a function format.names.

otherwise write to tex users list
comp.text.tex

Herbert

-- 
http://www.educat.hu-berlin.de/~voss/lyx/




Online LyX Documentation updated!

2001-06-08 Thread Juergen Vigna

For anybody interested:

  After I got a complaint that the Online Documentation is a bit old I
  updated the site http://www.sad.it/~jug/lyx/lyxdoc with current lyxdoc
  Documentation, using as export to LaTeX the lyx-1.1.6cvs version.


Jürgen

--
-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._
Dr. Jürgen VignaE-Mail:  [EMAIL PROTECTED]
Italienallee 13/N   Tel/Fax: +39-0471-450260 / +39-0471-450253
I-39100 Bozen   Web: http://www.sad.it/~jug
-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._

Forgive him, for he believes that the customs of his tribe are the laws
of nature!
-- G.B. Shaw




linesize in table

2001-06-08 Thread Jörg Haug

Is there a possibility to change the size of a line in a table in Lyx ?
I did not find anything in the tutorial.

Thanks,

Jörg




Re: Math symbols in screen

2001-06-08 Thread Rem

edit - preferences
turn of 'scalable fonts'
you may have to increase zoom as well...

Remzi

- Original Message -
From: Tuukka Toivonen [EMAIL PROTECTED]
To: José Luis da Silva [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Friday, June 08, 2001 4:31 AM
Subject: Re: Math symbols in screen


 On Fri, 8 Jun 2001, [iso-8859-2] José Luis da Silva wrote:

  on my screen most of the math symbols, e.g. \sum, \int do not show
  instead a white space appear. Nevertheless compiling is ok!

 Maybe a font problem. You could try removing unused fonts and reordering
 the rest. If you don't use font server, this is done in /etc/XF86Config, I
 don't know where's fontservers config file.

 Althought, if I recall correctly, in my situation I didn't get white
 spaces but wrong fonts instead.





RE: linesize in table

2001-06-08 Thread Juergen Vigna


On 08-Jun-2001 Jörg Haug wrote:
 Is there a possibility to change the size of a line in a table in Lyx ?
 I did not find anything in the tutorial.

Vertically (NO) or Horizontally (with the Width-Field)?

  Jürgen

--
-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._
Dr. Jürgen VignaE-Mail:  [EMAIL PROTECTED]
Italienallee 13/N   Tel/Fax: +39-0471-450260 / +39-0471-450253
I-39100 Bozen   Web: http://www.sad.it/~jug
-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._

Got a complaint about the Internal Revenue Service?  
Call the convenient toll-free IRS Taxpayer Complaint Hot Line Number:

1-800-AUDITME




Re: linesize in table

2001-06-08 Thread Herbert Voss

Jörg Haug wrote:
 
 Is there a possibility to change the size of a line in a table in Lyx ?
 I did not find anything in the tutorial.

put the cursor in any cell of a column and click
right mouse button. than click on table menu
row/column and insert in the width-field any
value with a valid unit, e.g. 1cm, and hit
enter

Herbert

-- 
http://www.educat.hu-berlin.de/~voss/lyx/



Capitalization in BibTeX to LyX

2001-06-08 Thread Michelle Dukich

 
 Greetings:

Moving right along in my experience with Lyx, I am
setting up my bibliography with BibTeX. 

Couple of questions.

1.  I cannot seem to get the harvard style to work. 
Went to a couple of sites:  one was missing the
makefile info

http://www.mit.edu/afs/sipb/project/tex-new/doc/latex/harvard/

the other was a dead URL

http://www.arch.su.edu.au/~peterw/latex/harvard/ .

I am using plain for now, but help here would be
greatly appreciated.  How can I get the Harvard
package and the various styles to work in Lyx?  

2.  I used the Incollection type for a reference and
the Title (as opposed to the BookTitle) will only
capitalize the first word.  I understand that this is
the normal mode, but my title is The Guatemalan
Commission for Historical Clarification: blah blah
blah which is a Proper noun.  How can I override the
non-cap tendency when necessary?

Otherwise, I am a happy lil camper in my Lyx'ing. 
Just call me a LyxChix now.  LOL.  

Many thanks for help on this and my previous posts.

Michelle


__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/



Re: linesize in table

2001-06-08 Thread Jörg Haug

Herbert Voss schrieb:

 Jörg Haug wrote:
 
  Is there a possibility to change the size of a line in a table in Lyx ?
  I did not find anything in the tutorial.

 put the cursor in any cell of a column and click
 right mouse button. than click on table menu
 row/column and insert in the width-field any
 value with a valid unit, e.g. 1cm, and hit
 enter

 Herbert


Sorry there is a misunderstanding. I want to change the size of the line
between two rows (e.g. to 1pt). Is this possible ?

Jörg




Re: Capitalization in BibTeX to LyX

2001-06-08 Thread Jean-Marc Lasgouttes

 Michelle == Michelle Dukich [EMAIL PROTECTED] writes:

Michelle 2. I used the Incollection type for a reference and the
Michelle Title (as opposed to the BookTitle) will only capitalize the
Michelle first word. I understand that this is the normal mode, but
Michelle my title is The Guatemalan Commission for Historical
Michelle Clarification: blah blah blah which is a Proper noun. How
Michelle can I override the non-cap tendency when necessary?

You can enclose the letter in {}, like {G}uatemalan.

JMarc



Re: linesize in table

2001-06-08 Thread Herbert Voss

Jörg Haug wrote:
  
   Is there a possibility to change the size of a line in a table in Lyx ?
   I did not find anything in the tutorial.
 
 Sorry there is a misunderstanding. I want to change the size of the line
 between two rows (e.g. to 1pt). Is this possible ?

in latex preamble write
\usepackage{array}

clear all entries for a cell-width in any column,
than open table-menu for the first cell (upper left)
and write in the alignment field (lower left)
for example:

|c!{\vrule width 3pt}p{12cm}|

this must be the whole definition of the table!
here it is:
|center column|||column with a width of 12cm|
^ ^^^   ^
vline vline 3pt  vline

or for a simple table

|c!{\vrule width 3pt}c|

the !{\vrule width 3pt} is like a | for a vertical line.

Herbert


-- 
http://www.educat.hu-berlin.de/~voss/lyx/



special fonts in math mode

2001-06-08 Thread becherini yvonne Gruppo II

Hi everybody,
do you know how to write special characters as ö in math mode.

Many thanks from Bologna (Italy)

Yvonne




Re: Does LyX complain about broken label or citation references?

2001-06-08 Thread Jean-Marc Lasgouttes

 Ramon == Ramon Felciano [EMAIL PROTECTED] writes:

Ramon Hi -- I've noticed that LyX (or LaTeX I guess) doesn't seem to
Ramon complain about broken label references. Instead, the reference
Ramon gets printed with a ? indicating that the target couldn't be
Ramon found. Is there any way to do a pre-flight of a LyX (LaTeX)
Ramon document to check the references and make sure they are all
Ramon present and accessible?

LyX does not have this feature yet. It would certainly be useful...

JMarc



Re: linesize in table

2001-06-08 Thread Jörg Haug

Herbert Voss schrieb:

 Jörg Haug wrote:
   
Is there a possibility to change the size of a line in a table in Lyx ?
I did not find anything in the tutorial.
 
  Sorry there is a misunderstanding. I want to change the size of the line
  between two rows (e.g. to 1pt). Is this possible ?

 in latex preamble write
 \usepackage{array}

 clear all entries for a cell-width in any column,
 than open table-menu for the first cell (upper left)
 and write in the alignment field (lower left)
 for example:

 |c!{\vrule width 3pt}p{12cm}|

 this must be the whole definition of the table!
 here it is:
 |center column|||column with a width of 12cm|
 ^ ^^^   ^
 vline vline 3pt  vline

 or for a simple table

 |c!{\vrule width 3pt}c|

 the !{\vrule width 3pt} is like a | for a vertical line.

 Herbert

 --
 http://www.educat.hu-berlin.de/~voss/lyx/

I want to change the horizontal line. Now i used
\setlenght{\doublerulesep}{0.5pt} before the table and after the table i set it
back to 2pt.




Re: Capitalization in BibTeX to LyX

2001-06-08 Thread Herbert Voss

Michelle Dukich wrote:
 
 
  Greetings:
 
 Moving right along in my experience with Lyx, I am
 setting up my bibliography with BibTeX.
 
 Couple of questions.
 
 1.  I cannot seem to get the harvard style to work.
 Went to a couple of sites:  one was missing the
 makefile info
 
 http://www.mit.edu/afs/sipb/project/tex-new/doc/latex/harvard/
 
 the other was a dead URL
 
 http://www.arch.su.edu.au/~peterw/latex/harvard/ .

ftp://ftp.dante.de/tex-archive/macros/latex/contrib/supported/harvard/

this should work

possible harvard bib-styles are

http://www.educat.hu-berlin.de/~voss/lyx/bibtex/bibtex.html#harvard

Herbert

-- 
http://www.educat.hu-berlin.de/~voss/lyx/



  1   2   >