Re: Re: Word -- TeX

2002-07-30 Thread Guenter Milde

On Mon, 29 Jul 2002 14:44:24 -0400 wrote Paul Tremblay [EMAIL PROTECTED]:

  I think that Abiword uses wv for importing, so it is probably better
  to use wv directly for conversion from word to lyx

 ... Unfortunately, it can't convert RTF to LaTeX.

Do you know about gnu unrtf?

   UnRTF is a moderately complicated converter from RTF to other
   formats, including HTML, LaTeX, text, and PostScript. Converting
   to HTML, it supports tables, fonts, colors, embedded images,
   hyperlinks, paragraph alignment among other things. All other
   conversions are alpha--just begun.

   WEBSITE   
http://www.geocities.com/tuorfa   

I have downloaded version 0.18.1., it is written in C, compiles fast and
works pretty well. (for rtf - html at least). 

May be you can convince the author to include XML as output format...

Guenter

--
G.Milde at physik.tu-dresden.de




Re: seminar.layout doesn't work as expected

2002-07-30 Thread Jean-Marc Lasgouttes

 Guenter == Guenter Milde [EMAIL PROTECTED] writes:

Guenter On 17 Jul 2002 11:33:15 -0400 wrote German Poo Caaman~o
Guenter [EMAIL PROTECTED]:
  Since lyx-1.1.6-fix (AFAIR) I've been having some problems with
 seminar.layout. I defined frames on my slides, but now one slide
 appears with frame and empty, the second one appears with text
 (without frame), etc.

Guenter Thanks for the report, makes me aware of problems to come...
Guenter From the attached file I guess, that the problem arises in
Guenter LyX 1.2.0 I have written seminar.layout for 1.1.6. It seems
Guenter like the *.layout files format has changed somewhat. (This is
Guenter also one of the reasons why I did not upgrade to 1.2.0 yet.)

The changes to layout file format are very small. The problem may be
elsewhere. 

JMarc



Re: New stable release of tex2pdf 3.1

2002-07-30 Thread Tariq Rashid

hi,

i guess this question is not that unique, but there appear to be too many
answers and not all of them perfect!

my situation is this:

* i want to maintain ONLY a .lyx file and the associated .eps figures

* want to autogenerate (using a Makefile?) a postscript file, a pdf file
and
html documentation from this lyx source.

* figures must appear in all the output formats
* links must also work in the html output, would be nice if they worked
in the pdf
output too (eg linked references, table of contents)
* equations and complicated structures should appear in all formats -
even if
they are represented by a bitmap (eg html)

I've tried various combinations and various options and none seem perfect.
i'm a little confused. there appears to be three pdf export options in lyx.
some options have the figures missing. some options produce one html file,
command line options produce a directory with images in it (this is good as
it works). there appear to be more than one path from lyx to a target:
lyx-texpdf or lyx-tex-dvi-pdf...

as someone new to lyx (but not to computing in general), i must say i'm left
a little confused as to which options are the best for which scenarios.

i'd be grateful for any clarifying comments and recommendations.

which is the path from lyx to pdf which gives the best results? why doesn't
export to html work well from the lyx menu, but does from the command
line...

i'm sure others are also in a similar position where they want high quality
outputs from a single lyx (+ .eps) source.

i'm using lyx 1.2 on mandrake 8.2

thanks

tariq


intY has scanned this email for all known viruses (www.inty.com)





url in html

2002-07-30 Thread John Sheahan

Hi

I recently tried to use lyx to generate some uncomplex html
pages.  Ran into what appears to be a known but unfixed bug getting 
URL's to appear as links in my html.

It still seems to be there with cvs 1_2_x lyx and latest latex2html.

this appears to have been discussed but I have not seen posted a 
useable solution yet.Here is a workaround, improvements welcome.


Problem appears to be lyx outputs a  \IfFileExists command which 
latex2html does not understand. The edit is trivial but not automated.

A workaround is a tiny perl script as inlined later called noexist.
make it executeable, put it somewhere in your search path
then within lyx edit your 
preferences = conversion = converters =  LaTeX-HTML
  add to the start of the converter command 
  noexist $$i ; 
   prior to the latex2html, right at the start of the line. 
  modify/apply/save that.
then html export works for me with URL's.
john

# Script noexist 
#!/usr/bin/perl
# touchup TeX prior to latex2html
# replace  
#\IfFileExists{url.sty}{\usepackage{url}}
#  {\newcommand{\url}{\texttt}}
# with 
#\usepackage{url}
# [EMAIL PROTECTED]   Tue Jul 30 20:12:39 EST 2002
# edit the file inplace so I don't need to play latex2html path tricks.

$file=shift(@ARGV);
rename($file, $file.orig);
open IN, $file.orig || die could not open $file;
open OUT, $file || die cannot open $file for output;
while (IN)  {
   if (/^\\IfFileExists{url.sty}{\\usepackage{url}}/) {
IN ; # gulp the next line too
$_=\\usepackage{url}\n;
   }
print OUT $_;
}
unlink($file.orig);
close IN;
close OUT;

###


 
 



page number placement

2002-07-30 Thread Praedor Tempus

Hello,

I need to alter the default page number placement in a document from bottom 
center to top right.  Could someone help me with how to do this?

praedor



Lyx-1.2 problem/glitch

2002-07-30 Thread Praedor Tempus

I built and installed Lyx-1.2 (linux) on my Mandrake 8.2 system.  All is fine 
except for one thing, in the math panel, there are 4 buttons that are 
blank/don't display any symbol/icon to indicate what it contains.  The 
affected buttons include top row second button, top row third button, second 
row first button, third row second and third buttons. The others are OK.  If 
I select any of the blank buttons, the symbols contained display OK so it is 
only affecting the math panel buttons themselves.

How might I go about fixing this?  

praedor



Re: page number placement

2002-07-30 Thread Herbert Voss

Praedor Tempus wrote:

 Hello,
 
 I need to alter the default page number placement in a document from bottom 
 center to top right.  Could someone help me with how to do this?


layout-document-pagestyle-fancy
and in preamble

\lhead{}
\chead{}
\rhead{\thepage}
\lfoot{}
\cfoot{}
\rfoot{}

for more see http://www.lyx.org/help/fancy/header.php

Herbert


-- 
http://www.lyx.org/help/




Re: Lyx-1.2 problem/glitch

2002-07-30 Thread Herbert Voss

Praedor Tempus wrote:

 I built and installed Lyx-1.2 (linux) on my Mandrake 8.2 system.  All is fine 
 except for one thing, in the math panel, there are 4 buttons that are 
 blank/don't display any symbol/icon to indicate what it contains.  The 
 affected buttons include top row second button, top row third button, second 
 row first button, third row second and third buttons. The others are OK.  If 
 I select any of the blank buttons, the symbols contained display OK so it is 
 only affecting the math panel buttons themselves.
 
 How might I go about fixing this?  


try
http://marc.theaimsgroup.com/?l=lyx-usersm=102747712143421w=2

Herbert



-- 
http://www.lyx.org/help/




1.2.0 load problem

2002-07-30 Thread Rich Shepard

  Yesterday I posted a message about a problem invoking 1.2.0 on my RH 6.2
system. Unfortunately, I also had a mail problem for a short time and I see
that a reply was not allowed through.

  Is there an archive where I can find this? Or, could the responder please
send it again to me?

Thanks,

Rich

Dr. Richard B. Shepard, President

   Applied Ecosystem Services, Inc. (TM)
2404 SW 22nd Street | Troutdale, OR 97060-1247 | U.S.A.
 + 1 503-667-4517 (voice) | + 1 503-667-8863 (fax) | [EMAIL PROTECTED]
 http://www.appl-ecosys.com




Question on Koma-script environment

2002-07-30 Thread Roberto Hernandez

Hi all,

I'm using the scrbook class. One of the features I like about it is the 
possibility to use \addchap and such to include unnumbered chapters in 
the ToC. What I haven't been able to find is an environment that does 
the same for parts. Does it exist?

I had solved the problem by using the following:

\addcontentsline{part}{Appendices}
\part*{Appendices}


The problem with this is that when I run tex2pdf on the file, the 
Appendices part isn't included in the PDF bookmarks. Therefore my 
bookmarks look like this:

Final remarks
Conclusions
...
Appendix A
Appendix B
...

Instead of the following (what I'd like):

Final remarks
Conclusions
...
Appendices
Appendix A
Appendix B
...

Any ideas?

TIA,
Roberto






seminar

2002-07-30 Thread Remzi Seker

Hi
I am having problems with the seminar style. It simply doesn't run. Can
anyone send me a working example file so I can try and troubleshoot?

Thanks

Remzi





Re: Question on Koma-script environment

2002-07-30 Thread Herbert Voss

Roberto Hernandez wrote:

 Hi all,
 
 I'm using the scrbook class. One of the features I like about it is the 
 possibility to use \addchap and such to include unnumbered chapters in 
 the ToC. What I haven't been able to find is an environment that does 
 the same for parts. Does it exist?
 
 I had solved the problem by using the following:
 
 \addcontentsline{part}{Appendices}


a typo?? should be

\clearpage\addcontentsline{toc}{part}{Appendices}

 \part*{Appendices}



Herbert


-- 
http://www.lyx.org/help/




Re: 1.2.0 load problem

2002-07-30 Thread Herbert Voss

Rich Shepard wrote:

   Yesterday I posted a message about a problem invoking 1.2.0 on my RH 6.2
 system. Unfortunately, I also had a mail problem for a short time and I see
 that a reply was not allowed through.
 
   Is there an archive where I can find this? Or, could the responder please
 send it again to me?


http://marc.theaimsgroup.com/?l=lyx-usersr=1b=200207w=2

write to [EMAIL PROTECTED] when no one answers


Herbert

-- 
http://www.lyx.org/help/




Re: seminar

2002-07-30 Thread Herbert Voss

Remzi Seker wrote:

 Hi
 I am having problems with the seminar style. It simply doesn't run. Can
 anyone send me a working example file so I can try and troubleshoot?
 


http://www.lyx.org/help/seminar/seminar.php

Herbert




Re: Question on Koma-script environment

2002-07-30 Thread Juergen Spitzmueller

Roberto Hernandez wrote:
 Hi all,

 I'm using the scrbook class. One of the features I like about it is the
 possibility to use \addchap and such to include unnumbered chapters in
 the ToC. What I haven't been able to find is an environment that does
 the same for parts. Does it exist?

Yes, it exists (at least in the most recent version): \addpart
Unfortunately, the LyX templates for KOMA are *way* behind the possibilities 
of the KOMA-classes, especially regarding the recent two releases (cf. the 
232 [sic!] pages of the new scrguide).
I guess a volunteer is needed ;-)

Regards,
Juergen



Re: page number placement

2002-07-30 Thread Praedor Tempus

On Tuesday 30 July 2002 08:52, Herbert Voss wrote:
 Praedor Tempus wrote:
  I need to alter the default page number placement in a document from
  bottom center to top right.  Could someone help me with how to do this?

 layout-document-pagestyle-fancy
 and in preamble

 \lhead{}
 \chead{}
 \rhead{\thepage}
 \lfoot{}
 \cfoot{}
 \rfoot{}

 for more see http://www.lyx.org/help/fancy/header.php

