Re: Change chapter number as displayed in LyX

2020-03-27 Thread Matt Barnard
That seemed to be the case, thanks for confirming.
Is your patch on github? I have time now due to current events and could
take a look at finishing it.

Matt

On Fri, Mar 27, 2020, 9:19 AM Richard Kimberly Heck 
wrote:

> On 3/26/20 8:55 PM, Matt Barnard wrote:
>
> Sure, see attached. Adjusting the LyX numbering like this is something
> I've found myself wanting to do a number of times.
>
> Yes, the only to fix this in LyX itself would be with some LaTeX trickery
> of the sort you describe below. There's not currently any way to manipulate
> LyX's counters within the text itself. I have a partial patch that will do
> this kind of thing but haven't had time to finish it.
>
> Riki
>
>
>
> Example (attached)
>
>> \setcounter{part}{9}
>> Part 10 My document starts on Part 10
>> 1 with one section
>> \addcontentsline{toc}{part}{*By the way,}*By the way,
>> This chapter is an aside, but it needs to be at the Part level in the ToC
>> \setcounter{part}{9}
>> Part 11 then we continue with Part 10
>> 2 but LyX says this is Part 11
>
>
> Note that I resolved this for now using the following:
>
> \newcounter{previouschapter}
>> \newcounter{previoussection}
>> \newcounter{uniquechapteranchor}
>> \newcommand{\pushchapter}{%
>>   \let\previouschaptertitle\parttitle%
>>
>   \setcounter{previouschapter}{\value{part}}%
>>   \setcounter{previoussection}{\value{section}}%
>> }
>> \newcommand{\popchapter}{%
>>   \renewcommand*{\theHpart}{\value{uniquechapteranchor}\the\value{part}}
>> % for hyperref
>
>   \chapt{\value{previouschapter}}   %
>> shorthand for \setcounter{part}{n-1}
>>   \part{\previouschaptertitle~(cont.)}%
>>   \sect{\value{previoussection}}%
>>   \stepcounter{section}%
>>   \stepcounter{uniquechapteranchor}%
>> }
>
>
> and then
>
>
>> \part{Real  part  }
>
> \pushchapter
>> \part*{Interrupting part}
>
> \popchapter % output a new part, but don't start a new part in LyX
>
> \section{this is in real  part}
>
>
> LyX continues numbering with the previous part even though I write a new
> part in the output
>
> On Thu, Mar 26, 2020 at 4:57 PM Richard Kimberly Heck 
> wrote:
>
>> On 3/26/20 4:16 PM, Matt Barnard wrote:
>>
>> Hello,
>>
>> I'm interrupting a numbered chapter with an unnumbered chapter, and I
>> would like to continue sections within that previous numbered chapter. I've
>> done this on the output side with \setcounter{part}, but in LyX the
>> chapter number is still incremented.
>>
>> I've fixed this for the first instance using the local layout
>>
>> Counter part
>>
>> InitialValue 12
>>
>> End
>>
>> but I haven't found a way to give LyX a command mid-document to adjust
>> numbering.
>>
>> Is this currently supported?
>>
>> I'm not sure I entirely understand the issue. Can you post a very simple
>> example file?
>>
>> Riki
>>
>>
>>
>
-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: Change chapter number as displayed in LyX

2020-03-26 Thread Matt Barnard
Sure, see attached. Adjusting the LyX numbering like this is something I've
found myself wanting to do a number of times.

Thanks for your time,
Matt

Example (attached)

> \setcounter{part}{9}
> Part 10 My document starts on Part 10
> 1 with one section
> \addcontentsline{toc}{part}{*By the way,}*By the way,
> This chapter is an aside, but it needs to be at the Part level in the ToC
> \setcounter{part}{9}
> Part 11 then we continue with Part 10
> 2 but LyX says this is Part 11


Note that I resolved this for now using the following:

\newcounter{previouschapter}
> \newcounter{previoussection}
> \newcounter{uniquechapteranchor}
> \newcommand{\pushchapter}{%
>   \let\previouschaptertitle\parttitle%
>
  \setcounter{previouschapter}{\value{part}}%
>   \setcounter{previoussection}{\value{section}}%
> }
> \newcommand{\popchapter}{%
>   \renewcommand*{\theHpart}{\value{uniquechapteranchor}\the\value{part}}
> % for hyperref

  \chapt{\value{previouschapter}}   %
> shorthand for \setcounter{part}{n-1}
>   \part{\previouschaptertitle~(cont.)}%
>   \sect{\value{previoussection}}%
>   \stepcounter{section}%
>   \stepcounter{uniquechapteranchor}%
> }


and then


> \part{Real  part  }

\pushchapter
> \part*{Interrupting part}

\popchapter % output a new part, but don't start a new part in LyX

\section{this is in real  part}


LyX continues numbering with the previous part even though I write a new
part in the output

On Thu, Mar 26, 2020 at 4:57 PM Richard Kimberly Heck 
wrote:

> On 3/26/20 4:16 PM, Matt Barnard wrote:
>
> Hello,
>
> I'm interrupting a numbered chapter with an unnumbered chapter, and I
> would like to continue sections within that previous numbered chapter. I've
> done this on the output side with \setcounter{part}, but in LyX the
> chapter number is still incremented.
>
> I've fixed this for the first instance using the local layout
>
> Counter part
>
> InitialValue 12
>
> End
>
> but I haven't found a way to give LyX a command mid-document to adjust
> numbering.
>
> Is this currently supported?
>
> I'm not sure I entirely understand the issue. Can you post a very simple
> example file?
>
> Riki
>
>
>


newfile1.lyx
Description: application/lyx
-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Change chapter number as displayed in LyX

2020-03-26 Thread Matt Barnard
Hello,

I'm interrupting a numbered chapter with an unnumbered chapter, and I would
like to continue sections within that previous numbered chapter. I've done
this on the output side with \setcounter{part}, but in LyX the chapter
number is still incremented.

I've fixed this for the first instance using the local layout

Counter part

InitialValue 12

End

but I haven't found a way to give LyX a command mid-document to adjust
numbering.

Is this currently supported?


Thanks,

Matt
-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Downloaking MikTeX failed, installer using wrong download path?

2011-04-06 Thread Matt Seitz (matseitz)
Does the LyX installer for Windows need to change the path for
downloading miktex from "/get/systems/win32/miktex/setup" to
"/systems/win32/miktex/setup"?

 

When I tried to install LyX 1.6.9-2 for Microsoft Windows using the
standard installer
(ftp://ftp.lyx.org/pub/lyx/bin/1.6.9/LyX-1.6.9-2-Installer.exe), the
installer reported the error "Downloading MikTeX failed".  

 

I reran the installer while taking a network trace and saw the following
error:

 

1910   71.947625171.71.137.121  171.70.168.183  DNS
Standard query A www.ctan.org

1911   72.047106171.70.168.183  171.71.137.121  DNS
Standard query response CNAME alan.smcvt.edu A 192.80.64.33

1915   72.136694171.71.137.121  192.80.64.33   HTTP
GET /get/systems/win32/miktex/setup/basic-miktex-2.9.3972.exe HTTP/1.0

1918   72.282413192.80.64.33   171.71.137.121  HTTP
HTTP/1.1 404 NOT FOUND  (text/html)

 

I then went to the miktex web site and checked it's download page.  I
didn't see alan.smcvt.edu listed as a mirror, so I tried using
"ctan.mackichan.com", again while taking a network trace.  This time, I
saw:

 

94   4.739099  171.71.137.121  171.70.168.183  DNS
Standard query A ctan.mackichan.com

96   4.896114  171.70.168.183  171.71.137.121  DNS
Standard query response A 50.17.254.94

102 4.975983  171.71.137.121  50.17.254.94
HTTP  GET /systems/win32/miktex/setup/basic-miktex-2.9.4106.exe
HTTP/1.0

 

...followed by a stream of data.

 

I then went to http://alan.smcvt.edu and clicked the "Browse the
directory tree link".  I found the following link:

 

http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.3972
.exe

 

 



undefined control sequence with pdflatex but not with dvipdfm

2010-11-17 Thread Matt Funk
Hi,

this i probably only indirectly related to lyx, but i thought there are some 
experts on this list who might have an answer.

I downloaded the powerdot presentation (see here: http://www.ctan.org/tex-
archive/macros/latex/contrib/powerdot/lyx/)

i opened it up in lyx and used pdflatex on it, which then gave me many 
'undefined control sequence' errors.
When i did file->export-?pdf(dvipdfm) and then opened the resulting pdf file it 
worked right out of the box.

I was under the impression that pdflatex is equivalent to dvipdfm except for 
the intermediate dvi output.

I am using lyx: v1.6.5, 

pdflatex:
pdfTeX 3.1415926-1.40.10-2.2 (TeX Live 2009/Debian)
kpathsea version 5.0.0
Copyright 2009 Peter Breitenlohner (eTeX)/Han The Thanh (pdfTeX).
There is NO warranty.  Redistribution of this software is
covered by the terms of both the pdfTeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the pdfTeX source.
Primary author of pdfTeX: Peter Breitenlohner (eTeX)/Han The Thanh (pdfTeX).
Compiled with libpng 1.2.42; using libpng 1.2.42
Compiled with zlib 1.2.3.3; using zlib 1.2.3.3
Compiled with poppler version 0.12.4


does anyone know what this is?


thanks
matt


Re: lyx and bibtex for document consisting of multiple files

2010-10-04 Thread Matt Funk
Sorry,
please disregard, I was doing something wrong.

thanks
matt

On Monday, October 04, 2010, Matt Funk wrote:
> HI,
> 
> i am wrinting a document consisting of multiple files (which are
> essentially chapters)
> I have a .bib file which i import into lyx. The file is included at the end
> of the main file (the one that contains all the references to the other
> files.
> 
> Anyway, when i try to cite out of the biblography within on of the chapter
> files and create a pdf for the whole document is get a [?].
> 
> Is there anything i am missing or doing wrong?
> 
> thanks
> matt



lyx and bibtex for document consisting of multiple files

2010-10-04 Thread Matt Funk
HI,

i am wrinting a document consisting of multiple files (which are essentially 
chapters)
I have a .bib file which i import into lyx. The file is included at the end of 
the main file (the one that contains all the references to the other files.

Anyway, when i try to cite out of the biblography within on of the chapter 
files and create a pdf for the whole document is get a [?].

Is there anything i am missing or doing wrong?

thanks
matt


using multiple files for document->problem with document class(es)

2010-09-17 Thread Matt Funk
Hi,

i am writing a document that is broken up into multiple files. I include these 
files via Insert->File->Child Document.

The problem is this:
I select a given document class for the main document. The child documents 
have the main document as their master document selected. The problem is when 
i create a the pdf document it gives me a warning for each included child 
document that the document classes between the main document and the child 
document are not same.

I would have expected that by selecting a main document the settings such as 
the document class would be taken over by the child document. Apparently this 
is not the case since i get the warning.

Am i doing something wrong?

thanks
matt

ps: i am running lyx1.6.5


Re: lyx with cv modern doc class on ubuntu 10.04

2010-07-27 Thread Matt Funk
Hi, 
thanks for the reply,

On Tuesday, July 27, 2010, Tennessee Carmel-Veilleux wrote:
> On 27 July 2010 16:51, Matt Funk  wrote:
> > Hi,
> > 
> > i am using lyx (1.6.5) with ubuntu 10.04. I am trying to use the modern
> > cv document class to do a resume.
> > When i try to compile it i get error:
> > undefined control sequence
> > 
> > I tried to google but did not find anything helping me to resolve this.
> > Any insight is appreciated.
> 
> > Two questions to help with resolving the issue:
>1. What is in your preamble (Settings:LaTeX preamble) ?
It is empty.

>2. Did you enable support for Hyperref ?
Yes.

thanks
matt

> 
> Best regards,
> 
> Tennessee Carmel-Veilleux, EIT
> Electrical engineering masters student, ETS (http://www.etsmtl.ca)
> Project AREXIMAS (http://areximas.etsmtl.ca)



lyx with cv modern doc class on ubuntu 10.04

2010-07-27 Thread Matt Funk
Hi,

i am using lyx (1.6.5) with ubuntu 10.04. I am trying to use the modern cv 
document class to do a resume.
When i try to compile it i get error:
undefined control sequence

\begin{document}
 
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.

I tried to google but did not find anything helping me to resolve this.
Any insight is appreciated.


thanks
matt


Re: lyx 1.6: changes to eqnarray numbering; idea for insert matrix dialog

2009-03-12 Thread matt


hi uwe,

many thanks for your reply.



Bit this was not changed. Use Ctrl+N to change all line numberings  
or Ctrl+Shift+N for only the current line.


for me, ctrl-n or ctrl-shift-n brings up a new buffer. what is the  
actual lyx command for line numberings? the only one i have found is  
math-number-toggle which does not have the right functionality.




also, as an aside, could we get a dialog box for matrix sizes as  
easy to use as the one for tables?


We have this, use the matrix button in the math toolbar. (The  
toolbar automatically appears when you are in a formula.)




for me, in the matrix dialog, i have to manually click to get the  
right number of rows and columns.clicking and dragging to resize  
the displayed empty matrix does nothing, unlike in the case for  
inserting a table.


i hope this explains my issues a bit better!

best,

matt.


lyx 1.6: changes to eqnarray numbering; idea for insert matrix dialog

2009-03-12 Thread matt
i'm very happy with most of the changes in lyx 1.6 and i have spent  
quite a bit of time updating my cua.bind file.


i am a bit confused by a change in equation numbering functionality  
however and would appreciate it enormously if someone could help me.


i am ok with toggling as opposed to off/on, but now it seems lyx  
toggles numbering for *all* equations in eqnarray, not just  
individual lines. i really need to be able to turn off numbering for  
some lines and not others!


also, as an aside, could we get a dialog box for matrix sizes as easy  
to use as the one for tables?


thanks for any and all help,

matt.

p.s. i am running a fink port of lyx-x11 1.6.1 on a mac 10.4.11, if  
this is of any relevance.




Re: math background color doesn't change

2006-11-17 Thread matt


danke uwe.

it is indeed a bug. it has already been noted (bug #2279) and there  
was some indication it might be tackled in lyx 1.4.2...


matt.

On 16 Nov 2006, at 23:13, Uwe Stöhr wrote:


matt schrieb:

i've just upgraded from lyx 1.3.5-xforms to lyx 1.4.3-qt and i  
find can't change the background color of equations like i'm used to.
i can go to tools->preferences; look and feel->colors and change  
the colors. however, only changes that aren't to the math  
backgrounds are successful. the .lyx/preferences file reflects  
changes to "mathbg" and it is definitely being read when i fire up  
lyx, but nothing changes.


This is a bug introduced in LyX 1.4.0 because it works in LyX Qt  
1.3.7.

Please report this at bugzilla.lyx.org

regards Uwe




math background color doesn't change

2006-11-16 Thread matt
i've just upgraded from lyx 1.3.5-xforms to lyx 1.4.3-qt and i find  
can't change the background color of equations like i'm used to.


i can go to tools->preferences; look and feel->colors and change the  
colors. however, only changes that aren't to the math backgrounds are  
successful. the .lyx/preferences file reflects changes to "mathbg"  
and it is definitely being read when i fire up lyx, but nothing changes.


does anyone know if this is a qt issue (like the annoying big  
operators one)? if anyone had a solution i would be very grateful.


cheers,

matt.


Windows install succeeds, but lyx unable to start

2006-11-09 Thread Matt Greenwood
LyX: reconfiguring user directory
'\\fsgbl1\mig$\Application Data\lyx1.4.x'
CMD.EXE was started with the above path as the current directory.
UNC paths are not supported.  Defaulting to Windows directory.
checking for DVI to DTL converter...
+checking for "dv2dt"...   yes

Snipped lots of successful messages

+checking for package psnfss [times.sty]... yes
+Inspection done.
+Read the file doc/LaTeXConfig.lyx for more information.
creating packages.lst
creating doc/LaTeXConfig.lyx
LyX: Done!
LyXTextClassList::Read: unable to find textclass file  `'. Exiting.


I believe that the problem is that my Application Data folder is on a windows 
server. Is there a way to force Lyx to use the local drive instead?

Please cc email replies to my email address as I don't read this list

Matt



lyx to odf conversion

2006-10-22 Thread Matt Flax

Hello,

I would like to convert my lyx document to an ODF document.

The reason is that I have someone who wants to proof read and correct
one of my documents ... unfortunatly they use Microsoft word.
In the past I havn't found any good methods for converting ... I
thought that perhaps ODF would be the way to go ... I believe they
have a plugin for MS Word ... so all I have to do is work out how to
get from lyx or tex to ODF ...

I have tried some methods before but have found problems with math
equations and figures 

thanks
Matt

--
http://www.flatmaxstudios.com


Lyx Version 1.3.6 -- WASYSYM

2006-04-19 Thread Matt Harris
\usepackage{wasysym} is written into the preamble by default.  How do you 
remove this so that double and triple integrals will be done with the AMS 
package?


Thanks,
Matt Harris




APA style with two authors

2006-03-16 Thread Matt Ian Helgesen
Hello everyone,
Has anyone been successful using the 'TwoAuthors' command in  an APA
style document? When I try to write an article using this instead of
using 'Author', lyx can no longer export to pdf. Instead, I get several
errors relating to the lack of a \maketitle command. Inserting this
command in ERT only generates more errors. I have also tried adding this
to the preamble, with no luck.

Thanks.
-- 
Matt Ian Helgesen <[EMAIL PROTECTED]>



Parts and Sections numbering

2005-09-05 Thread Matt Williams
Dear List,

A (hopefully) simple question:

Using Lyx, how do "re-start" the numbering of sections for different
parts?

viz:

Part 1:
Secn 1
Secn 2
Secn 3

Part 2:
Secn 1
Secn 2

Part 3:
Secn 1
Secn 2

Thanks for your help,

Matt



Natbib and updating the .bib file

2005-05-12 Thread Matt Williams
Dear List,

I've been having some problems with LyX and Natbib.
I've been exchanging a document with a colleague, so we can both work on
it. We're using Natbib and the \citet command for the citations, but
when we output a dvi, we get (author?) [12] in front of some of the
citations. I've tried to sort this out - is this an issue with the .bib
file, or something else. Ideas?

Also, if I use a bibliography, and then change the .bib file, the
updates often don't appear in the dvi/ pdf. I have to delete
the /tmp/lyx directories, and then do it. Is there anyway of 'forcing'
lyx to look at the .bib file again?

Thanks a lot,

Matt






Installing new packages

2005-04-27 Thread Matt Williams
Dear List,

Can anyone explain to me how to install new packages for use with LyX?
Where do I put them (I think I know what to do with them, as I found a
LaTeX description - do you have to do anything different for LyX?)

Once installed, do you have to 'register' them with LyX?

Thanks,

Matt

(Lyx 1.3.5 on Linux FC3)



Centering a Float in Lyx

2005-04-19 Thread Matt Williams
Dear List,

Despite reading and re-reading the lyx FAQ and User Guide, I'm still
having problems centering floats;

My Document settings has \centre in the "float placement" field, and
I've even tried {\begin center} {\end center} around the floats, but no
luck.

Any ideas?

Matt 

-- 
Dr. M. Williams MRCP(UK)
Clinical Research Fellow
Cancer Research UK
+44 (0)207 269 2953
+44 (0)7384 899570



BibTex Manager

2005-04-12 Thread Matt Williams
I would recommend JabRef
-- 
Dr. M. Williams MRCP(UK)
Clinical Research Fellow
Cancer Research UK
+44 (0)207 269 2953
+44 (0)7384 899570



Fractions

2005-04-08 Thread Matt Williams
Dear List,

I'm trying to insert a (logical) formula, of the form:


a,b,c
if a,b,c -> d
-
d

I'm trying to do it using a fraction, but don't know how to get a double
top line. Any ideas?

Matt

Lyx 1.3.5 on Linux fc3



Inserting Floating figures

2005-04-05 Thread Matt Williams
Dear List,

I'm using Lyx (v 1.3.5, Fedora Core 2) and am having some problems with
floating figures.

By using latex from the command line, I've found the problem:

Lyx generates:
\caption{\begin{tabular}


which causes latex to throw some errors.

If you alter it to read:
\caption[]{\begin{tabular}{|c|c|c|c|c|c|c|}
The it runs ok.

Does anyone know how to do this automatically?

Thanks,
Matt
-- 
Dr. M. Williams MRCP(UK)
Clinical Research Fellow
Cancer Research UK
+44 (0)207 269 2953
+44 (0)7384 899570



Outputting DVI

2005-03-29 Thread Matt Williams
Dear List,

My version of Lyx (1.3.5, 6th Oct, 2004) hangs when I try and export a
DVI file (or, in fact, anything that isn't PDF using pdflatex.


The preamble is:
\usepackage{pslatex}
\usepackage[pdftex]{hyperref}
\usepackage[pdftex]{graphicx}

Does anyone know why this is happening ?

Matt

-- 
Dr. M. Williams MRCP(UK)
Clinical Research Fellow
Cancer Research UK
+44 (0)207 269 2953
+44 (0)7384 899570



Re: lyx -> xml (mathml)

2005-03-14 Thread Matt Flax
Just found mzlatex. Part of the tex4ht package.

Hmmm... appears to work reasonably well too !

doesn't appear to support some fonts ... I am sure these fonts can be 
added later.

Matt

On Mon, Mar 14, 2005 at 11:34:48AM +, Jose' Matos wrote:
> On Monday 14 March 2005 09:59, Matt Flax wrote:
> > Hello,
> >
> > I was wondering however how would I create an xml (mathml) page from a
> > .lyx file ?
> 
>   You can not (yet) do that.
> 
>   Also mathml is only one part of the whole equation, usually mathml is 
> inserted inside xhtml.
> 
> > I can create an sgml file from the .lyx file by changing the document
> > type to 'SGML', but can't get further then that.
> 
>   As you can see some of the machinery is there but not all of it.
> 
> > thanks
> > Matt
> 
> -- 
> Jos? Ab?lio

-- 
http://www.flatmax.org

MFFM Bit Stream : 
http://sourceforge.net/projects/mffmbitstream/
Other Projects :
http://sourceforge.net/search/?type_of_search=soft&words=mffm



lyx -> xml (mathml)

2005-03-14 Thread Matt Flax
Hello,

I was wondering however how would I create an xml (mathml) page from a 
.lyx file ?

I can create an sgml file from the .lyx file by changing the document 
type to 'SGML', but can't get further then that.

thanks
Matt

-- 
http://www.flatmax.org

MFFM Bit Stream : 
http://sourceforge.net/projects/mffmbitstream/
Other Projects :
http://sourceforge.net/search/?type_of_search=soft&words=mffm



Re: Tips for entering symbols etc (was: math-mode, exponential e HOWTO)

2005-03-07 Thread Matt Flax
Thanks for the info, but when I try to use \mathbb{e} for example, I get 
an empty box ... no writing and it doesn't show up on the ps file ...
any packages I should use in my preamble ?

thanks
Matt

On Mon, Mar 07, 2005 at 01:28:02PM +0100, [EMAIL PROTECTED] wrote:
> On Mon, 7 Mar 2005, Paul Smith wrote:
> 
> > http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-a4.pdf
> 
> I put the link above on this wiki page,
> 
>   http://wiki.lyx.org/Tips/Symbols
> 
> which I just created for documenting how to enter various symbols into 
> LyX. People who know how to do that are welcome to add descriptions and 
> examples to that page. 
> 
> /Christian
> 
> -- 
> Christian Ridderstr?m, +46-8-768 39 44   http://www.md.kth.se/~chr
> 

-- 
http://www.flatmax.org

MFFM Bit Stream : 
http://sourceforge.net/projects/mffmbitstream/
Other Projects :
http://sourceforge.net/search/?type_of_search=soft&words=mffm



math-mode, exponential e HOWTO ?

2005-03-07 Thread Matt Flax
Hello,

I would like to replicate this 'e' font for representing the exponential 
symbol ... as displayed here :
http://documents.wolfram.com/MathematicaCharacters/ExponentialE.gif

Can anyone tell me how to do it ?

I have tried \exp in mathmode and also chosen 'exp' from the math panel, 
but I simply get 'exp' in my document.

thanks
Matt
-- 
http://www.flatmax.org

MFFM Bit Stream : 
http://sourceforge.net/projects/mffmbitstream/
Other Projects :
http://sourceforge.net/search/?type_of_search=soft&words=mffm



Re: Superscript Positioning

2005-03-02 Thread Matt Davies
Thanks Stephen,

True, unfortunately the subscripts don't appear to be distinct when
printed as the offset is too small. I was thinking that there might be
length(s) or measure(s) that could be reset within an environment?

Matt

On Wed, 2005-03-02 at 14:32 -0500, Stephen Buonopane wrote:
> >
> > I would like to clearly distinguish between two sets of superscript by
> > positioning them at successive heights/offsets from the baseline.
> >
> Math mode allows you to have multiple level superscripts, including 
> leaving a lower level blank. That might be a possible work around
> 
> Hope that helps,
> Steve
> 
-- 
Matt Davies <[EMAIL PROTECTED]>
ESSCC, www.esscc.uq.edu.au



Superscript Positioning

2005-03-01 Thread Matt Davies
Hi Guys,

I would like to clearly distinguish between two sets of superscript by
positioning them at successive heights/offsets from the baseline.

I wrote a macro for each superscript type for placement in the Lyx
preamble, but don't know how to change and then reset the offset in each
case!

Any suggestions or doc pointers appreciated. :-)

Matt
-- 
Matt Davies <[EMAIL PROTECTED]>
ESSCC, www.esscc.uq.edu.au



Re: Help with alignat ?

2005-02-22 Thread Matt
Hi Uwe,

Thanks for the great help.

I see the trick you used was to add an extra column rlrlrl ...?

Matt

 --- Uwe Stöhr <[EMAIL PROTECTED]> wrote: 
> Matt wrote:
> 
> > I want to use lyx to align an array of
> > equations of the form:
> > 
> > y1=d1 on x1=e1
> > y2=d2 on x2=e2
> > 
> > Here d* and e* are variable length expressions.
> > 
> > To do this I chose 5 fields with alignment rlcrl. No matter what I
> do,
> > I cannot get the last field to appear in dvi with a left alignment!
> I
> > am using lyx 1.3.5.
> 
> Use the align, Flalign or Alignat-environment. (create a formula and
> use 
> then the menu Edit->Math->Change Formula Type)
> 
> I attached an example using Alignat.
> 
> regards Uwe
> > #LyX 1.3 created this file. For more info see http://www.lyx.org/
> \lyxformat 221
> \textclass scrartcl
> \begin_preamble
> \usepackage[gennarrow]{eurosym}
> \usepackage{icomma}
> \usepackage{textcomp}
> \usepackage{soul}
> \usepackage{calc}
> \usepackage{array}
> \usepackage{multirow}
> 
> \renewcommand{\multirowsetup}{\centering}
> \setlength{\extrarowheight}{2pt}
> \newcolumntype{A}[1]
>  {>{\centering\hspace{0pt}}m{#1}}
> 
> \renewcommand{\underbar}[1]{\ul{#1}}
> 
> \setkomafont{captionlabel}{\bfseries}
> 
> \usepackage[colorlinks=true, urlcolor=blue,
> linkcolor=black, pdftitle={Titel},
> pdfauthor={Uwe Stöhr}, bookmarksnumbered=true,
> pdfnewwindow=true, pdfstartview=XYZ,
> pdfpagelayout=OneColumn,
> bookmarksopen]{hyperref}
> \usepackage[figure]{hypcap}
> 
> %Linkfläche für Querverweise vergrößern
> \AtBeginDocument{\renewcommand{\ref}[1]{\mbox{\autoref{#1
> \renewcommand{\figureautorefname}{Abb.\negthinspace}
> \renewcommand{\tableautorefname}{Tab.\negthinspace}
> \renewcommand{\sectionautorefname}{Kap.\negthinspace}
> \renewcommand{\subsectionautorefname}{Kap.\negthinspace}
> \renewcommand{\subsubsectionautorefname}{Kap.\negthinspace}
> \newlength{\abc}
> \settowidth{\abc}{\space}
> \renewcommand{\equationautorefname}{\hspace{-\abc}}
> 
> %Damit die Zeichen ° , · und × in LyX direkt eingegeben werden
> können.
> \DeclareInputText{176}{\ifmmode^\circ\else\textdegree\fi}
> \DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
> \DeclareInputText{215}{\ifmmode\times\else\texttimes\fi}
> 
> %setzt die Schwelle herauf, ab der Gleitumgebungen allein
> %auf einer Seite erscheinen
> \renewcommand{\floatpagefraction}{0.7}
> 
> %setzt die Schwelle herauf, ab der Gleitumgebungen unten
> %auf einer Seite erscheinen dürfen
> \renewcommand{\bottomfraction}{0.5}
> \end_preamble
> \options fleqn,tablecaptionabove
> \language ngerman
> \inputencoding auto
> \fontscheme ae
> \graphics default
> \paperfontsize 12
> \spacing single 
> \papersize a4paper
> \paperpackage a4
> \use_geometry 0
> \use_amsmath 1
> \use_natbib 0
> \use_numerical_citations 0
> \paperorientation portrait
> \secnumdepth 4
> \tocdepth 3
> \paragraph_separation skip
> \defskip medskip
> \quotes_language german
> \quotes_times 2
> \papercolumns 1
> \papersides 1
> \paperpagestyle empty
> \bullet 1
>   1
>   34
>   -1
> \end_bullet
> \bullet 2
>   2
>   35
>   -1
> \end_bullet
> \bullet 3
>   2
>   7
>   -1
> \end_bullet
> 
> \layout Standard
> 
> hello
> \begin_inset Formula \begin{alignat*}{3}
> y_{1}= & \: dd1 & \textrm{on} &  & x_{1}= & \: e1\\
> y_{2}= & \: d2 & \hspace{1cm}\textrm{on} & \hspace{1cm} & x_{2}= & \:
> ee2\end{alignat*}
> 
> \end_inset 
> 
> 
> \the_end
>  

Find local movie times and trailers on Yahoo! Movies.
http://au.movies.yahoo.com


Help with alignat ?

2005-02-22 Thread Matt
Hi Guys,

You guessed it: I need help. I want to use lyx to align an array of
equations of the form:

y1=d1 on x1=e1
y2=d2 on x2=e2

Here d* and e* are variable length expressions.

To do this I chose 5 fields with alignment rlcrl. No matter what I do,
I cannot get the last field to appear in dvi with a left alignment! I
am using lyx 1.3.5.

Let me know what I can do or provide to help me get to the bottom of
this!

Thanks for your time,

Matt

Find local movie times and trailers on Yahoo! Movies.
http://au.movies.yahoo.com


questions

2004-04-28 Thread Matt Zeidenberg

Hi,

I was using Lyx 1.2.1 and I was having a problem in which all my embedded 
references were cited as [?] instead of the number, e.g. [42]. I am using 
Bibtex and the references all appear correctly in the bibliography at the 
end of the document. 

I thought I would upgrade my version, so I downloaded qt (I was previously 
using Xforms) and compiled it; it said it installed correctly. Then I 
compiled 1.3.1 from the source RPM for the QT version (I'm running RedHat 
7.3) and it seemed to install OK. But when I try to run it it crashes and 
does a core dump. See below.

My X server is X-Win32 v. 6.0 on a PC.

Thanks in advance for any help you could render.

Natt Zeidenberg

[EMAIL PROTECTED] bdg]# lyx
Xlib:  extension "RENDER" missing on display 
"mzhome.ads.ssc.wisc.edu:0.0".

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.
Abort (core dumped)
[EMAIL PROTECTED] bdg]# lyx -version
LyX 1.3.1 of Tue, Mar 18 2003
Built on Mar 18 2003, 15:03:25
Configuration
  Host type:  i686-pc-linux-gnu
  Special build flags:   
  C   Compiler:   gcc
  C   Compiler flags: -g -O2
  C++ Compiler:   g++ (2.95.1)
  C++ Compiler flags: -O2 -fpermissive -ftemplate-depth-30
  Linker flags:   
  Frontend:   qt
Qt version:   2.3.0 
  LyX binary dir: /usr/bin
  LyX files dir:  /usr/share/lyx



bind buffer-previous alternative

2003-06-02 Thread Matt Flax
Hi,

I would like to bind shortcuts for buffer switch commands ...
can anyone tell me and buffer switching bindables ?

thanks
Matt


-- 
http://mffm.ee.unsw.edu.au

WSOLA TimeScale Audio Mod  : http://mffmtimescale.sourceforge.net/
FFTw C++   : http://mffmfftwrapper.sourceforge.net/
Vector Bass: http://mffmvectorbass.sourceforge.net/
Multimedia Time Code   : http://mffmtimecode.sourceforge.net/


Re: LyX scrolls too fast

2002-10-11 Thread Matt Brennan


On Thu, 10 Oct 2002, Paul Tremblay wrote:

> When I try to hi-lite text using a standard mouse, LyX scrolls too fast.
> For example, I have a paragraph at the bottom of the page. I want to
> hi-lite this paragrah, and the three below. I hi-lite the paragraph I
> can see, and then drag the mouse past the bottom of the window. But the
> text jumps so fast, I am 10 or 15 paragraphs down.
>

You can do all the highlighting/selection with the keyboard.   The exact
keystrokes depend on your keybindings.  Here is a snippet from my bind
file; using these commands, you could highlight 4 paragraphs with 4
keystrokes.

\bind "S-C-Up" "paragraph-up-select"
\bind "S-C-Down"   "paragraph-down-select"

If you are unfamiliar with using key bindings, see the LyX User's Guide
and Customization help.

> This seemingly small problem is quite big. Right now I can't hi-lite the
> text I want.

Yes, I agree this is an annoying problem.  Hopefully someone can enlighten
us as to how to fix it rather than work around it.

mb

-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-

 Environmental Fluid Mechanics Lab, Rm. 524K
 Civil & Environmental Engineering   ph#: 650/725.5948
 Stanford University [EMAIL PROTECTED]
 Stanford, CA 94305-4020 fluid.stanford.edu/~mbrennan






natbib vs. harvard BibTeX styles

2002-09-03 Thread Matt Brennan


Folks,

I've been using harvard BibTeX styles, particularly b/c I like the
implementation of the \citepossesive{Smit90}, e.g 'Smith's (1990) data
shows that ...'  However, I noticed that natbib is supported in LyX so I
thought I'd investigate that style package.  While natbib provides many
options, it looks like a possessive cite would have to involve two
commands:

\citeauthor{Smit90}'s \citeyearpar{Smit90} to get 'Smith's (1990)'

Does anyone know of a simpler way to do possessive cites in natbib?  Or is
there any move to incorporate harvard styles into LyX?  Because that
window which allows for searching one's .bib file within LyX is really
handy

Regards,

Matt


>>>>-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-<<<<

 Environmental Fluid Mechanics Lab, Rm. 524K
 Civil & Environmental Engineering   ph#: 650/725.5948
 Stanford University [EMAIL PROTECTED]
 Stanford, CA 94305-4020 fluid.stanford.edu/~mbrennan





Re: Appendix not working correctly

2002-08-14 Thread Matt Brennan


On Wed, 14 Aug 2002, Guenter Milde wrote:

> On Tue, 13 Aug 2002 23:20:02 +0200 wrote Max Bölhoff <[EMAIL PROTECTED]>:
>
> > Hi,
> > The last part of my current Lyx document is an Appendix. For this I
> > switched on the Appendix in the menu. The problem is that in the final
> > output file (Postscript)  “Appendix A” is shown correctly, but all the
> > following ones are displayed as “Chapter B”, “Chapter C” etc. instead of
> > “Appendix B”… This is both in the table of contents as well as in the
> > actual headlines.
> > Does anybody know a solution?
>
> Just guessing: What happens if you change the problematic Appendix headings
> from chapter to section (M-a 2 with German menu bindings).

LyX 1.2 produces correctly labeled Appendices for me when I'm using the
report document class, then insert the ERT '\appendix' after the last line
of the main document.  Then I set the Appendix headings to Chapter.

mb


-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-

 Environmental Fluid Mechanics Lab, Rm. 524K
 Civil & Environmental Engineering   ph#: 650/725.5948
 Stanford University [EMAIL PROTECTED]
 Stanford, CA 94305-4020 fluid.stanford.edu/~mbrennan





Re: first letter dropped in math.bind commands

2002-07-23 Thread Matt Brennan


On 23 Jul 2002, Jean-Marc Lasgouttes wrote:

> >> Still can't get the Greek letter to work either through M-m g
> >>  or by toggling Greek mode (M-m S-G). Any ideas for this
> >> one?
>
> Johan> Yes, if you look at the end of the default math.bind you see
> Johan> that in the 1.2 version each greek letter needs its own bind.
> Johan> It goes like:
>
> Johan> \bind "M-m g a" "math-insert \alpha" \bind "M-m g b"
> Johan> "math-insert \beta" \bind "M-m g c" "math-insert \chi"

I should have clarified.  I already have these lines in my local math.bind
When I type "M-m g a" when inside a math box, all I get is a regular
letter "a", not an alpha.  When I type this in normal text mode, I get a
blue math box and then the normal letter "a" preceding the math box even
though I typed the "a" last.

The capital Greeks (mis)behave similarly.

mb


-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-

 Environmental Fluid Mechanics Lab, Rm. 524K
 Civil & Environmental Engineering   ph#: 650/725.5948
 Stanford University [EMAIL PROTECTED]
 Stanford, CA 94305-4020 fluid.stanford.edu/~mbrennan






Re: How to apply styles with the keyboard?

2002-07-23 Thread Matt Brennan


The key bindings for the styles are located in menus.bind (in
/usr/share/lyx/bind on my machine)

mb


On Tue, 23 Jul 2002, Maurizio wrote:

> Hello,
>
>
> Is there a way to apply styles with the keyboard? Currently I am
> selecting the paragraph(s) and clicking with the mouse on the dropdown
> list on the upper-left.
> Is it possible to apply, say, an "enumerate" environment with the
> keyboard?
>
> And what about custom styles (I have just created a layout file which
> defines some paragraph styles)?
>
> Thank you very much!!!
>
>
> --
> Best regards,
>  Maurizio  mailto:[EMAIL PROTECTED]
>

-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-

 Environmental Fluid Mechanics Lab, Rm. 524K
 Civil & Environmental Engineering   ph#: 650/725.5948
 Stanford University [EMAIL PROTECTED]
 Stanford, CA 94305-4020 fluid.stanford.edu/~mbrennan





Re: first letter dropped in math.bind commands

2002-07-22 Thread Matt Brennan


On Tue, 23 Jul 2002, Johan Ingvast wrote:

> Hi
> I had the same problem when changing to 1.2, however I found that the reason
> is that the math.bind file format has changed
>
> > \bind "M-m r"   "math-insert root"
> > in math.bind yields a blue math box with the red letters "oot" inside
> > when Alt+m r is keyed.
>
> Use:
>
> \bind "M-m r"   "math-insert \root"
>
> instead. I guess the developers have changed format for this a bit more
> latex style.
> Have a look at the default math.bind and update your private.

Thanks, that cleared up the problem with the math symbols.

Still can't get the Greek letter to work either through M-m g  or
by toggling Greek mode (M-m S-G).  Any ideas for this one?




-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-

 Environmental Fluid Mechanics Lab, Rm. 524K
 Civil & Environmental Engineering   ph#: 650/725.5948
 Stanford University [EMAIL PROTECTED]
 Stanford, CA 94305-4020 fluid.stanford.edu/~mbrennan





Re: first letter dropped in math.bind commands

2002-07-22 Thread Matt Brennan


One more thing...

A few of the commands in the math.bind file work correctly, e.g.

\bind "M-m m"   "math-mode"
\bind "M-m d"   "math-display"
\bind "M-m ~S-parenleft""math-delim ( )"
\bind "M-m ~S-bracketleft"  "math-delim [ ]"
\bind "M-m ~S-braceleft""math-delim { }"
\bind "M-m ~S-less" "math-delim langle rangle"
\bind "M-m ~S-greater"  "math-delim rangle langle"
\bind "M-m ~S-bar"  "math-delim | |"

mb


>>>>-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-<<<<

 Environmental Fluid Mechanics Lab, Rm. 524K
 Civil & Environmental Engineering   ph#: 650/725.5948
 Stanford University [EMAIL PROTECTED]
 Stanford, CA 94305-4020 fluid.stanford.edu/~mbrennan


-- Forwarded message --
Date: Mon, 22 Jul 2002 14:01:09 -0700 (PDT)
From: Matt Brennan <[EMAIL PROTECTED]>
To: LyX Users <[EMAIL PROTECTED]>
Subject: first letter dropped in math.bind commands


Folks,

After switching to v. 1.2, the math.bind is behaving funny.  When I try to
use a key binding to insert a math symbol, the first letter of the command
is ignored.  For instance,

The line
\bind "M-m r"   "math-insert root"
in math.bind yields a blue math box with the red letters "oot" inside
when Alt+m r is keyed.

But
\bind "M-m r"   "math-insert rroot" (notice the double
r at the beginning of 'root') correctly produces the square root symbol.

So it seems that the first letter of the command is being ignored.  The
command "math-insert rrroot" yields 'rroot' in a math box.

At least there is an obvious, but clumsy workaround for this problem.  I
can't get other commands in the bind file to work at all.  For instance,
\bind "M-m g"  "math-greek" only causes "M-m g" to appear in the bottom
command window, but subsequent characters are not in Greek.

Any ideas?

Thanks,

Matt

>>>>-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-<<<<

 Environmental Fluid Mechanics Lab, Rm. 524K
 Civil & Environmental Engineering   ph#: 650/725.5948
 Stanford University [EMAIL PROTECTED]
 Stanford, CA 94305-4020 fluid.stanford.edu/~mbrennan






first letter dropped in math.bind commands

2002-07-22 Thread Matt Brennan


Folks,

After switching to v. 1.2, the math.bind is behaving funny.  When I try to
use a key binding to insert a math symbol, the first letter of the command
is ignored.  For instance,

The line
\bind "M-m r"   "math-insert root"
in math.bind yields a blue math box with the red letters "oot" inside
when Alt+m r is keyed.

But
\bind "M-m r"   "math-insert rroot" (notice the double
r at the beginning of 'root') correctly produces the square root symbol.

So it seems that the first letter of the command is being ignored.  The
command "math-insert rrroot" yields 'rroot' in a math box.

At least there is an obvious, but clumsy workaround for this problem.  I
can't get other commands in the bind file to work at all.  For instance,
\bind "M-m g"  "math-greek" only causes "M-m g" to appear in the bottom
command window, but subsequent characters are not in Greek.

Any ideas?

Thanks,

Matt

>>>>-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-<<<<

 Environmental Fluid Mechanics Lab, Rm. 524K
 Civil & Environmental Engineering   ph#: 650/725.5948
 Stanford University [EMAIL PROTECTED]
 Stanford, CA 94305-4020 fluid.stanford.edu/~mbrennan





Re: Melt all floats?

2002-07-01 Thread Matt Brennan


On Fri, 28 Jun 2002, Dekel Tsur wrote:

> On Thu, Jun 27, 2002 at 09:50:45AM -0700, Matt Brennan wrote:
> >
> > Folks,
> >
> > In v. 1.1 I was able to melt all the floats to make the images disappear.
> > This is nice option when you don't want to wait for all the images to
> > render or just want to focus on text.  I can't seem to find a similar menu
> > option in v. 1.2.  Has anybody else?
>
> This feature was removed.

Unfortunate, particularly since the time to load images has increased
since previous version.  Or perhaps at 450 MHz my computer is just getting
left behind...

>

>>>>-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-<<<<

 Environmental Fluid Mechanics Lab, Rm. 524K
 Civil & Environmental Engineering   ph#: 650/725.5948
 Stanford University [EMAIL PROTECTED]
 Stanford, CA 94305-4020 fluid.stanford.edu/~mbrennan





Re: Lyx 1.2 figure "Error converting to loadable format"

2002-07-01 Thread Matt Brennan


On Fri, 28 Jun 2002, Joao Cardoso wrote:

> On Mon, 17 Jun 2002 21:03:07 +0100, Matt Brennan wrote:
>
>
> > Jean-Marc's suggestion to run Edit->Reconfigure has cleared up my
> > problem with viewing images as well as including all image file
> > extensions into the graphic file browser popup.
>
> Well, not for me... I can see .png and .gif, but not .eps or .ps.

Hmm.  No ideas about this problem.

> Where
> the figure should appear appears instead "Error loading file into memory".
>

This is a different error message than I was receiving.  However, the
memory issue suggests to me that there might be something wrong with your
temp directory.  This is where LyX stores the images it converts to its
native format.  You can set this directory in
Edit->Preferences->Inputs->Paths.  Be sure that you have permission to
write in the temp directory and that the device holding the temp directory
is not full.

>The file contains ps format data.
>No conversion needed!
>Loading image.
>xforms image loader. Status : Converting PS ...
>xforms image loader. Status : Loading PostScript
>xforms image loader. Error : LoadPS: no page written!
>Image loading failed.
>xforms image loader. Status : Error Reading

Conversion looks ok, but page isn't written, suggesting access problems to
temp directory

>
> I have already seen this error in another post, but without a response.
> I'm using xforms-0.89, could this be the problem?
>

I'm using xforms-0.88 and that works fine.  I've seen other postings with
0.89 who have no problems.

mb


> Joao
>
>
> >
> > mb
> >
> > On Wed, 12 Jun 2002, Matt Brennan wrote:
> >
> >
> >> A stumble in upgrading to Lyx 1.2.0:
> >>
> >> Figures are not rendered within LyX.  Instead, I merely get a message
> >> "Error converting to loadable format".
> >>
> >> Runnign 'lyx -dbg graphics' and then opening the LyX User's Guide and
> >> then scrolling to the section on figures yields:
> >>
> >> Attempting to convert image file: /usr/share/lyx/doc/mobius.eps with
> >> recognised extension: eps.
> >> Scanstring: %!PS-Adobe-3.0 EPSF-3.0
> >> Recognised Fileformat: eps
> >> Scanstring: %!PS-Adobe-3.0 EPSF-3.0
> >> Recognised Fileformat: eps
> >> The file contains eps format data.
> >> update:: no BoundingBox
> >> Scanstring: %!PS-Adobe-3.0 EPSF-3.0
> >> Recognised Fileformat: eps
> >> Scanstring: %!PS-Adobe-3.0 EPSF-3.0
> >> Recognised Fileformat: eps
> >> Scanstring: %!PS-Adobe-3.0 EPSF-3.0
> >> Recognised Fileformat: eps
> >> Attempting to convert image file: /usr/share/lyx/doc/escher-lsd.eps
> >> with recognised extension: eps.
> >> Scanstring: %!PS-Adobe-3.0 EPSF-3.0
> >> Recognised Fileformat: eps
> >> Scanstring: %!PS-Adobe-3.0 EPSF-3.0
> >> Recognised Fileformat: eps
> >> The file contains eps format data.
> >>
> >> I'm running RH 7.2, ImageMagik 5.3.8, and xforms 0.88.1-1
> >>
> >> I'll echo Rudolph Pienaar that the "Fullscreen preview" button on the
> >> figure popup is a feature from v. 1.1 that I will miss in 1.2.
> >>
> >> Thanks,
> >>
> >> Matt
> >>
> >> (I apologize for not continuing the thread "images in pre-1.2.0 LyX
> >> docs" which begins to address this problem.  I'm new to the user list
> >> and couldn't figure out how to perpetuate a thread to a message I
> >> hadn't received.)
> >>
> >>
> >> >>>-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-<<<
> >>
> >>  Environmental Fluid Mechanics Lab - Suite 524K Dept. of Civil &
> >>  Environmental Engineering Stanford University [EMAIL PROTECTED]
> >>  Stanford, CA 94305-4020 ph#: 650/725.5948
> >>
> >>
> >>>>-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-<<<
> >
> >  Environmental Fluid Mechanics Lab - Suite 524K Dept. of Civil &
> >  Environmental Engineering Stanford University [EMAIL PROTECTED]
> >  Stanford, CA 94305-4020  ph#: 650/725.5948
>
>

>>>>-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-<<<<

 Environmental Fluid Mechanics Lab, Rm. 524K
 Civil & Environmental Engineering   ph#: 650/725.5948
 Stanford University [EMAIL PROTECTED]
 Stanford, CA 94305-4020 fluid.stanford.edu/~mbrennan





Automate Edit->Reconfigure

2002-06-27 Thread Matt Brennan


Seems like several of us have missed the directions to run
Edit->Reconfigure when upgrading to v. 1.2.  Perhaps this could be part of
the .rpm install script

mb


-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-

 Environmental Fluid Mechanics Lab, Rm. 524K
 Civil & Environmental Engineering   ph#: 650/725.5948
 Stanford University [EMAIL PROTECTED]
 Stanford, CA 94305-4020 fluid.stanford.edu/~mbrennan





Melt all floats?

2002-06-27 Thread Matt Brennan


Folks,

In v. 1.1 I was able to melt all the floats to make the images disappear.
This is nice option when you don't want to wait for all the images to
render or just want to focus on text.  I can't seem to find a similar menu
option in v. 1.2.  Has anybody else?

mb

-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-

 Environmental Fluid Mechanics Lab, Rm. 524K
 Civil & Environmental Engineering   ph#: 650/725.5948
 Stanford University [EMAIL PROTECTED]
 Stanford, CA 94305-4020 fluid.stanford.edu/~mbrennan





Re: What is IMHO much better in 1.1.6 fix 4 than in 1.2.0

2002-06-27 Thread Matt Brennan


On Tue, 18 Jun 2002, Heiko [iso-8859-15] Schröder wrote:
>
> e.) 1.1.6 fix 4: EPS is supported very well.
> 1.2.0: The filter *.eps  is missing when you want to insert an image (not very
> important)

Try running Edit->Reconfigure from the pull down menus.

mb


-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-

 Environmental Fluid Mechanics Lab, Rm. 524K
 Civil & Environmental Engineering   ph#: 650/725.5948
 Stanford University [EMAIL PROTECTED]
 Stanford, CA 94305-4020 fluid.stanford.edu/~mbrennan





Re: upgrade to 1.2.0 broke lyx rendering?

2002-06-27 Thread Matt Brennan


Trying running Edit->Reconfigure from the pull down menus.

mb

On Thu, 27 Jun
2002, Praedor Tempus wrote:

> I just (re) upgraded to lyx-1.2.0 from 1.1.6pre-, started it and
> opened my thesis document I've been working on.  Under 1.1.6 my eps figures
> and tables were rendered fine after upgrading my ImageMagick to
> ImageMagick-5.4.2.3-3mdk.  Now, in 1.2.0, only two of the eps figures render
> while the rest give me "error converting to loadable format".  Huh?  It is
> eps generated by using eps2eps to make certain it was latex and lyx friendly.
> What has changed in lyx to do this?  Is there something else that needs to be
> upgraded too to get rendering working again?
>
> praedor
>

-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-

 Environmental Fluid Mechanics Lab, Rm. 524K
 Civil & Environmental Engineering   ph#: 650/725.5948
 Stanford University [EMAIL PROTECTED]
 Stanford, CA 94305-4020 fluid.stanford.edu/~mbrennan





Create a new file with "File open"

2002-06-21 Thread Matt Brennan


As I recal, in v.1.1, you were able to create a new file by typing its
name in the File->Open... popup.  Now in v. 1.2 this is no longer
possible.  Hopefully, it should be easy to carry this feature forward to
v.1.2.1

mb



-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-

 Environmental Fluid Mechanics Lab, Rm. 524K
 Civil & Environmental Engineering   ph#: 650/725.5948
 Stanford University [EMAIL PROTECTED]
 Stanford, CA 94305-4020 fluid.stanford.edu/~mbrennan





Re: 1.2 - Can't paste with middle mouse button

2002-06-14 Thread Matt Brennan


John,

Ah, the embarassment.  Now pasting w/highlighting and the middle mouse
button works fine.  Not sure what I'm doing differently than before (or
perhaps I was only dreaming before.)

Thanks,

Matt

On Thu, 13 Jun 2002, John Levon wrote:

> On Thu, Jun 13, 2002 at 11:02:54AM -0700, Matt Brennan wrote:
>
> > No, I'm using sawfish-1.0.1-9.
>
> Under gnome ?
>
> Does it run any clipboard-type thing too ? Have you tried disabling it ?
>
> What xforms version are you using ?
>
> What application are you pasting from ? If they all fail, give examples.
>
> If you start "fdesign" and go to Form->New form, can you paste into
> there ?
>
> regards
> john
>
>
> --
> "All is change; all yields its place and goes"
>   - Euripides
>

>>>-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-<<<

 Environmental Fluid Mechanics Lab - Suite 524K
 Dept. of Civil & Environmental Engineering
 Stanford University  [EMAIL PROTECTED]
 Stanford, CA 94305-4020  ph#: 650/725.5948




Re: 1.2 - Can't paste with middle mouse button

2002-06-13 Thread Matt Brennan


> > In v. 1.1, I used to be able to highlight text in a non-LyX window and
> > then paste it into LyX with a middle mouse button click.  However, in
> > v.1.2 I can no longer do this.  Any ideas how to return this
> > functionality?
>
> Works fine for me. Are you using KDE by any chance ?
>

No, I'm using sawfish-1.0.1-9.

mb

>>>-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-<<<

 Environmental Fluid Mechanics Lab - Suite 524K
 Dept. of Civil & Environmental Engineering
 Stanford University  [EMAIL PROTECTED]
 Stanford, CA 94305-4020  ph#: 650/725.5948




1.2 - Can't paste with middle mouse button

2002-06-13 Thread Matt Brennan


In v. 1.1, I used to be able to highlight text in a non-LyX window and
then paste it into LyX with a middle mouse button click.  However, in
v.1.2 I can no longer do this.  Any ideas how to return this
functionality?

Thanks,

Matt

>>>-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-<<<

 Environmental Fluid Mechanics Lab - Suite 524K
 Dept. of Civil & Environmental Engineering
 Stanford University  [EMAIL PROTECTED]
 Stanford, CA 94305-4020  ph#: 650/725.5948




Re: why does it need libstdc++-libc6.1-2.so.3

2002-06-12 Thread Matt Brennan


Addelkader,

I had a similar porblem.  I just created a soft link which points to the
more recent version, i.e. as root

ln -s /usr/lib/libstdc++-3-libc6.2-2-2.10.0.so
/usr/lib/libstdc++-libc6.1-2.so.3

The first file name should be whatever libstdc++ you have installed.

Then when I ran rpm to install with the --nodeps option so that rpm
wouldn't check the RPM database.

mb


On Wed, 12 Jun 2002, belahcene abdelkader wrote:

> hi,
>
> I 've installed the lyx 1.1.6 without problem in
> redhat 7.2.
> When I tryed to install the  lyx-1.2.0-1.i386.rpm  the
> following  message is outed
> libstdc++-libc6.1-2.so.3
>
> This library refers to and older version of redhat (
> 6.x). I tried to install this library , but there is
> incompatibility with other lib which are newer!!!
> How to fix the problem.
>
> thanks a lot
> abdelkader
>
> =
>
>
> __
> Do You Yahoo!?
> Yahoo! - Official partner of 2002 FIFA World Cup
> http://fifaworldcup.yahoo.com
>

>>>-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-<<<

 Environmental Fluid Mechanics Lab - Suite 524K
 Dept. of Civil & Environmental Engineering
 Stanford University  [EMAIL PROTECTED]
 Stanford, CA 94305-4020  ph#: 650/725.5948




Lyx 1.2 figure "Error converting to loadable format"

2002-06-12 Thread Matt Brennan


A stumble in upgrading to Lyx 1.2.0:

Figures are not rendered within LyX.  Instead, I merely get a message
"Error converting to loadable format".

Runnign 'lyx -dbg graphics' and then opening the LyX User's Guide and then
scrolling to the section on figures yields:

Attempting to convert image file: /usr/share/lyx/doc/mobius.eps
with recognised extension: eps.
Scanstring: %!PS-Adobe-3.0 EPSF-3.0
Recognised Fileformat: eps
Scanstring: %!PS-Adobe-3.0 EPSF-3.0
Recognised Fileformat: eps
The file contains eps format data.
update:: no BoundingBox
Scanstring: %!PS-Adobe-3.0 EPSF-3.0
Recognised Fileformat: eps
Scanstring: %!PS-Adobe-3.0 EPSF-3.0
Recognised Fileformat: eps
Scanstring: %!PS-Adobe-3.0 EPSF-3.0
Recognised Fileformat: eps
Attempting to convert image file: /usr/share/lyx/doc/escher-lsd.eps
with recognised extension: eps.
Scanstring: %!PS-Adobe-3.0 EPSF-3.0
Recognised Fileformat: eps
Scanstring: %!PS-Adobe-3.0 EPSF-3.0
Recognised Fileformat: eps
The file contains eps format data.

I'm running RH 7.2, ImageMagik 5.3.8, and xforms 0.88.1-1

I'll echo Rudolph Pienaar that the "Fullscreen preview" button on the
figure popup is a feature from v. 1.1 that I will miss in 1.2.

Thanks,

Matt

(I apologize for not continuing the thread "images in pre-1.2.0 LyX
docs" which begins to address this problem.  I'm new to the user list and
couldn't figure out how to perpetuate a thread to a message I hadn't
received.)


>>>-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-*-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@-<<<

 Environmental Fluid Mechanics Lab - Suite 524K
 Dept. of Civil & Environmental Engineering
 Stanford University  [EMAIL PROTECTED]
 Stanford, CA 94305-4020  ph#: 650/725.5948




bibtex bibliography in TOC

2002-03-10 Thread Matt Zeidenberg


Hi,

How do I insert a reference to a Bibtex bibliography in the 
Table of Contents of a report. I tried using an \addcontentsline
command (with the proper arguments) right before the icon for
the Bibtex generated references, but that inserted a reference
in the table of contents with a page number which was the last
page of the final chapter.

Thanks.
Matt Zeidenberg
University of Wisconsin







question

2002-02-26 Thread Matt Zeidenberg


Hi,

I don't like where Lyx is doing the line breaks in some of my 
section headings in a report I'm writing. I have a section called
"The Term Vector Model of Document Similarity" and it is breaking
the line right after the "Sim" in Similarity and hyphenating there.

I can break it after "Model" using a TeX "//", which works fine, and
looks good in the text, but the trouble is, this then breaks up
the entry in my Table of Contents into 2 lines, which doesn't
look good. I want the Table of Contents entry to stay on one line
while the text version is on two. Is this possible?

Thanks. 





Re: question

2001-12-03 Thread Matt Zeidenberg


A short example file is attached. Note that the tables jump from
1.2 to 1.4 and that the title on the top of the page runs right
into the page number.

Thanks for looking into this. And thanks for the pointers on page
numbers.

On Mon, 3 Dec 2001, Herbert Voss wrote:

> Matt Zeidenberg wrote:
> 
> > Hi,
> > 
> > I have been using Lyx to write a long document (my CS PhD thesis)
> > for some time now and really love it. Thanks much to all who
> > worked on Lyx's development.
> > 
> > I'm using Lyx 1.1.6fix3 on RedHat Linux 7.1.
> > 
> > I have a few questions/problems.
> > 
> > In my document, I have a point at which the tables start 
> > spontaneously numbering by 2 instead of one (i.e. table 12,
> > table 14, table 16). Up to that point, they were numbering
> > by increments of one. I have tried deleting the table floats
> > and reinserting them and that didn't help. If I change the 
> > document format to "book" from article and change all the 
> > sections to chapters, it numbers the tables by chapter
> > but it still skips (in this case from 5.2 to 5.4 (formerly
> > 12 and 14)). (However the former 16 is now 6.1 and is OK).
> 
> 
> 
> can you give a short example file?
> 
> > Also, is there any way to get page numbers to appear centered
> > in the bottom middle of the page? And to get it to skip 
> > page numbering on blank pages (skip both assigning a number
> > and printing it, when in book format?)
> 
> 
> http://www.lyx.org/help/fancy/header.html#fancy_1
> http://www.lyx.org/help/page/page.html#pagenumbers
> 
> 
> > 
> > And I notice that long chapter titles, when printed at the top 
> > of the page, tend to run into the page number if if is also
> > printed at the top, creating an ugly effect. This occurs in
> > chapter 4 of the User's Guide for Lyx, e.g. on page 70
> > of the version I have. Is there any thing to do about this,
> > other than shortening the chapter titles?
> 
> 
> also: an example file
> 
> 
> HErbert
> 
> 
> 
> -- 
> http://www.lyx.org/help/
> 



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

\layout Chapter


\begin_inset LatexCommand \label{relevancewiscpolicy}

\end_inset 

Using Feedback to Find Better Results and to Improve Spidering Performance
\layout Standard

In the information retrieval literature, relevance is usually thought of
 as a boolean value-- either the result is relevant, or it isn't.
 In the classic studies of relevance feedback, a set of results to a query
 are presented to the user, and the user marks some of these as relevant
 or non-relevant.
 Terms drawn from those documents tagged as relevant are used to refine
 the query.
 This has been shown to improve the precision of retrieval (that is, the
 percentage of documents returned that are relevant).
\layout Standard

Precision and recall are useful concepts when you have a fixed number of
 documents that fit into any category.
 In that case, as is conventional in the literature, precision is defined
 as a the percentage of the retrieved documents that fall into the desired
 category (that is, are relevant to a particular information need, as defined
 by the user or a predefined expert assignment), and recall is defined as
 the percentage of the relevant documents that have been retrieved.
 In the Web context, where the number of documents in any particular category
 tends to grow monotonically over time, achieving high precision (so as
 to have a low signal-to-noise ratio for the user) and finding a large number
 of highly relevant documents, and ranking them well, is more important
 than having high overall recall, since most users won't be able to process
 any but the most highly relevant documents.
 Thus precision usually becomes more important than recall, since there
 is usually a flood of information on any topic, more than any one person
 can process.
\layout Standard

In the interest of discovering what features contribute to high levels of
 precision and high mean relevance of returned documents, I conducted the
 following experiment.
 I used a set of 500 manually-selected documents, all on public policy topics
 related to Wisconsin, 100 each on the following topics: Wisconsin Economy,
 Wisconsin Education, Wisc

question

2001-12-02 Thread Matt Zeidenberg


Hi,

I have been using Lyx to write a long document (my CS PhD thesis)
for some time now and really love it. Thanks much to all who
worked on Lyx's development.

I'm using Lyx 1.1.6fix3 on RedHat Linux 7.1.

I have a few questions/problems.

In my document, I have a point at which the tables start 
spontaneously numbering by 2 instead of one (i.e. table 12,
table 14, table 16). Up to that point, they were numbering
by increments of one. I have tried deleting the table floats
and reinserting them and that didn't help. If I change the 
document format to "book" from article and change all the 
sections to chapters, it numbers the tables by chapter
but it still skips (in this case from 5.2 to 5.4 (formerly
12 and 14)). (However the former 16 is now 6.1 and is OK).

Does anyone know why this could be happening? There is no
table intervening between the two that could be causing the
skip. 

Also, is there any way to get page numbers to appear centered
in the bottom middle of the page? And to get it to skip 
page numbering on blank pages (skip both assigning a number
and printing it, when in book format?)

And I notice that long chapter titles, when printed at the top 
of the page, tend to run into the page number if if is also
printed at the top, creating an ugly effect. This occurs in
chapter 4 of the User's Guide for Lyx, e.g. on page 70
of the version I have. Is there any thing to do about this,
other than shortening the chapter titles?

Thanks,
Matt Zeidenberg
University of Wisconsin





Re: lyx.org domain fee

2001-04-22 Thread Matt Bandy


May I also recommend that the project register a domain name with the
OpenNIC project. OpenNIC is an alternative DNS root server. They operate a
.oss TLD for open source software projects. Registration is free.
The webmaster (or someone) just needs to join OpenNIC (a simple matter of
filling out a form) and email the .oss maintainer. 

Next thing we know, all OpenNIC users will be able to resolve lyx.oss!

More information on OpenNIC can be found at their web site.

http://www.opennic.unrated.net

Just a suggestion. 

Matt

E is for Emily, whom snakes sprayed with venom
F is for Fiona, who prayed in Gehennom...
   -- in rec.games.roguelike.nethack

On Fri, 20 Apr 2001, Garst R. Reese wrote:

> Lars Gullik Bjønnes wrote:
> > 
> > The lyx.org domain is up for renewal, and I am going to be so bold
> > that I ask is some faithful user will be willing to sponsor the LyX
> > project with this.
> > 
> > The fee covers two years and is 70$ US.
> > 
> > If someone steps forward, I will send the information needed to that
> > individual.
> > 
> > Tia,
> > 
> > --
> > Lgb
> I can handle that.
> Garst
> 




tables and fonts

2001-02-07 Thread Matt Norton

Hello all.  I have a quick question about the sizes of my characters in a table
I'm working on.  I have created this rather large table, and would now like to
set the font size to 'smaller' in order to make it fit on to my page.  In my
older version of lyx (1.1.5), I could simply select the table, and then choose
Layout->Character->Size->Smaller, hit apply and I was done.  This no longer
seems to be something easily done in lyx 1.1.6.

I guess my question is, do I really have to go into every cell of the table,
select the text and then set the font size to smaller?  That seems rather
difficult.

Matt Norton




Quick newbie question

2001-01-24 Thread Matt Norton

Hello everyone.

I've just upgraded to v. 1.1.6, and am now getting a sort of strange error. 
I'm working on a simple text file with a table, and when I try
View-->Postscript, or PDF, I get the following error:

!Latex Error: Something's wrong -- perhaps a missing \item.
See the LaTeX manual .

I.116 \end
{tabular}\par}
Try typing  to proceed.

etc., etc.  Now, I don't know a whole hell of a lot about LaTeX, but it strikes
me as strange that this error pops up in the middle of a paragraph of text, and
not next to a table.  Even weirder, I could export the file as latex, and then
run latex, and subsequently dvi and dvipdf.

Is this something intrinsic to 1.1.6?  Have I made a rookie mistake?  Have I
totally misunderstood (wouldn't be the first time).

Matt



Re: Suitable vector graphics program?

2001-01-04 Thread Matt Bandy

On Thu, 4 Jan 2001, James Sinnamon wrote:
>
> I feel as if I am at my wit's end trying to find a vector drwaing
> program which allow me to create drawings which I can export as eps
> files for
> inclusion in a LyX document.  I may have no alternative, but to use
> xfig, but it seems
> very unwieldy and it seems to take me forever to draw anything.
>

I use sketch. It rocks. I normally use the postscript printer driver to
export a ps snapshot, then include that in the LyX doc as a figure ps.
This works fine. 

If you really need eps, you can convert from ps using ps2epsi, convert or
somesuch.

Matt

E is for Emily, whom snakes sprayed with venom
F is for Fiona, who prayed in Gehennom...
   -- in rec.games.roguelike.nethack




Re: LyX for gnuplot?

2000-11-24 Thread Matt Bandy

A fellow from Mexico has written a Tcl/Tk front-end called unignuplot. 

http://unicalculus.sourcefiorge.net

This is the only thing like this of which I am aware.

Matt

On Sat, 25 Nov 2000, Matej Cepl wrote:

> Hi,
> 
> I am doing some graphs to my paper and I am using gnuplot.
> However, I feel lilke working with plainTeX -- results are
> excellent but user-interface terrible. I feel strong need of
> some "LyX for gnuplot" -- superstructure allowing WYSIWYM work
> with gnuplot. Do you know about something like it?
> 
> Matej
> 




Request for feature...

2000-10-19 Thread Matt Bandy


Hi everyone. I discovered LyX about 2 months ago, and I love it. I'm
writing my dissertation with it now, and it's wonderful. 

I would like to suggest a modification, however. At the moment, Lyx
requires a display even for export to LaTeX. This means that if I am
connected over a slow link I can't export another version of my document
for download or emailing, which is a minor annoyance. In particular, I
have a script that exports a version of the document to many
formats (dvi, html, ps, pdf, txt), and I would like to put this on a
nightly cron job, so my current draft will be avialable to the faculty at
all times, in a variety of formats. But the display requirement means I
can't export the initial .tex file that I need for the script unless I am
actually logged in. (running on Linux, heavily-modified RH 6.0)

If anyone has a suggestion, please let me know. Otherwise, this is simply
a request. A polite one, I hope. I find LyX extrmemely useful, and very
well-designed. Many thanks to all responsible.

Matt Bandy
http://inti.devnull.net





Re: foils

1999-10-19 Thread Matt Flax

Nice one !
It worked.

On 18 Oct 1999, Jean-Marc Lasgouttes wrote:

> >>>>> "Matt" == Matt Flax <[EMAIL PROTECTED]> writes:
> 
> Matt> Hi, I have just compiled and installed the LyXC version 1.0.4.
> Matt> It works fine.
> 
> Matt> I can't seem to find a foils lyx template. When I try to view
> Matt> the LyX Foils.lyx example I get many errors like : LyX: Unknown
> Matt> textclass `foils' [around line 4 of file
> Matt> /usr/local/lyx-1.0.4/share/lyx/examples/Foils.lyx] on the
> Matt> command line.
> 
> Matt> I find that foils is installed in :
> Matt> /usr/lib/texmf/tex/latex/foiltex
> 
> Matt> and a sample foiltex tex file can actually be processed properly
> Matt> by latex !
> 
> Matt> any suggestions ?
> 
> Does menu option Options->reconfigure help?
> 
> JMarc
> 

till later
Matt



foils

1999-10-18 Thread Matt Flax

Hi,

I have just compiled and installed the LyXC version 1.0.4.
It works fine.

I can't seem to find a foils lyx template.
When I try to view the LyX Foils.lyx example I get many errors like :
LyX: Unknown textclass `foils' [around line 4 of file 
/usr/local/lyx-1.0.4/share/lyx/examples/Foils.lyx]
on the command line.

I find that foils is installed in :
/usr/lib/texmf/tex/latex/foiltex

and a sample foiltex tex file can actually be processed properly by latex
!

any suggestions ?

till later
Matt