Thank you.  I have added to the preamble and am reading the pdf for fancy.  I 
do not want any decorative lines in the header, however.  The above commands 
added to my preamble placed the page number where I needed it (top right) but 
it also added a header line.  Reading the fancy pdf, it indicates that the 
command \headerulewidth 0.4pt would set a nice line of .4 pt width across 
the header.  Looking at the preamble in Lyx, I see no \headrulewidth entry at 
all - so I added it by modeling the example for \footrulewidth 0 pt on the 
same page:  \headrulewidth 0 pt.  What this gives me when I seek to preview 
a ps image of the paper is an error message box in my lyx document.

Where is the cryptic \headrulewidth command being called and used?  The 
command syntax in the pdf is incorrect since it produces an error when 
processing the lyx document?  

Thank you,

praedor



Re: page number placement

2002-07-30 Thread Herbert Voss

Praedor Tempus wrote:

 On Tuesday 30 July 2002 08:52, Herbert Voss wrote:
 
Praedor Tempus wrote:

I need to alter the default page number placement in a document from
bottom center to top right.  Could someone help me with how to do this?

layout-document-pagestyle-fancy
and in preamble

\lhead{}
\chead{}
\rhead{\thepage}
\lfoot{}
\cfoot{}
\rfoot{}

for more see http://www.lyx.org/help/fancy/header.php

 
 Thank you.  I have added to the preamble and am reading the pdf for fancy.  I 
 do not want any decorative lines in the header, however.  The above commands 
 added to my preamble placed the page number where I needed it (top right) but 
 it also added a header line.  Reading the fancy pdf, it indicates that the 
 command \headerulewidth 0.4pt would set a nice line of .4 pt width across 
 the header.  Looking at the preamble in Lyx, I see no \headrulewidth entry at 
 all - so I added it by modeling the example for \footrulewidth 0 pt on the 
 same page:  \headrulewidth 0 pt.  What this gives me when I seek to preview 


\renwecommand{\headrulewidth}{0.4pt}
\renwecommand{\footrulewidth}{0pt}

 a ps image of the paper is an error message box in my lyx document.
 
 Where is the cryptic \headrulewidth command being called and used?  The 


it's part of the fancyhdr package.

Herbert


-- 
http://www.lyx.org/help/




Re: seminar

2002-07-30 Thread Guenter Milde

On Tue, 30 Jul 2002 16:22:47 +0200 wrote Herbert Voss 
[EMAIL PROTECTED]:

 Remzi Seker wrote:
 
  Hi
  I am having problems with the seminar style. It simply doesn't run. Can
  anyone send me a working example file so I can try and troubleshoot?
  
 
 
 http://www.lyx.org/help/seminar/seminar.php

Do you mean the seminar.cls LaTeX class or the seminar.layout Lyx support?
Could you try some example *.tex file that comes with seminar, to see if the
problem is with lyx or with latex?

The seminar.layout file from the contributed stuff section 
   
   ftp://ftp.lyx.org/pub/lyx/contrib/seminar.tar.gz

comes with a LyX template file. However, it is for use with LyX 1.1.6 and not
adapted to 1.2.0 yet.

Günter

--
G.Milde at physik.tu-dresden.de




Re: seminar.layout doesn't work as expected

2002-07-30 Thread German Poo Caaman~o

El lun, 29-07-2002 a las 08:42, Guenter Milde escribió:
 On 17 Jul 2002 11:33:15 -0400 wrote German Poo Caaman~o [EMAIL PROTECTED]:
  Since lyx-1.1.6-fix (AFAIR) I've been having some problems
  with seminar.layout. I defined frames on my slides, but
  now one slide appears with frame and empty, the second
  one appears with text (without frame), etc.
 
 Thanks for the report, makes me aware of problems to come... From the
 attached file I guess, that the problem arises in LyX 1.2.0 I have written
 seminar.layout for 1.1.6. It seems like the *.layout files format has
 changed somewhat. (This is also one of the reasons why I did not upgrade to
 1.2.0 yet.)

I tried with 1.1.6fix4 with the same results (from a Debian package).

-- 
German Poo Caaman~o
mailto:[EMAIL PROTECTED]
http://www.ubiobio.cl/~gpoo/chilelindo.html
«Hay 10 tipos de personas: las que entienden binario y las que no.»




Figure caption problem in lyx 1.2

2002-07-30 Thread Leondios Kratzwald

Upgrading from lyx 1.1.6 to 1.2 had severe impact on the layout of my thesis. 
In Version 1.1.6 I used minipages to put the figure captions beside the 
figure. It was simple and worked nice !
 I have noticed that the paragraph layout popup menu has changed in Version 
1.2 in sofar that minipages cannot be chosen by pressing the extra buttion 
(as it was in Version1.1.6) in the paragraph layout menu.
In 1.2. I have tried to use the sidefig.sty for positioning the captions, 
but I do not like it very much and I have not found a way to insert 
cross-reference marks.
Does anybody have an easy solution for this problem ?
(I do not want to reweite the whole thing!)

Thanks in advance,

Leondios



Re: seminar

2002-07-30 Thread Rem

I tried to use the seminar layout under  LyX 1.2.
Also, the file http://www.lyx.org/help/seminar/seminar.lyx
doesn't exist on the server...

- Original Message -
From: Guenter Milde [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 9:03 AM
Subject: Re: seminar


 On Tue, 30 Jul 2002 16:22:47 +0200 wrote Herbert Voss
[EMAIL PROTECTED]:

  Remzi Seker wrote:
 
   Hi
   I am having problems with the seminar style. It simply doesn't run.
Can
   anyone send me a working example file so I can try and troubleshoot?
  
 
 
  http://www.lyx.org/help/seminar/seminar.php

 Do you mean the seminar.cls LaTeX class or the seminar.layout Lyx support?
 Could you try some example *.tex file that comes with seminar, to see if
the
 problem is with lyx or with latex?

 The seminar.layout file from the contributed stuff section

ftp://ftp.lyx.org/pub/lyx/contrib/seminar.tar.gz

 comes with a LyX template file. However, it is for use with LyX 1.1.6 and
not
 adapted to 1.2.0 yet.

 Günter

 --
 G.Milde at physik.tu-dresden.de





Re: seminar

2002-07-30 Thread Herbert Voss

Guenter Milde wrote:

 comes with a LyX template file. However, it is for use with LyX 1.1.6 and not
 adapted to 1.2.0 yet.


I have no problems with this layout file. Can someone please
mail me a copy of a not-running lyxfile, which doesn't work
with the seminar layout file.

lyx 1.2.0 and 1.3.0

Herbert



-- 
http://www.lyx.org/help/




lyx and the various routes to ps, pdf and html (and not all perfect!)

2002-07-30 Thread Tariq Rashid


apologies - this was initially sent with the incorrect Subject, so may not
have been brought to the attention of those interested




hi,

i guess this question is not that unique, but there appear to be too many
answers and not all of them perfect!

my situation is this:

* i want to maintain ONLY a .lyx file and the associated .eps figures

* want to autogenerate (using a Makefile?) a postscript file, a pdf file
and
html documentation from this lyx source.

* figures must appear in all the output formats
* links must also work in the html output, would be nice if they worked
in the pdf
output too (eg linked references, table of contents)
* equations and complicated structures should appear in all formats -
even if
they are represented by a bitmap (eg html)

I've tried various combinations and various options and none seem perfect.
i'm a little confused. there appears to be three pdf export options in lyx.
some options have the figures missing. some options produce one html file,
command line options produce a directory with images in it (this is good as
it works). there appear to be more than one path from lyx to a target:
lyx-texpdf or lyx-tex-dvi-pdf...

as someone new to lyx (but not to computing in general), i must say i'm left
a little confused as to which options are the best for which scenarios.

i'd be grateful for any clarifying comments and recommendations.

which is the path from lyx to pdf which gives the best results? why doesn't
export to html work well from the lyx menu, but does from the command
line...

i'm sure others are also in a similar position where they want high quality
outputs from a single lyx (+ .eps) source.

i'm using lyx 1.2 on mandrake 8.2

thanks

tariq



intY has scanned this email for all known viruses (www.inty.com)





Re: seminar

2002-07-30 Thread Herbert Voss

Rem wrote:

 I tried to use the seminar layout under  LyX 1.2.
 Also, the file http://www.lyx.org/help/seminar/seminar.lyx
 doesn't exist on the server...


forgot to add it to the website 

it's in 20 minutes online and here attached, works also
for me.


Herbert



-- 
http://www.lyx.org/help/


#LyX 1.2 created this file. For more info see http://www.lyx.org/
\lyxformat 220
\textclass seminar
\begin_preamble
\usepackage[usenames]{pstcol}
\usepackage{pst-grad}
\usepackage{graphicx}
\usepackage{pifont}
\usepackage{semcolor}

% Basic Color Defs used within this file
\definecolor{lightblue}{rgb}{0.3296, 0.6648, 0.8644}% Sky Blue
\definecolor{shadowcolor}{rgb}{0., 0., 0.6179}  % Midnight Blue
\definecolor{bulletcolor}{rgb}{ 0.8441, 0.1582, 0.} % Orange-Red
\definecolor{bordercolor}{rgb}{0,0,.2380}   % Midnight Blue

\psset{shadowcolor=shadowcolor} % Set all shadowdrops to same color

% Change itemize environment to use funky color bullets
\renewcommand{\labelitemi}{\textcolor{bulletcolor}{\ding{118}}}
\renewcommand{\labelitemii}{\textcolor{bulletcolor}{\ding{224}}}
\renewcommand{\labelitemiii}{\textcolor{bulletcolor}{\ding{51}}}

% Define some nifty shaded backgrounds
% Nice shaded blue background:
\newslideframe{gradframe}
   
[\psset{framesep=12pt,linecolor=bordercolor,fillstyle=gradient,gradend=white,gradbegin=lightblue,framearc=0.1,gradmidpoint=0.8,linewidth=0.5pt}]{\psframebox{#1}}

% Use our newly-defined gradient style
\slideframe{gradframe}



%-%
% Do not edit this line, it's inserted by LyX ... %
\usepackage{babel}
% insert additional commands before this one. In some %
% cases it's useful to place commands behind babel,   %
% like the language specific one as   %
% \AtBeginDocument{\renewcommand\refname{blah}}   %
%-%

\renewcommand{\printlandscape}{\sliderotation{right}\special{landscape}}
\end_preamble
\language german
\inputencoding latin1
\fontscheme default
\graphics default
\paperfontsize 12
\spacing single 
\papersize Default
\paperpackage a4
\use_geometry 0
\use_amsmath 1
\use_natbib 0
\use_numerical_citations 0
\paperorientation portrait
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\defskip medskip
\quotes_language german
\quotes_times 2
\papercolumns 1
\papersides 1
\paperpagestyle default

\layout Standard


\begin_inset ERT
status Collapsed

\layout Standard

\backslash 
begin{slide}
\end_inset 


\layout Itemize

One item
\layout Itemize

Another item 
\layout Standard


\begin_inset ERT
status Collapsed

\layout Standard

\backslash 
end{slide} 
\backslash 
begin{slide}
\end_inset 


\layout Standard

When you use pdftricks-command you cannot use 
\family typewriter 
export\SpecialChar \menuseparator
pdftex
\family default 
.
 In this case do a 
\family typewriter 
export\SpecialChar \menuseparator
latex
\family default 
 and run from outside LyX:
\layout LyX-Code

latex file.tex 
\layout LyX-Code

dvips -Pcmz -o file.ps file.dvi 
\layout LyX-Code

distill file.ps
\layout Standard


\begin_inset ERT
status Collapsed

\layout Standard

\backslash 
end{slide}
\end_inset 


\the_end



seminar.pdf
Description: Binary data


Re: lyx and the various routes to ps, pdf and html (and not all perfect!)

2002-07-30 Thread Herbert Voss

Tariq Rashid wrote:

 * i want to maintain ONLY a .lyx file and the associated .eps figures
 
 * want to autogenerate (using a Makefile?) a postscript file, a pdf file
 and
 html documentation from this lyx source.


then write a script which runs lyx in batchmode (look at the docs)
and exports
1. to tex
2. to ps
3. to pdf

then run latex2html or any other converter on the tex-file


 * figures must appear in all the output formats


sure

 * links must also work in the html output, would be nice if they worked
 in the pdf


need some tricks, because it's not implemented yet

http://www.lyx.org/help/html/url.php3

 output too (eg linked references, table of contents)
 * equations and complicated structures should appear in all formats -
 even if
 they are represented by a bitmap (eg html)


depends to your tex-html converter how they look in html

 I've tried various combinations and various options and none seem perfect.
 i'm a little confused. there appears to be three pdf export options in lyx.


ps2pdf - works almost, but - http://www.lyx.org/help/pdf/pdf.php3#fonts
pdflatex - works not with pacjages which write postscript
code, like psfrag
dvipdf - same as before


Herbert


-- 
http://www.lyx.org/help/




Re: Figure caption problem in lyx 1.2

2002-07-30 Thread Herbert Voss

Leondios Kratzwald wrote:

 Upgrading from lyx 1.1.6 to 1.2 had severe impact on the layout of my thesis. 
 In Version 1.1.6 I used minipages to put the figure captions beside the 
 figure. It was simple and worked nice !
  I have noticed that the paragraph layout popup menu has changed in Version 
 1.2 in sofar that minipages cannot be chosen by pressing the extra buttion 
 (as it was in Version1.1.6) in the paragraph layout menu.
 In 1.2. I have tried to use the sidefig.sty for positioning the captions, 
 but I do not like it very much and I have not found a way to insert 
 cross-reference marks.
 Does anybody have an easy solution for this problem ?
 (I do not want to reweite the whole thing!)


should also work in 1.2.0

give a short lyx-examplefile.

look also http://www.lyx.org/help//floats/CapBesideFig.php


Herbert

-- 
http://www.lyx.org/help/




how to tell LyX that I'm using LARGE as default font?

2002-07-30 Thread Angus Leeming

I have just written a poster (with LyX 1.2.1cvs) that has the following 
code in the Preamble.

%% The poster uses larger than normal text
\renewcommand{\small}{\large}
\renewcommand{\normalsize}{\LARGE}
\renewcommand{\familydefault}{cmss}

Needless to say, I end up with LARGE previews when I come to view this in 
LyX 1.3cvs. (For those of you who don't use 1.3cvs, then you have a treat 
awaiting you ;-)

My question, however, is a LaTeX one. Is there a better way than my ugly 
hack to use LARGE as the default font size and to let LyX know about it? 
Ditto with familydefault?

Regards,
Angus






Re: New stable release of tex2pdf 3.1

2002-07-30 Thread Fernando Perez

On Tue, 30 Jul 2002, Tariq Rashid wrote:

 hi,
 
 i guess this question is not that unique, but there appear to be too many
 answers and not all of them perfect!
 
 my situation is this:
 
 * i want to maintain ONLY a .lyx file and the associated .eps figures
 
 * want to autogenerate (using a Makefile?) a postscript file, a pdf file
 and
 html documentation from this lyx source.
 
 * figures must appear in all the output formats
 * links must also work in the html output, would be nice if they worked
 in the pdf
 output too (eg linked references, table of contents)
 * equations and complicated structures should appear in all formats -
 even if
 they are represented by a bitmap (eg html)

This is exactly what I wrote lyxport for. Check it out at
http://www-hep.colorado.edu/~fperez/lyxport. Note however that tex2pdf is
_much_ more sophisticated than lyxport in its handling of complex documents.
Ideally the remainder functionality of lyxport which is not in tex2pdf could
be merged in, but unfortunately I'm not maintaining actively lyxport anymore.

But it works for me in most cases just fine, so give it a go. It might be good 
enough for the documents you deal with.

Cheers,

f.




Lyx: SIGSEGV signal caught

2002-07-30 Thread Carlos Arroyo Junior

When I run lyx I get the following  error:
lyx: SIGSEGV signal caught
Sorry, you have found a bug in LyX. Please read the bug-reporting instructions 
in Help-Introduction and send us a bug report, if necessary. Thanks !
Bye.
Aborted


I am using lyx 1.2 from http://www.alpha-centauri.fr/opensource/  and 
Slackware 8.1

user@Michaella:~$ ldd /usr/bin/lyx
libforms.so.0.89 = /usr/X11R6/lib/libforms.so.0.89 (0x40027000)
libXpm.so.4 = /usr/X11R6/lib/libXpm.so.4 (0x4010c000)
libpspell.so.4 = /usr/local/lib/libpspell.so.4 (0x4011a000)
libltdl.so.3 = /usr/lib/libltdl.so.3 (0x40137000)
libdl.so.2 = /lib/libdl.so.2 (0x4013d000)
libpspell-modules.so.1 = /usr/local/lib/libpspell-modules.so.1 
(0x4014)
libstdc++-libc6.2-2.so.3 = /usr/lib/libstdc++-libc6.2-2.so.3 
(0x40142000)
libAiksaurus.so.0 = /usr/lib/libAiksaurus.so.0 (0x4018c000)
libbz2.so.1.0 = /lib/libbz2.so.1.0 (0x401a3000)
libSM.so.6 = /usr/X11R6/lib/libSM.so.6 (0x401b4000)
libICE.so.6 = /usr/X11R6/lib/libICE.so.6 (0x401bc000)
libX11.so.6 = /usr/X11R6/lib/libX11.so.6 (0x401d2000)
libm.so.6 = /lib/libm.so.6 (0x4028b000)
libc.so.6 = /lib/libc.so.6 (0x402ac000)
/lib/ld-linux.so.2 = /lib/ld-linux.so.2 (0x4000)




Greek

2002-07-30 Thread John O'Gorman

Help

I am trying to produce a document in Greek.

I expected that it would simply work if I selected greek
as the language in the Layout - Document - Language.
Then typed as usual.

But the View-DVI produces the error:
Undefined control sequence:
\initiate@activechar{^^9f}

If I export the document to LaTeX, and then
run the latex command from the keybard it 
produces a .dvi file which displays exactly what
I would expect.

What am I doing wrong in LyX?

John O'Gorman



Re: how to tell LyX that I'm using LARGE as default font?

2002-07-30 Thread Herbert Voss

Angus Leeming wrote:

 I have just written a poster (with LyX 1.2.1cvs) that has the following 
 code in the Preamble.
 
 %% The poster uses larger than normal text
 \renewcommand{\small}{\large}
 \renewcommand{\normalsize}{\LARGE}
 \renewcommand{\familydefault}{cmss}
 
 Needless to say, I end up with LARGE previews when I come to view this in 
 LyX 1.3cvs. (For those of you who don't use 1.3cvs, then you have a treat 
 awaiting you ;-)
 
 My question, however, is a LaTeX one. Is there a better way than my ugly 
 hack to use LARGE as the default font size and to let LyX know about it? 
 Ditto with familydefault?


layout-document-class-ext(article/book/letter/report)

Herbert


-- 
http://www.lyx.org/help/




Re: Re: Word -- TeX

2002-07-30 Thread Guenter Milde

On Mon, 29 Jul 2002 14:44:24 -0400 wrote Paul Tremblay [EMAIL PROTECTED]:

  I think that Abiword uses wv for importing, so it is probably better
  to use wv directly for conversion from word to lyx

 ... Unfortunately, it can't convert RTF to LaTeX.

Do you know about gnu unrtf?

   UnRTF is a moderately complicated converter from RTF to other
   formats, including HTML, LaTeX, text, and PostScript. Converting
   to HTML, it supports tables, fonts, colors, embedded images,
   hyperlinks, paragraph alignment among other things. All other
   conversions are alpha--just begun.

   WEBSITE   
http://www.geocities.com/tuorfa   

I have downloaded version 0.18.1., it is written in C, compiles fast and
works pretty well. (for rtf - html at least). 

May be you can convince the author to include XML as output format...

Guenter

--
G.Milde at physik.tu-dresden.de




Re: seminar.layout doesn't work as expected

2002-07-30 Thread Jean-Marc Lasgouttes

 Guenter == Guenter Milde [EMAIL PROTECTED] writes:

Guenter On 17 Jul 2002 11:33:15 -0400 wrote German Poo Caaman~o
Guenter [EMAIL PROTECTED]:
  Since lyx-1.1.6-fix (AFAIR) I've been having some problems with
 seminar.layout. I defined frames on my slides, but now one slide
 appears with frame and empty, the second one appears with text
 (without frame), etc.

Guenter Thanks for the report, makes me aware of problems to come...
Guenter From the attached file I guess, that the problem arises in
Guenter LyX 1.2.0 I have written seminar.layout for 1.1.6. It seems
Guenter like the *.layout files format has changed somewhat. (This is
Guenter also one of the reasons why I did not upgrade to 1.2.0 yet.)

The changes to layout file format are very small. The problem may be
elsewhere. 

JMarc



Re: New stable release of tex2pdf 3.1

2002-07-30 Thread Tariq Rashid

hi,

i guess this question is not that unique, but there appear to be too many
answers and not all of them perfect!

my situation is this:

* i want to maintain ONLY a .lyx file and the associated .eps figures

* want to autogenerate (using a Makefile?) a postscript file, a pdf file
and
html documentation from this lyx source.

* figures must appear in all the output formats
* links must also work in the html output, would be nice if they worked
in the pdf
output too (eg linked references, table of contents)
* equations and complicated structures should appear in all formats -
even if
they are represented by a bitmap (eg html)

I've tried various combinations and various options and none seem perfect.
i'm a little confused. there appears to be three pdf export options in lyx.
some options have the figures missing. some options produce one html file,
command line options produce a directory with images in it (this is good as
it works). there appear to be more than one path from lyx to a target:
lyx-texpdf or lyx-tex-dvi-pdf...

as someone new to lyx (but not to computing in general), i must say i'm left
a little confused as to which options are the best for which scenarios.

i'd be grateful for any clarifying comments and recommendations.

which is the path from lyx to pdf which gives the best results? why doesn't
export to html work well from the lyx menu, but does from the command
line...

i'm sure others are also in a similar position where they want high quality
outputs from a single lyx (+ .eps) source.

i'm using lyx 1.2 on mandrake 8.2

thanks

tariq


intY has scanned this email for all known viruses (www.inty.com)





url in html

2002-07-30 Thread John Sheahan

Hi

I recently tried to use lyx to generate some uncomplex html
pages.  Ran into what appears to be a known but unfixed bug getting 
URL's to appear as links in my html.

It still seems to be there with cvs 1_2_x lyx and latest latex2html.

this appears to have been discussed but I have not seen posted a 
useable solution yet.Here is a workaround, improvements welcome.


Problem appears to be lyx outputs a  \IfFileExists command which 
latex2html does not understand. The edit is trivial but not automated.

A workaround is a tiny perl script as inlined later called noexist.
make it executeable, put it somewhere in your search path
then within lyx edit your 
preferences = conversion = converters =  LaTeX-HTML
  add to the start of the converter command 
  noexist $$i ; 
   prior to the latex2html, right at the start of the line. 
  modify/apply/save that.
then html export works for me with URL's.
john

# Script noexist 
#!/usr/bin/perl
# touchup TeX prior to latex2html
# replace  
#\IfFileExists{url.sty}{\usepackage{url}}
#  {\newcommand{\url}{\texttt}}
# with 
#\usepackage{url}
# [EMAIL PROTECTED]   Tue Jul 30 20:12:39 EST 2002
# edit the file inplace so I don't need to play latex2html path tricks.

$file=shift(@ARGV);
rename($file, $file.orig);
open IN, $file.orig || die could not open $file;
open OUT, $file || die cannot open $file for output;
while (IN)  {
   if (/^\\IfFileExists{url.sty}{\\usepackage{url}}/) {
IN ; # gulp the next line too
$_=\\usepackage{url}\n;
   }
print OUT $_;
}
unlink($file.orig);
close IN;
close OUT;

###


 
 



page number placement

2002-07-30 Thread Praedor Tempus

Hello,

I need to alter the default page number placement in a document from bottom 
center to top right.  Could someone help me with how to do this?

praedor



Lyx-1.2 problem/glitch

2002-07-30 Thread Praedor Tempus

I built and installed Lyx-1.2 (linux) on my Mandrake 8.2 system.  All is fine 
except for one thing, in the math panel, there are 4 buttons that are 
blank/don't display any symbol/icon to indicate what it contains.  The 
affected buttons include top row second button, top row third button, second 
row first button, third row second and third buttons. The others are OK.  If 
I select any of the blank buttons, the symbols contained display OK so it is 
only affecting the math panel buttons themselves.

How might I go about fixing this?  

praedor



Re: page number placement

2002-07-30 Thread Herbert Voss

Praedor Tempus wrote:

 Hello,
 
 I need to alter the default page number placement in a document from bottom 
 center to top right.  Could someone help me with how to do this?


layout-document-pagestyle-fancy
and in preamble

\lhead{}
\chead{}
\rhead{\thepage}
\lfoot{}
\cfoot{}
\rfoot{}

for more see http://www.lyx.org/help/fancy/header.php

Herbert


-- 
http://www.lyx.org/help/




Re: Lyx-1.2 problem/glitch

2002-07-30 Thread Herbert Voss

Praedor Tempus wrote:

 I built and installed Lyx-1.2 (linux) on my Mandrake 8.2 system.  All is fine 
 except for one thing, in the math panel, there are 4 buttons that are 
 blank/don't display any symbol/icon to indicate what it contains.  The 
 affected buttons include top row second button, top row third button, second 
 row first button, third row second and third buttons. The others are OK.  If 
 I select any of the blank buttons, the symbols contained display OK so it is 
 only affecting the math panel buttons themselves.
 
 How might I go about fixing this?  


try
http://marc.theaimsgroup.com/?l=lyx-usersm=102747712143421w=2

Herbert



-- 
http://www.lyx.org/help/




1.2.0 load problem

2002-07-30 Thread Rich Shepard

  Yesterday I posted a message about a problem invoking 1.2.0 on my RH 6.2
system. Unfortunately, I also had a mail problem for a short time and I see
that a reply was not allowed through.

  Is there an archive where I can find this? Or, could the responder please
send it again to me?

Thanks,

Rich

Dr. Richard B. Shepard, President

   Applied Ecosystem Services, Inc. (TM)
2404 SW 22nd Street | Troutdale, OR 97060-1247 | U.S.A.
 + 1 503-667-4517 (voice) | + 1 503-667-8863 (fax) | [EMAIL PROTECTED]
 http://www.appl-ecosys.com




Question on Koma-script environment

2002-07-30 Thread Roberto Hernandez

Hi all,

I'm using the scrbook class. One of the features I like about it is the 
possibility to use \addchap and such to include unnumbered chapters in 
the ToC. What I haven't been able to find is an environment that does 
the same for parts. Does it exist?

I had solved the problem by using the following:

\addcontentsline{part}{Appendices}
\part*{Appendices}


The problem with this is that when I run tex2pdf on the file, the 
Appendices part isn't included in the PDF bookmarks. Therefore my 
bookmarks look like this:

Final remarks
Conclusions
...
Appendix A
Appendix B
...

Instead of the following (what I'd like):

Final remarks
Conclusions
...
Appendices
Appendix A
Appendix B
...

Any ideas?

TIA,
Roberto






seminar

2002-07-30 Thread Remzi Seker

Hi
I am having problems with the seminar style. It simply doesn't run. Can
anyone send me a working example file so I can try and troubleshoot?

Thanks

Remzi





Re: Question on Koma-script environment

2002-07-30 Thread Herbert Voss

Roberto Hernandez wrote:

 Hi all,
 
 I'm using the scrbook class. One of the features I like about it is the 
 possibility to use \addchap and such to include unnumbered chapters in 
 the ToC. What I haven't been able to find is an environment that does 
 the same for parts. Does it exist?
 
 I had solved the problem by using the following:
 
 \addcontentsline{part}{Appendices}


a typo?? should be

\clearpage\addcontentsline{toc}{part}{Appendices}

 \part*{Appendices}



Herbert


-- 
http://www.lyx.org/help/




Re: 1.2.0 load problem

2002-07-30 Thread Herbert Voss

Rich Shepard wrote:

   Yesterday I posted a message about a problem invoking 1.2.0 on my RH 6.2
 system. Unfortunately, I also had a mail problem for a short time and I see
 that a reply was not allowed through.
 
   Is there an archive where I can find this? Or, could the responder please
 send it again to me?


http://marc.theaimsgroup.com/?l=lyx-usersr=1b=200207w=2

write to [EMAIL PROTECTED] when no one answers


Herbert

-- 
http://www.lyx.org/help/




Re: seminar

2002-07-30 Thread Herbert Voss

Remzi Seker wrote:

 Hi
 I am having problems with the seminar style. It simply doesn't run. Can
 anyone send me a working example file so I can try and troubleshoot?
 


http://www.lyx.org/help/seminar/seminar.php

Herbert




Re: Question on Koma-script environment

2002-07-30 Thread Juergen Spitzmueller

Roberto Hernandez wrote:
 Hi all,

 I'm using the scrbook class. One of the features I like about it is the
 possibility to use \addchap and such to include unnumbered chapters in
 the ToC. What I haven't been able to find is an environment that does
 the same for parts. Does it exist?

Yes, it exists (at least in the most recent version): \addpart
Unfortunately, the LyX templates for KOMA are *way* behind the possibilities 
of the KOMA-classes, especially regarding the recent two releases (cf. the 
232 [sic!] pages of the new scrguide).
I guess a volunteer is needed ;-)

Regards,
Juergen



Re: page number placement

2002-07-30 Thread Praedor Tempus

On Tuesday 30 July 2002 08:52, Herbert Voss wrote:
 Praedor Tempus wrote:
  I need to alter the default page number placement in a document from
  bottom center to top right.  Could someone help me with how to do this?

 layout-document-pagestyle-fancy
 and in preamble

 \lhead{}
 \chead{}
 \rhead{\thepage}
 \lfoot{}
 \cfoot{}
 \rfoot{}

 for more see http://www.lyx.org/help/fancy/header.php

Thank you.  I have added to the preamble and am reading the pdf for fancy.  I 
do not want any decorative lines in the header, however.  The above commands 
added to my preamble placed the page number where I needed it (top right) but 
it also added a header line.  Reading the fancy pdf, it indicates that the 
command \headerulewidth 0.4pt would set a nice line of .4 pt width across 
the header.  Looking at the preamble in Lyx, I see no \headrulewidth entry at 
all - so I added it by modeling the example for \footrulewidth 0 pt on the 
same page:  \headrulewidth 0 pt.  What this gives me when I seek to preview 
a ps image of the paper is an error message box in my lyx document.

Where is the cryptic \headrulewidth command being called and used?  The 
command syntax in the pdf is incorrect since it produces an error when 
processing the lyx document?  

Thank you,

praedor



Re: page number placement

2002-07-30 Thread Herbert Voss

Praedor Tempus wrote:

 On Tuesday 30 July 2002 08:52, Herbert Voss wrote:
 
Praedor Tempus wrote:

I need to alter the default page number placement in a document from
bottom center to top right.  Could someone help me with how to do this?

layout-document-pagestyle-fancy
and in preamble

\lhead{}
\chead{}
\rhead{\thepage}
\lfoot{}
\cfoot{}
\rfoot{}

for more see http://www.lyx.org/help/fancy/header.php

 
 Thank you.  I have added to the preamble and am reading the pdf for fancy.  I 
 do not want any decorative lines in the header, however.  The above commands 
 added to my preamble placed the page number where I needed it (top right) but 
 it also added a header line.  Reading the fancy pdf, it indicates that the 
 command \headerulewidth 0.4pt would set a nice line of .4 pt width across 
 the header.  Looking at the preamble in Lyx, I see no \headrulewidth entry at 
 all - so I added it by modeling the example for \footrulewidth 0 pt on the 
 same page:  \headrulewidth 0 pt.  What this gives me when I seek to preview 


\renwecommand{\headrulewidth}{0.4pt}
\renwecommand{\footrulewidth}{0pt}

 a ps image of the paper is an error message box in my lyx document.
 
 Where is the cryptic \headrulewidth command being called and used?  The 


it's part of the fancyhdr package.

Herbert


-- 
http://www.lyx.org/help/




Re: seminar

2002-07-30 Thread Guenter Milde

On Tue, 30 Jul 2002 16:22:47 +0200 wrote Herbert Voss 
[EMAIL PROTECTED]:

 Remzi Seker wrote:
 
  Hi
  I am having problems with the seminar style. It simply doesn't run. Can
  anyone send me a working example file so I can try and troubleshoot?
  
 
 
 http://www.lyx.org/help/seminar/seminar.php

Do you mean the seminar.cls LaTeX class or the seminar.layout Lyx support?
Could you try some example *.tex file that comes with seminar, to see if the
problem is with lyx or with latex?

The seminar.layout file from the contributed stuff section 
   
   ftp://ftp.lyx.org/pub/lyx/contrib/seminar.tar.gz

comes with a LyX template file. However, it is for use with LyX 1.1.6 and not
adapted to 1.2.0 yet.

Günter

--
G.Milde at physik.tu-dresden.de




Re: seminar.layout doesn't work as expected

2002-07-30 Thread German Poo Caaman~o

El lun, 29-07-2002 a las 08:42, Guenter Milde escribió:
 On 17 Jul 2002 11:33:15 -0400 wrote German Poo Caaman~o [EMAIL PROTECTED]:
  Since lyx-1.1.6-fix (AFAIR) I've been having some problems
  with seminar.layout. I defined frames on my slides, but
  now one slide appears with frame and empty, the second
  one appears with text (without frame), etc.
 
 Thanks for the report, makes me aware of problems to come... From the
 attached file I guess, that the problem arises in LyX 1.2.0 I have written
 seminar.layout for 1.1.6. It seems like the *.layout files format has
 changed somewhat. (This is also one of the reasons why I did not upgrade to
 1.2.0 yet.)

I tried with 1.1.6fix4 with the same results (from a Debian package).

-- 
German Poo Caaman~o
mailto:[EMAIL PROTECTED]
http://www.ubiobio.cl/~gpoo/chilelindo.html
«Hay 10 tipos de personas: las que entienden binario y las que no.»




Figure caption problem in lyx 1.2

2002-07-30 Thread Leondios Kratzwald

Upgrading from lyx 1.1.6 to 1.2 had severe impact on the layout of my thesis. 
In Version 1.1.6 I used minipages to put the figure captions beside the 
figure. It was simple and worked nice !
 I have noticed that the paragraph layout popup menu has changed in Version 
1.2 in sofar that minipages cannot be chosen by pressing the extra buttion 
(as it was in Version1.1.6) in the paragraph layout menu.
In 1.2. I have tried to use the sidefig.sty for positioning the captions, 
but I do not like it very much and I have not found a way to insert 
cross-reference marks.
Does anybody have an easy solution for this problem ?
(I do not want to reweite the whole thing!)

Thanks in advance,

Leondios



Re: seminar

2002-07-30 Thread Rem

I tried to use the seminar layout under  LyX 1.2.
Also, the file http://www.lyx.org/help/seminar/seminar.lyx
doesn't exist on the server...

- Original Message -
From: Guenter Milde [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 9:03 AM
Subject: Re: seminar


 On Tue, 30 Jul 2002 16:22:47 +0200 wrote Herbert Voss
[EMAIL PROTECTED]:

  Remzi Seker wrote:
 
   Hi
   I am having problems with the seminar style. It simply doesn't run.
Can
   anyone send me a working example file so I can try and troubleshoot?
  
 
 
  http://www.lyx.org/help/seminar/seminar.php

 Do you mean the seminar.cls LaTeX class or the seminar.layout Lyx support?
 Could you try some example *.tex file that comes with seminar, to see if
the
 problem is with lyx or with latex?

 The seminar.layout file from the contributed stuff section

ftp://ftp.lyx.org/pub/lyx/contrib/seminar.tar.gz

 comes with a LyX template file. However, it is for use with LyX 1.1.6 and
not
 adapted to 1.2.0 yet.

 Günter

 --
 G.Milde at physik.tu-dresden.de





Re: seminar

2002-07-30 Thread Herbert Voss

Guenter Milde wrote:

 comes with a LyX template file. However, it is for use with LyX 1.1.6 and not
 adapted to 1.2.0 yet.


I have no problems with this layout file. Can someone please
mail me a copy of a not-running lyxfile, which doesn't work
with the seminar layout file.

lyx 1.2.0 and 1.3.0

Herbert



-- 
http://www.lyx.org/help/




lyx and the various routes to ps, pdf and html (and not all perfect!)

2002-07-30 Thread Tariq Rashid


apologies - this was initially sent with the incorrect Subject, so may not
have been brought to the attention of those interested




hi,

i guess this question is not that unique, but there appear to be too many
answers and not all of them perfect!

my situation is this:

* i want to maintain ONLY a .lyx file and the associated .eps figures

* want to autogenerate (using a Makefile?) a postscript file, a pdf file
and
html documentation from this lyx source.

* figures must appear in all the output formats
* links must also work in the html output, would be nice if they worked
in the pdf
output too (eg linked references, table of contents)
* equations and complicated structures should appear in all formats -
even if
they are represented by a bitmap (eg html)

I've tried various combinations and various options and none seem perfect.
i'm a little confused. there appears to be three pdf export options in lyx.
some options have the figures missing. some options produce one html file,
command line options produce a directory with images in it (this is good as
it works). there appear to be more than one path from lyx to a target:
lyx-texpdf or lyx-tex-dvi-pdf...

as someone new to lyx (but not to computing in general), i must say i'm left
a little confused as to which options are the best for which scenarios.

i'd be grateful for any clarifying comments and recommendations.

which is the path from lyx to pdf which gives the best results? why doesn't
export to html work well from the lyx menu, but does from the command
line...

i'm sure others are also in a similar position where they want high quality
outputs from a single lyx (+ .eps) source.

i'm using lyx 1.2 on mandrake 8.2

thanks

tariq



intY has scanned this email for all known viruses (www.inty.com)





Re: seminar

2002-07-30 Thread Herbert Voss

Rem wrote:

 I tried to use the seminar layout under  LyX 1.2.
 Also, the file http://www.lyx.org/help/seminar/seminar.lyx
 doesn't exist on the server...


forgot to add it to the website 

it's in 20 minutes online and here attached, works also
for me.


Herbert



-- 
http://www.lyx.org/help/


#LyX 1.2 created this file. For more info see http://www.lyx.org/
\lyxformat 220
\textclass seminar
\begin_preamble
\usepackage[usenames]{pstcol}
\usepackage{pst-grad}
\usepackage{graphicx}
\usepackage{pifont}
\usepackage{semcolor}

% Basic Color Defs used within this file
\definecolor{lightblue}{rgb}{0.3296, 0.6648, 0.8644}% Sky Blue
\definecolor{shadowcolor}{rgb}{0., 0., 0.6179}  % Midnight Blue
\definecolor{bulletcolor}{rgb}{ 0.8441, 0.1582, 0.} % Orange-Red
\definecolor{bordercolor}{rgb}{0,0,.2380}   % Midnight Blue

\psset{shadowcolor=shadowcolor} % Set all shadowdrops to same color

% Change itemize environment to use funky color bullets
\renewcommand{\labelitemi}{\textcolor{bulletcolor}{\ding{118}}}
\renewcommand{\labelitemii}{\textcolor{bulletcolor}{\ding{224}}}
\renewcommand{\labelitemiii}{\textcolor{bulletcolor}{\ding{51}}}

% Define some nifty shaded backgrounds
% Nice shaded blue background:
\newslideframe{gradframe}
   
[\psset{framesep=12pt,linecolor=bordercolor,fillstyle=gradient,gradend=white,gradbegin=lightblue,framearc=0.1,gradmidpoint=0.8,linewidth=0.5pt}]{\psframebox{#1}}

% Use our newly-defined gradient style
\slideframe{gradframe}



%-%
% Do not edit this line, it's inserted by LyX ... %
\usepackage{babel}
% insert additional commands before this one. In some %
% cases it's useful to place commands behind babel,   %
% like the language specific one as   %
% \AtBeginDocument{\renewcommand\refname{blah}}   %
%-%

\renewcommand{\printlandscape}{\sliderotation{right}\special{landscape}}
\end_preamble
\language german
\inputencoding latin1
\fontscheme default
\graphics default
\paperfontsize 12
\spacing single 
\papersize Default
\paperpackage a4
\use_geometry 0
\use_amsmath 1
\use_natbib 0
\use_numerical_citations 0
\paperorientation portrait
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\defskip medskip
\quotes_language german
\quotes_times 2
\papercolumns 1
\papersides 1
\paperpagestyle default

\layout Standard


\begin_inset ERT
status Collapsed

\layout Standard

\backslash 
begin{slide}
\end_inset 


\layout Itemize

One item
\layout Itemize

Another item 
\layout Standard


\begin_inset ERT
status Collapsed

\layout Standard

\backslash 
end{slide} 
\backslash 
begin{slide}
\end_inset 


\layout Standard

When you use pdftricks-command you cannot use 
\family typewriter 
export\SpecialChar \menuseparator
pdftex
\family default 
.
 In this case do a 
\family typewriter 
export\SpecialChar \menuseparator
latex
\family default 
 and run from outside LyX:
\layout LyX-Code

latex file.tex 
\layout LyX-Code

dvips -Pcmz -o file.ps file.dvi 
\layout LyX-Code

distill file.ps
\layout Standard


\begin_inset ERT
status Collapsed

\layout Standard

\backslash 
end{slide}
\end_inset 


\the_end



seminar.pdf
Description: Binary data


Re: lyx and the various routes to ps, pdf and html (and not all perfect!)

2002-07-30 Thread Herbert Voss

Tariq Rashid wrote:

 * i want to maintain ONLY a .lyx file and the associated .eps figures
 
 * want to autogenerate (using a Makefile?) a postscript file, a pdf file
 and
 html documentation from this lyx source.


then write a script which runs lyx in batchmode (look at the docs)
and exports
1. to tex
2. to ps
3. to pdf

then run latex2html or any other converter on the tex-file


 * figures must appear in all the output formats


sure

 * links must also work in the html output, would be nice if they worked
 in the pdf


need some tricks, because it's not implemented yet

http://www.lyx.org/help/html/url.php3

 output too (eg linked references, table of contents)
 * equations and complicated structures should appear in all formats -
 even if
 they are represented by a bitmap (eg html)


depends to your tex-html converter how they look in html

 I've tried various combinations and various options and none seem perfect.
 i'm a little confused. there appears to be three pdf export options in lyx.


ps2pdf - works almost, but - http://www.lyx.org/help/pdf/pdf.php3#fonts
pdflatex - works not with pacjages which write postscript
code, like psfrag
dvipdf - same as before


Herbert


-- 
http://www.lyx.org/help/




Re: Figure caption problem in lyx 1.2

2002-07-30 Thread Herbert Voss

Leondios Kratzwald wrote:

 Upgrading from lyx 1.1.6 to 1.2 had severe impact on the layout of my thesis. 
 In Version 1.1.6 I used minipages to put the figure captions beside the 
 figure. It was simple and worked nice !
  I have noticed that the paragraph layout popup menu has changed in Version 
 1.2 in sofar that minipages cannot be chosen by pressing the extra buttion 
 (as it was in Version1.1.6) in the paragraph layout menu.
 In 1.2. I have tried to use the sidefig.sty for positioning the captions, 
 but I do not like it very much and I have not found a way to insert 
 cross-reference marks.
 Does anybody have an easy solution for this problem ?
 (I do not want to reweite the whole thing!)


should also work in 1.2.0

give a short lyx-examplefile.

look also http://www.lyx.org/help//floats/CapBesideFig.php


Herbert

-- 
http://www.lyx.org/help/




how to tell LyX that I'm using LARGE as default font?

2002-07-30 Thread Angus Leeming

I have just written a poster (with LyX 1.2.1cvs) that has the following 
code in the Preamble.

%% The poster uses larger than normal text
\renewcommand{\small}{\large}
\renewcommand{\normalsize}{\LARGE}
\renewcommand{\familydefault}{cmss}

Needless to say, I end up with LARGE previews when I come to view this in 
LyX 1.3cvs. (For those of you who don't use 1.3cvs, then you have a treat 
awaiting you ;-)

My question, however, is a LaTeX one. Is there a better way than my ugly 
hack to use LARGE as the default font size and to let LyX know about it? 
Ditto with familydefault?

Regards,
Angus






Re: New stable release of tex2pdf 3.1

2002-07-30 Thread Fernando Perez

On Tue, 30 Jul 2002, Tariq Rashid wrote:

 hi,
 
 i guess this question is not that unique, but there appear to be too many
 answers and not all of them perfect!
 
 my situation is this:
 
 * i want to maintain ONLY a .lyx file and the associated .eps figures
 
 * want to autogenerate (using a Makefile?) a postscript file, a pdf file
 and
 html documentation from this lyx source.
 
 * figures must appear in all the output formats
 * links must also work in the html output, would be nice if they worked
 in the pdf
 output too (eg linked references, table of contents)
 * equations and complicated structures should appear in all formats -
 even if
 they are represented by a bitmap (eg html)

This is exactly what I wrote lyxport for. Check it out at
http://www-hep.colorado.edu/~fperez/lyxport. Note however that tex2pdf is
_much_ more sophisticated than lyxport in its handling of complex documents.
Ideally the remainder functionality of lyxport which is not in tex2pdf could
be merged in, but unfortunately I'm not maintaining actively lyxport anymore.

But it works for me in most cases just fine, so give it a go. It might be good 
enough for the documents you deal with.

Cheers,

f.




Lyx: SIGSEGV signal caught

2002-07-30 Thread Carlos Arroyo Junior

When I run lyx I get the following  error:
lyx: SIGSEGV signal caught
Sorry, you have found a bug in LyX. Please read the bug-reporting instructions 
in Help-Introduction and send us a bug report, if necessary. Thanks !
Bye.
Aborted


I am using lyx 1.2 from http://www.alpha-centauri.fr/opensource/  and 
Slackware 8.1

user@Michaella:~$ ldd /usr/bin/lyx
libforms.so.0.89 = /usr/X11R6/lib/libforms.so.0.89 (0x40027000)
libXpm.so.4 = /usr/X11R6/lib/libXpm.so.4 (0x4010c000)
libpspell.so.4 = /usr/local/lib/libpspell.so.4 (0x4011a000)
libltdl.so.3 = /usr/lib/libltdl.so.3 (0x40137000)
libdl.so.2 = /lib/libdl.so.2 (0x4013d000)
libpspell-modules.so.1 = /usr/local/lib/libpspell-modules.so.1 
(0x4014)
libstdc++-libc6.2-2.so.3 = /usr/lib/libstdc++-libc6.2-2.so.3 
(0x40142000)
libAiksaurus.so.0 = /usr/lib/libAiksaurus.so.0 (0x4018c000)
libbz2.so.1.0 = /lib/libbz2.so.1.0 (0x401a3000)
libSM.so.6 = /usr/X11R6/lib/libSM.so.6 (0x401b4000)
libICE.so.6 = /usr/X11R6/lib/libICE.so.6 (0x401bc000)
libX11.so.6 = /usr/X11R6/lib/libX11.so.6 (0x401d2000)
libm.so.6 = /lib/libm.so.6 (0x4028b000)
libc.so.6 = /lib/libc.so.6 (0x402ac000)
/lib/ld-linux.so.2 = /lib/ld-linux.so.2 (0x4000)




Greek

2002-07-30 Thread John O'Gorman

Help

I am trying to produce a document in Greek.

I expected that it would simply work if I selected greek
as the language in the Layout - Document - Language.
Then typed as usual.

But the View-DVI produces the error:
Undefined control sequence:
\initiate@activechar{^^9f}

If I export the document to LaTeX, and then
run the latex command from the keybard it 
produces a .dvi file which displays exactly what
I would expect.

What am I doing wrong in LyX?

John O'Gorman



Re: how to tell LyX that I'm using LARGE as default font?

2002-07-30 Thread Herbert Voss

Angus Leeming wrote:

 I have just written a poster (with LyX 1.2.1cvs) that has the following 
 code in the Preamble.
 
 %% The poster uses larger than normal text
 \renewcommand{\small}{\large}
 \renewcommand{\normalsize}{\LARGE}
 \renewcommand{\familydefault}{cmss}
 
 Needless to say, I end up with LARGE previews when I come to view this in 
 LyX 1.3cvs. (For those of you who don't use 1.3cvs, then you have a treat 
 awaiting you ;-)
 
 My question, however, is a LaTeX one. Is there a better way than my ugly 
 hack to use LARGE as the default font size and to let LyX know about it? 
 Ditto with familydefault?


layout-document-class-ext(article/book/letter/report)

Herbert


-- 
http://www.lyx.org/help/




Re: Re: Word --> TeX

2002-07-30 Thread Guenter Milde

On Mon, 29 Jul 2002 14:44:24 -0400 wrote Paul Tremblay <[EMAIL PROTECTED]>:

> > I think that Abiword uses wv for importing, so it is probably better
> > to use wv directly for conversion from word to lyx
>
> ... Unfortunately, it can't convert RTF to LaTeX.

Do you know about gnu unrtf?

   UnRTF is a moderately complicated converter from RTF to other
   formats, including HTML, LaTeX, text, and PostScript. Converting
   to HTML, it supports tables, fonts, colors, embedded images,
   hyperlinks, paragraph alignment among other things. All other
   conversions are "alpha"--just begun.

   WEBSITE   
http://www.geocities.com/tuorfa   

I have downloaded version 0.18.1., it is written in C, compiles fast and
works pretty well. (for rtf -> html at least). 

May be you can convince the author to include XML as output format...

Guenter

--
G.Milde at physik.tu-dresden.de




Re: seminar.layout doesn't work as expected

2002-07-30 Thread Jean-Marc Lasgouttes

> "Guenter" == Guenter Milde <[EMAIL PROTECTED]> writes:

Guenter> On 17 Jul 2002 11:33:15 -0400 wrote German Poo Caaman~o
Guenter> <[EMAIL PROTECTED]>:
>>  Since lyx-1.1.6-fix (AFAIR) I've been having some problems with
>> seminar.layout. I defined frames on my slides, but now one slide
>> appears with frame and empty, the second one appears with text
>> (without frame), etc.

Guenter> Thanks for the report, makes me aware of problems to come...
Guenter> From the attached file I guess, that the problem arises in
Guenter> LyX 1.2.0 I have written seminar.layout for 1.1.6. It seems
Guenter> like the *.layout files format has changed somewhat. (This is
Guenter> also one of the reasons why I did not upgrade to 1.2.0 yet.)

The changes to layout file format are very small. The problem may be
elsewhere. 

JMarc



Re: New stable release of tex2pdf 3.1

2002-07-30 Thread Tariq Rashid

hi,

i guess this question is not that unique, but there appear to be too many
answers and not all of them perfect!

my situation is this:

* i want to maintain ONLY a .lyx file and the associated .eps figures

* want to autogenerate (using a Makefile?) a postscript file, a pdf file
and
html documentation from this lyx source.

* figures must appear in all the output formats
* links must also work in the html output, would be nice if they worked
in the pdf
output too (eg linked references, table of contents)
* equations and complicated structures should appear in all formats -
even if
they are represented by a bitmap (eg html)

I've tried various combinations and various options and none seem perfect.
i'm a little confused. there appears to be three pdf export options in lyx.
some options have the figures missing. some options produce one html file,
command line options produce a directory with images in it (this is good as
it works). there appear to be more than one path from lyx to a target:
lyx->tex>pdf or lyx->tex->dvi->pdf...

as someone new to lyx (but not to computing in general), i must say i'm left
a little confused as to which options are the best for which scenarios.

i'd be grateful for any clarifying comments and recommendations.

which is the path from lyx to pdf which gives the best results? why doesn't
export to html work well from the lyx menu, but does from the command
line...

i'm sure others are also in a similar position where they want high quality
outputs from a single lyx (+ .eps) source.

i'm using lyx 1.2 on mandrake 8.2

thanks

tariq


intY has scanned this email for all known viruses (www.inty.com)





url in html

2002-07-30 Thread John Sheahan

Hi

I recently tried to use lyx to generate some uncomplex html
pages.  Ran into what appears to be a known but unfixed bug getting 
URL's to appear as links in my html.

It still seems to be there with cvs 1_2_x lyx and latest latex2html.

this appears to have been discussed but I have not seen posted a 
useable solution yet.Here is a workaround, improvements welcome.


Problem appears to be lyx outputs a  \IfFileExists command which 
latex2html does not understand. The edit is trivial but not automated.

A workaround is a tiny perl script as inlined later called noexist.
make it executeable, put it somewhere in your search path
then within lyx edit your 
preferences => conversion => converters =>  LaTeX->HTML
  add to the start of the converter command 
  noexist $$i ; 
   prior to the latex2html, right at the start of the line. 
  modify/apply/save that.
then html export works for me with URL's.
john

# Script noexist 
#!/usr/bin/perl
# touchup TeX prior to latex2html
# replace  
#\IfFileExists{url.sty}{\usepackage{url}}
#  {\newcommand{\url}{\texttt}}
# with 
#\usepackage{url}
# [EMAIL PROTECTED]   Tue Jul 30 20:12:39 EST 2002
# edit the file inplace so I don't need to play latex2html path tricks.

$file=shift(@ARGV);
rename($file, "$file.orig");
open IN, "<$file.orig" || die "could not open $file";
open OUT, ">$file" || die "cannot open $file for output";
while ()  {
   if (/^\\IfFileExists{url.sty}{\\usepackage{url}}/) {
 ; # gulp the next line too
$_="\\usepackage{url}\n";
   }
print OUT $_;
}
unlink("$file.orig");
close IN;
close OUT;

###


 
 



page number placement

2002-07-30 Thread Praedor Tempus

Hello,

I need to alter the default page number placement in a document from bottom 
center to top right.  Could someone help me with how to do this?

praedor



Lyx-1.2 problem/glitch

2002-07-30 Thread Praedor Tempus

I built and installed Lyx-1.2 (linux) on my Mandrake 8.2 system.  All is fine 
except for one thing, in the math panel, there are 4 buttons that are 
blank/don't display any symbol/icon to indicate what it "contains".  The 
affected buttons include top row second button, top row third button, second 
row first button, third row second and third buttons. The others are OK.  If 
I select any of the blank buttons, the symbols contained display OK so it is 
only affecting the math panel buttons themselves.

How might I go about fixing this?  

praedor



Re: page number placement

2002-07-30 Thread Herbert Voss

Praedor Tempus wrote:

> Hello,
> 
> I need to alter the default page number placement in a document from bottom 
> center to top right.  Could someone help me with how to do this?


layout->document->pagestyle->fancy
and in preamble

\lhead{}
\chead{}
\rhead{\thepage}
\lfoot{}
\cfoot{}
\rfoot{}

for more see http://www.lyx.org/help/fancy/header.php

Herbert


-- 
http://www.lyx.org/help/




Re: Lyx-1.2 problem/glitch

2002-07-30 Thread Herbert Voss

Praedor Tempus wrote:

> I built and installed Lyx-1.2 (linux) on my Mandrake 8.2 system.  All is fine 
> except for one thing, in the math panel, there are 4 buttons that are 
> blank/don't display any symbol/icon to indicate what it "contains".  The 
> affected buttons include top row second button, top row third button, second 
> row first button, third row second and third buttons. The others are OK.  If 
> I select any of the blank buttons, the symbols contained display OK so it is 
> only affecting the math panel buttons themselves.
> 
> How might I go about fixing this?  


try
http://marc.theaimsgroup.com/?l=lyx-users=102747712143421=2

Herbert



-- 
http://www.lyx.org/help/




1.2.0 load problem

2002-07-30 Thread Rich Shepard

  Yesterday I posted a message about a problem invoking 1.2.0 on my RH 6.2
system. Unfortunately, I also had a mail problem for a short time and I see
that a reply was not allowed through.

  Is there an archive where I can find this? Or, could the responder please
send it again to me?

Thanks,

Rich

Dr. Richard B. Shepard, President

   Applied Ecosystem Services, Inc. (TM)
2404 SW 22nd Street | Troutdale, OR 97060-1247 | U.S.A.
 + 1 503-667-4517 (voice) | + 1 503-667-8863 (fax) | [EMAIL PROTECTED]
 http://www.appl-ecosys.com




Question on Koma-script environment

2002-07-30 Thread Roberto Hernandez

Hi all,

I'm using the scrbook class. One of the features I like about it is the 
possibility to use "\addchap" and such to include unnumbered chapters in 
the ToC. What I haven't been able to find is an environment that does 
the same for parts. Does it exist?

I had solved the problem by using the following:

\addcontentsline{part}{Appendices}
\part*{Appendices}


The problem with this is that when I run tex2pdf on the file, the 
"Appendices" part isn't included in the PDF bookmarks. Therefore my 
bookmarks look like this:

Final remarks
Conclusions
...
Appendix A
Appendix B
...

Instead of the following (what I'd like):

Final remarks
Conclusions
...
Appendices
Appendix A
Appendix B
...

Any ideas?

TIA,
Roberto






seminar

2002-07-30 Thread Remzi Seker

Hi
I am having problems with the seminar style. It simply doesn't run. Can
anyone send me a working example file so I can try and troubleshoot?

Thanks

Remzi





Re: Question on Koma-script environment

2002-07-30 Thread Herbert Voss

Roberto Hernandez wrote:

> Hi all,
> 
> I'm using the scrbook class. One of the features I like about it is the 
> possibility to use "\addchap" and such to include unnumbered chapters in 
> the ToC. What I haven't been able to find is an environment that does 
> the same for parts. Does it exist?
> 
> I had solved the problem by using the following:
> 
> \addcontentsline{part}{Appendices}


a typo?? should be

\clearpage\addcontentsline{toc}{part}{Appendices}

> \part*{Appendices}



Herbert


-- 
http://www.lyx.org/help/




Re: 1.2.0 load problem

2002-07-30 Thread Herbert Voss

Rich Shepard wrote:

>   Yesterday I posted a message about a problem invoking 1.2.0 on my RH 6.2
> system. Unfortunately, I also had a mail problem for a short time and I see
> that a reply was not allowed through.
> 
>   Is there an archive where I can find this? Or, could the responder please
> send it again to me?


http://marc.theaimsgroup.com/?l=lyx-users=1=200207=2

write to [EMAIL PROTECTED] when no one answers


Herbert

-- 
http://www.lyx.org/help/




Re: seminar

2002-07-30 Thread Herbert Voss

Remzi Seker wrote:

> Hi
> I am having problems with the seminar style. It simply doesn't run. Can
> anyone send me a working example file so I can try and troubleshoot?
> 


http://www.lyx.org/help/seminar/seminar.php

Herbert




Re: Question on Koma-script environment

2002-07-30 Thread Juergen Spitzmueller

Roberto Hernandez wrote:
> Hi all,
>
> I'm using the scrbook class. One of the features I like about it is the
> possibility to use "\addchap" and such to include unnumbered chapters in
> the ToC. What I haven't been able to find is an environment that does
> the same for parts. Does it exist?

Yes, it exists (at least in the most recent version): \addpart
Unfortunately, the LyX templates for KOMA are *way* behind the possibilities 
of the KOMA-classes, especially regarding the recent two releases (cf. the 
232 [sic!] pages of the new scrguide).
I guess a volunteer is needed ;-)

Regards,
Juergen



Re: page number placement

2002-07-30 Thread Praedor Tempus

On Tuesday 30 July 2002 08:52, Herbert Voss wrote:
> Praedor Tempus wrote:
> > I need to alter the default page number placement in a document from
> > bottom center to top right.  Could someone help me with how to do this?
>
> layout->document->pagestyle->fancy
> and in preamble
>
> \lhead{}
> \chead{}
> \rhead{\thepage}
> \lfoot{}
> \cfoot{}
> \rfoot{}
>
> for more see http://www.lyx.org/help/fancy/header.php

Thank you.  I have added to the preamble and am reading the pdf for fancy.  I 
do not want any decorative lines in the header, however.  The above commands 
added to my preamble placed the page number where I needed it (top right) but 
it also added a header line.  Reading the fancy pdf, it indicates that the 
command "\headerulewidth 0.4pt" would set a nice line of .4 pt width across 
the header.  Looking at the preamble in Lyx, I see no \headrulewidth entry at 
all - so I added it by modeling the example for "\footrulewidth 0 pt" on the 
same page:  "\headrulewidth 0 pt".  What this gives me when I seek to preview 
a ps image of the paper is an error message box in my lyx document.

Where is the cryptic \headrulewidth command being called and used?  The 
command syntax in the pdf is incorrect since it produces an error when 
processing the lyx document?  

Thank you,

praedor



Re: page number placement

2002-07-30 Thread Herbert Voss

Praedor Tempus wrote:

> On Tuesday 30 July 2002 08:52, Herbert Voss wrote:
> 
>>Praedor Tempus wrote:
>>
>>>I need to alter the default page number placement in a document from
>>>bottom center to top right.  Could someone help me with how to do this?
>>>
>>layout->document->pagestyle->fancy
>>and in preamble
>>
>>\lhead{}
>>\chead{}
>>\rhead{\thepage}
>>\lfoot{}
>>\cfoot{}
>>\rfoot{}
>>
>>for more see http://www.lyx.org/help/fancy/header.php
>>
> 
> Thank you.  I have added to the preamble and am reading the pdf for fancy.  I 
> do not want any decorative lines in the header, however.  The above commands 
> added to my preamble placed the page number where I needed it (top right) but 
> it also added a header line.  Reading the fancy pdf, it indicates that the 
> command "\headerulewidth 0.4pt" would set a nice line of .4 pt width across 
> the header.  Looking at the preamble in Lyx, I see no \headrulewidth entry at 
> all - so I added it by modeling the example for "\footrulewidth 0 pt" on the 
> same page:  "\headrulewidth 0 pt".  What this gives me when I seek to preview 


\renwecommand{\headrulewidth}{0.4pt}
\renwecommand{\footrulewidth}{0pt}

> a ps image of the paper is an error message box in my lyx document.
> 
> Where is the cryptic \headrulewidth command being called and used?  The 


it's part of the fancyhdr package.

Herbert


-- 
http://www.lyx.org/help/




Re: seminar

2002-07-30 Thread Guenter Milde

On Tue, 30 Jul 2002 16:22:47 +0200 wrote Herbert Voss 
<[EMAIL PROTECTED]>:

> Remzi Seker wrote:
> 
> > Hi
> > I am having problems with the seminar style. It simply doesn't run. Can
> > anyone send me a working example file so I can try and troubleshoot?
> > 
> 
> 
> http://www.lyx.org/help/seminar/seminar.php

Do you mean the seminar.cls LaTeX class or the seminar.layout Lyx support?
Could you try some example *.tex file that comes with seminar, to see if the
problem is with lyx or with latex?

The seminar.layout file from the contributed stuff section 
   
   ftp://ftp.lyx.org/pub/lyx/contrib/seminar.tar.gz

comes with a LyX template file. However, it is for use with LyX 1.1.6 and not
adapted to 1.2.0 yet.

Günter

--
G.Milde at physik.tu-dresden.de




Re: seminar.layout doesn't work as expected

2002-07-30 Thread German Poo Caaman~o

El lun, 29-07-2002 a las 08:42, Guenter Milde escribió:
> On 17 Jul 2002 11:33:15 -0400 wrote German Poo Caaman~o <[EMAIL PROTECTED]>:
> > Since lyx-1.1.6-fix (AFAIR) I've been having some problems
> > with seminar.layout. I defined frames on my slides, but
> > now one slide appears with frame and empty, the second
> > one appears with text (without frame), etc.
> 
> Thanks for the report, makes me aware of problems to come... From the
> attached file I guess, that the problem arises in LyX 1.2.0 I have written
> seminar.layout for 1.1.6. It seems like the *.layout files format has
> changed somewhat. (This is also one of the reasons why I did not upgrade to
> 1.2.0 yet.)

I tried with 1.1.6fix4 with the same results (from a Debian package).

-- 
German Poo Caaman~o
mailto:[EMAIL PROTECTED]
http://www.ubiobio.cl/~gpoo/chilelindo.html
«Hay 10 tipos de personas: las que entienden binario y las que no.»




Figure caption problem in lyx 1.2

2002-07-30 Thread Leondios Kratzwald

Upgrading from lyx 1.1.6 to 1.2 had severe impact on the layout of my thesis. 
In Version 1.1.6 I used minipages to put the figure captions beside the 
figure. It was simple and worked nice !
 I have noticed that the "paragraph layout" popup menu has changed in Version 
1.2 in sofar that minipages cannot be chosen by pressing the extra buttion 
(as it was in Version1.1.6) in the paragraph layout menu.
In 1.2. I have tried to use the "sidefig.sty" for positioning the captions, 
but I do not like it very much and I have not found a way to insert 
cross-reference marks.
Does anybody have an easy solution for this problem ?
(I do not want to reweite the whole thing!)

Thanks in advance,

Leondios



Re: seminar

2002-07-30 Thread Rem

I tried to use the seminar layout under  LyX 1.2.
Also, the file http://www.lyx.org/help/seminar/seminar.lyx
doesn't exist on the server...

- Original Message -
From: "Guenter Milde" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, July 30, 2002 9:03 AM
Subject: Re: seminar


> On Tue, 30 Jul 2002 16:22:47 +0200 wrote Herbert Voss
<[EMAIL PROTECTED]>:
>
> > Remzi Seker wrote:
> >
> > > Hi
> > > I am having problems with the seminar style. It simply doesn't run.
Can
> > > anyone send me a working example file so I can try and troubleshoot?
> > >
> >
> >
> > http://www.lyx.org/help/seminar/seminar.php
>
> Do you mean the seminar.cls LaTeX class or the seminar.layout Lyx support?
> Could you try some example *.tex file that comes with seminar, to see if
the
> problem is with lyx or with latex?
>
> The seminar.layout file from the contributed stuff section
>
>ftp://ftp.lyx.org/pub/lyx/contrib/seminar.tar.gz
>
> comes with a LyX template file. However, it is for use with LyX 1.1.6 and
not
> adapted to 1.2.0 yet.
>
> Günter
>
> --
> G.Milde at physik.tu-dresden.de
>




Re: seminar

2002-07-30 Thread Herbert Voss

Guenter Milde wrote:

> comes with a LyX template file. However, it is for use with LyX 1.1.6 and not
> adapted to 1.2.0 yet.


I have no problems with this layout file. Can someone please
mail me a copy of a not-running lyxfile, which doesn't work
with the seminar layout file.

lyx 1.2.0 and 1.3.0

Herbert



-- 
http://www.lyx.org/help/




lyx and the various routes to ps, pdf and html (and not all perfect!)

2002-07-30 Thread Tariq Rashid


apologies - this was initially sent with the incorrect Subject, so may not
have been brought to the attention of those interested




hi,

i guess this question is not that unique, but there appear to be too many
answers and not all of them perfect!

my situation is this:

* i want to maintain ONLY a .lyx file and the associated .eps figures

* want to autogenerate (using a Makefile?) a postscript file, a pdf file
and
html documentation from this lyx source.

* figures must appear in all the output formats
* links must also work in the html output, would be nice if they worked
in the pdf
output too (eg linked references, table of contents)
* equations and complicated structures should appear in all formats -
even if
they are represented by a bitmap (eg html)

I've tried various combinations and various options and none seem perfect.
i'm a little confused. there appears to be three pdf export options in lyx.
some options have the figures missing. some options produce one html file,
command line options produce a directory with images in it (this is good as
it works). there appear to be more than one path from lyx to a target:
lyx->tex>pdf or lyx->tex->dvi->pdf...

as someone new to lyx (but not to computing in general), i must say i'm left
a little confused as to which options are the best for which scenarios.

i'd be grateful for any clarifying comments and recommendations.

which is the path from lyx to pdf which gives the best results? why doesn't
export to html work well from the lyx menu, but does from the command
line...

i'm sure others are also in a similar position where they want high quality
outputs from a single lyx (+ .eps) source.

i'm using lyx 1.2 on mandrake 8.2

thanks

tariq



intY has scanned this email for all known viruses (www.inty.com)





Re: seminar

2002-07-30 Thread Herbert Voss

Rem wrote:

> I tried to use the seminar layout under  LyX 1.2.
> Also, the file http://www.lyx.org/help/seminar/seminar.lyx
> doesn't exist on the server...


forgot to add it to the website 

it's in 20 minutes online and here attached, works also
for me.


Herbert



-- 
http://www.lyx.org/help/


#LyX 1.2 created this file. For more info see http://www.lyx.org/
\lyxformat 220
\textclass seminar
\begin_preamble
\usepackage[usenames]{pstcol}
\usepackage{pst-grad}
\usepackage{graphicx}
\usepackage{pifont}
\usepackage{semcolor}

% Basic Color Defs used within this file
\definecolor{lightblue}{rgb}{0.3296, 0.6648, 0.8644}% Sky Blue
\definecolor{shadowcolor}{rgb}{0., 0., 0.6179}  % Midnight Blue
\definecolor{bulletcolor}{rgb}{ 0.8441, 0.1582, 0.} % Orange-Red
\definecolor{bordercolor}{rgb}{0,0,.2380}   % Midnight Blue

\psset{shadowcolor=shadowcolor} % Set all shadowdrops to same color

% Change itemize environment to use funky color bullets
\renewcommand{\labelitemi}{\textcolor{bulletcolor}{\ding{118}}}
\renewcommand{\labelitemii}{\textcolor{bulletcolor}{\ding{224}}}
\renewcommand{\labelitemiii}{\textcolor{bulletcolor}{\ding{51}}}

% Define some nifty shaded backgrounds
% Nice shaded blue background:
\newslideframe{gradframe}
   
[\psset{framesep=12pt,linecolor=bordercolor,fillstyle=gradient,gradend=white,gradbegin=lightblue,framearc=0.1,gradmidpoint=0.8,linewidth=0.5pt}]{\psframebox{#1}}

% Use our newly-defined gradient style
\slideframe{gradframe}



%-%
% Do not edit this line, it's inserted by LyX ... %
\usepackage{babel}
% insert additional commands before this one. In some %
% cases it's useful to place commands behind babel,   %
% like the language specific one as   %
% \AtBeginDocument{\renewcommand\refname{blah}}   %
%-%

\renewcommand{\printlandscape}{\sliderotation{right}\special{landscape}}
\end_preamble
\language german
\inputencoding latin1
\fontscheme default
\graphics default
\paperfontsize 12
\spacing single 
\papersize Default
\paperpackage a4
\use_geometry 0
\use_amsmath 1
\use_natbib 0
\use_numerical_citations 0
\paperorientation portrait
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\defskip medskip
\quotes_language german
\quotes_times 2
\papercolumns 1
\papersides 1
\paperpagestyle default

\layout Standard


\begin_inset ERT
status Collapsed

\layout Standard

\backslash 
begin{slide}
\end_inset 


\layout Itemize

One item
\layout Itemize

Another item 
\layout Standard


\begin_inset ERT
status Collapsed

\layout Standard

\backslash 
end{slide} 
\backslash 
begin{slide}
\end_inset 


\layout Standard

When you use pdftricks-command you cannot use 
\family typewriter 
export\SpecialChar \menuseparator
pdftex
\family default 
.
 In this case do a 
\family typewriter 
export\SpecialChar \menuseparator
latex
\family default 
 and run from outside LyX:
\layout LyX-Code

latex .tex 
\layout LyX-Code

dvips -Pcmz -o .ps .dvi 
\layout LyX-Code

distill .ps
\layout Standard


\begin_inset ERT
status Collapsed

\layout Standard

\backslash 
end{slide}
\end_inset 


\the_end



seminar.pdf
Description: Binary data


Re: lyx and the various routes to ps, pdf and html (and not all perfect!)

2002-07-30 Thread Herbert Voss

Tariq Rashid wrote:

> * i want to maintain ONLY a .lyx file and the associated .eps figures
> 
> * want to autogenerate (using a Makefile?) a postscript file, a pdf file
> and
> html documentation from this lyx source.


then write a script which runs lyx in batchmode (look at the docs)
and exports
1. to tex
2. to ps
3. to pdf

then run latex2html or any other converter on the tex-file


> * figures must appear in all the output formats


sure

> * links must also work in the html output, would be nice if they worked
> in the pdf


need some tricks, because it's not implemented yet

http://www.lyx.org/help/html/url.php3

> output too (eg linked references, table of contents)
> * equations and complicated structures should appear in all formats -
> even if
> they are represented by a bitmap (eg html)


depends to your tex->html converter how they look in html

> I've tried various combinations and various options and none seem perfect.
> i'm a little confused. there appears to be three pdf export options in lyx.


ps2pdf - works almost, but -> http://www.lyx.org/help/pdf/pdf.php3#fonts
pdflatex - works not with pacjages which write postscript
code, like psfrag
dvipdf - same as before


Herbert


-- 
http://www.lyx.org/help/




Re: Figure caption problem in lyx 1.2

2002-07-30 Thread Herbert Voss

Leondios Kratzwald wrote:

> Upgrading from lyx 1.1.6 to 1.2 had severe impact on the layout of my thesis. 
> In Version 1.1.6 I used minipages to put the figure captions beside the 
> figure. It was simple and worked nice !
>  I have noticed that the "paragraph layout" popup menu has changed in Version 
> 1.2 in sofar that minipages cannot be chosen by pressing the extra buttion 
> (as it was in Version1.1.6) in the paragraph layout menu.
> In 1.2. I have tried to use the "sidefig.sty" for positioning the captions, 
> but I do not like it very much and I have not found a way to insert 
> cross-reference marks.
> Does anybody have an easy solution for this problem ?
> (I do not want to reweite the whole thing!)


should also work in 1.2.0

give a short lyx-examplefile.

look also http://www.lyx.org/help//floats/CapBesideFig.php


Herbert

-- 
http://www.lyx.org/help/




how to tell LyX that I'm using LARGE as default font?

2002-07-30 Thread Angus Leeming

I have just written a poster (with LyX 1.2.1cvs) that has the following 
code in the Preamble.

%% The poster uses larger than normal text
\renewcommand{\small}{\large}
\renewcommand{\normalsize}{\LARGE}
\renewcommand{\familydefault}{cmss}

Needless to say, I end up with LARGE previews when I come to view this in 
LyX 1.3cvs. (For those of you who don't use 1.3cvs, then you have a treat 
awaiting you ;-)

My question, however, is a LaTeX one. Is there a better way than my ugly 
hack to use LARGE as the default font size and to let LyX know about it? 
Ditto with familydefault?

Regards,
Angus






Re: New stable release of tex2pdf 3.1

2002-07-30 Thread Fernando Perez

On Tue, 30 Jul 2002, Tariq Rashid wrote:

> hi,
> 
> i guess this question is not that unique, but there appear to be too many
> answers and not all of them perfect!
> 
> my situation is this:
> 
> * i want to maintain ONLY a .lyx file and the associated .eps figures
> 
> * want to autogenerate (using a Makefile?) a postscript file, a pdf file
> and
> html documentation from this lyx source.
> 
> * figures must appear in all the output formats
> * links must also work in the html output, would be nice if they worked
> in the pdf
> output too (eg linked references, table of contents)
> * equations and complicated structures should appear in all formats -
> even if
> they are represented by a bitmap (eg html)

This is exactly what I wrote lyxport for. Check it out at
http://www-hep.colorado.edu/~fperez/lyxport. Note however that tex2pdf is
_much_ more sophisticated than lyxport in its handling of complex documents.
Ideally the remainder functionality of lyxport which is not in tex2pdf could
be merged in, but unfortunately I'm not maintaining actively lyxport anymore.

But it works for me in most cases just fine, so give it a go. It might be good 
enough for the documents you deal with.

Cheers,

f.




Lyx: SIGSEGV signal caught

2002-07-30 Thread Carlos Arroyo Junior

When I run lyx I get the following  error:
"lyx: SIGSEGV signal caught
Sorry, you have found a bug in LyX. Please read the bug-reporting instructions 
in Help->Introduction and send us a bug report, if necessary. Thanks !
Bye.
Aborted"


I am using lyx 1.2 from http://www.alpha-centauri.fr/opensource/  and 
Slackware 8.1

user@Michaella:~$ ldd /usr/bin/lyx
libforms.so.0.89 => /usr/X11R6/lib/libforms.so.0.89 (0x40027000)
libXpm.so.4 => /usr/X11R6/lib/libXpm.so.4 (0x4010c000)
libpspell.so.4 => /usr/local/lib/libpspell.so.4 (0x4011a000)
libltdl.so.3 => /usr/lib/libltdl.so.3 (0x40137000)
libdl.so.2 => /lib/libdl.so.2 (0x4013d000)
libpspell-modules.so.1 => /usr/local/lib/libpspell-modules.so.1 
(0x4014)
libstdc++-libc6.2-2.so.3 => /usr/lib/libstdc++-libc6.2-2.so.3 
(0x40142000)
libAiksaurus.so.0 => /usr/lib/libAiksaurus.so.0 (0x4018c000)
libbz2.so.1.0 => /lib/libbz2.so.1.0 (0x401a3000)
libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x401b4000)
libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x401bc000)
libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x401d2000)
libm.so.6 => /lib/libm.so.6 (0x4028b000)
libc.so.6 => /lib/libc.so.6 (0x402ac000)
/lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x4000)




Greek

2002-07-30 Thread John O'Gorman

Help

I am trying to produce a document in Greek.

I expected that it would simply work if I selected greek
as the language in the Layout -> Document -> Language.
Then typed as usual.

But the View->DVI produces the error:
Undefined control sequence:
\initiate@active@char{^^9f}

If I export the document to LaTeX, and then
run the latex command from the keybard it 
produces a .dvi file which displays exactly what
I would expect.

What am I doing wrong in LyX?

John O'Gorman



Re: how to tell LyX that I'm using LARGE as default font?

2002-07-30 Thread Herbert Voss

Angus Leeming wrote:

> I have just written a poster (with LyX 1.2.1cvs) that has the following 
> code in the Preamble.
> 
> %% The poster uses larger than normal text
> \renewcommand{\small}{\large}
> \renewcommand{\normalsize}{\LARGE}
> \renewcommand{\familydefault}{cmss}
> 
> Needless to say, I end up with LARGE previews when I come to view this in 
> LyX 1.3cvs. (For those of you who don't use 1.3cvs, then you have a treat 
> awaiting you ;-)
> 
> My question, however, is a LaTeX one. Is there a better way than my ugly 
> hack to use LARGE as the default font size and to let LyX know about it? 
> Ditto with familydefault?


layout->document->class->ext(article/book/letter/report)

Herbert


-- 
http://www.lyx.org/help/