Re: A question about the macOS warning message

2022-01-04 Thread Daniel via lyx-users

On 2022-01-04 16:00, R. H. van der Gaag via lyx-users wrote:

Launching LyX on macOS 12.1 (Monterey) causes a warning to appear, saying that 
in future OS versions, the application will no longer run, and that it should 
be updated. Is anyone working on this? I tried to find indications that this 
was so on the website, but to no avail. My dissertation is in LyX, and it would 
be a problem is updating my Mac’s system software would disrupt the work.

Thanks in advance for any help/advice.


Just a general advise (independent of using LyX): Minor OS updates 
(12.1, 12.2, etc.) should be no problem. But it might be a good idea to 
hold of on major OS update when some important deadline is coming up. 
Major versions are much more likely to be disruptive.


Daniel


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


Re: A question about the macOS warning message

2022-01-04 Thread Jean-Marc Lasgouttes via lyx-users

Le 04/01/2022 à 16:00, R. H. van der Gaag via lyx-users a écrit :

Launching LyX on macOS 12.1 (Monterey) causes a warning to appear, saying that 
in future OS versions, the application will no longer run, and that it should 
be updated. Is anyone working on this? I tried to find indications that this 
was so on the website, but to no avail. My dissertation is in LyX, and it would 
be a problem is updating my Mac’s system software would disrupt the work.

Thanks in advance for any help/advice.


Hello, we (not me actually) are working on it currently. This a question 
of having python3 versus python2 available.


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


A question about the macOS warning message

2022-01-04 Thread R. H. van der Gaag via lyx-users
Launching LyX on macOS 12.1 (Monterey) causes a warning to appear, saying that 
in future OS versions, the application will no longer run, and that it should 
be updated. Is anyone working on this? I tried to find indications that this 
was so on the website, but to no avail. My dissertation is in LyX, and it would 
be a problem is updating my Mac’s system software would disrupt the work.

Thanks in advance for any help/advice.
-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


Re: A Question about LyX layout files (with a MWE)

2019-03-07 Thread Baris Erkus
On 07-Mar-19 11:20 AM, Baris Erkus wrote:

Hello,

I would like to write a LyX layout file for a LaTeX class file that I wrote. My 
LaTeX class uses standard "article" class. The problem is my custom 
environments are not converted to the corresponding LaTeX code by LyX. Below is 
a MWE:

My Class file (myclassBE.cls) is as follows:

\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{myclassBE, article}[2019/03/01 Test LaTeX Class]

\LoadClass[12pt, a4paper]{article}

\newenvironment{keywords}{{\bfseries KEYWORDS:} }{\vspace{1em}}

As can be seen, I have defined a custom environment: keywords. I have installed 
this file to my LaTeX system (Win10, MikTeX) successfully and tested with a 
very simple LaTeX file.

My layout file (myclassBE.layout) is:

#% Do not delete the line below; configure depends on this
#  \DeclareLaTeXClass[myclassBE]{My Test Class BE}
#  \DeclareCategory{Articles}

Format 66
Input stdclass.inc
Input numarticle.inc

# Input general definitions
Input article.layout

Style KeywordsBE
MarginDynamic
Category  FrontMatter
LabelString   "KEYWORDS: "
LabelType Static
LatexType Enviroment
LatexName keywords
LabelFont
  Series  Bold
  Sizenormalsize
  Color   green
EndFont
End

LyX recognizes the new layout and the new "KeywordsBE" environment successfully:

[cid:part1.66A506FB.6702A0D5@hotmail.com]

But it does not generate the LaTeX code for the keywords environment:

% Preview source code

%% LyX 2.3.1-1 created this file. For more info, see http://www.lyx.org/.

%% Do not edit unless you really know what you are doing.

\documentclass[english]{myclassBE}

\usepackage[T1]{fontenc}

\usepackage[latin9]{inputenc}

\usepackage{babel}

\begin{document}

Keyword1, Keyword2

\end{document}

Which should have used the following:

\begin{keywords}
Keyword1, Keyword2
\end{keywords}

What am I missing?

BE

--
↓↓
Please bottom-post. Start your reply here:

Answering my own question:

Missing "n" in the "LatexType Enviroment". Should have been  Environment. Also 
class definition should have been: ProvidesClass{myclassBE}.

--
↓↓
Please bottom-post. Start your reply here:


A Question about LyX layout files (with a MWE)

2019-03-07 Thread Baris Erkus
Hello,

I would like to write a LyX layout file for a LaTeX class file that I wrote. My 
LaTeX class uses standard "article" class. The problem is my custom 
environments are not converted to the corresponding LaTeX code by LyX. Below is 
a MWE:

My Class file (myclassBE.cls) is as follows:

\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{myclassBE, article}[2019/03/01 Test LaTeX Class]

\LoadClass[12pt, a4paper]{article}

\newenvironment{keywords}{{\bfseries KEYWORDS:} }{\vspace{1em}}

As can be seen, I have defined a custom environment: keywords. I have installed 
this file to my LaTeX system (Win10, MikTeX) successfully and tested with a 
very simple LaTeX file.

My layout file (myclassBE.layout) is:

#% Do not delete the line below; configure depends on this
#  \DeclareLaTeXClass[myclassBE]{My Test Class BE}
#  \DeclareCategory{Articles}

Format 66
Input stdclass.inc
Input numarticle.inc

# Input general definitions
Input article.layout

Style KeywordsBE
MarginDynamic
Category  FrontMatter
LabelString   "KEYWORDS: "
LabelType Static
LatexType Enviroment
LatexName keywords
LabelFont
  Series  Bold
  Sizenormalsize
  Color   green
EndFont
End

LyX recognizes the new layout and the new "KeywordsBE" environment successfully:

[cid:part1.73630636.D0998ABE@hotmail.com]

But it does not generate the LaTeX code for the keywords environment:

% Preview source code

%% LyX 2.3.1-1 created this file. For more info, see http://www.lyx.org/.

%% Do not edit unless you really know what you are doing.

\documentclass[english]{myclassBE}

\usepackage[T1]{fontenc}

\usepackage[latin9]{inputenc}

\usepackage{babel}

\begin{document}

Keyword1, Keyword2

\end{document}

Which should have used the following:

\begin{keywords}
Keyword1, Keyword2
\end{keywords}

What am I missing?

BE

--
↓↓
Please bottom-post. Start your reply here:


test-myclassBE.lyx
Description: test-myclassBE.lyx
#% Do not delete the line below; configure depends on this  
#  \DeclareLaTeXClass[myclassBE]{My Test Class BE}
#  \DeclareCategory{Articles}

Format 66
Input stdclass.inc
Input numarticle.inc

# Input general definitions
Input article.layout

Style KeywordsBE
MarginDynamic
Category  FrontMatter
LabelString   "KEYWORDS: "
LabelType Static
LatexType Enviroment
LatexName keywords
LabelFont
  Series  Bold
  Sizenormalsize
  Color   green
EndFont
End%% LyX 2.3.1-1 created this file.  For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[english]{myclassBE}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\begin{document}
Keyword1, Keyword2
\end{document}
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{myclassBE, article}[2019/03/01 Test LaTeX Class]

\LoadClass[12pt, a4paper]{article}

\newenvironment{keywords}{{\bfseries KEYWORDS:} }{\vspace{1em}}

Re: A question on Lyx

2014-04-14 Thread Richard Heck

On 04/14/2014 10:24 AM, Norbert Böhm wrote:

Am 14.04.2014 16:09, schrieb Richard Heck:

On 04/14/2014 08:45 AM, Norbert Böhm wrote:

Hello!


I want to set a graphic over the holy DIN A4- side.

But Lyx sets it only on the Top- and Sidemargins,

so the Grafic comes to small or wandering out.

Please, have you a good tip for me?


It would probably be best if you could post a *small* example
file showing what you want to do and how you are trying to do it.

Richard




Hello Richard, thank you for the fast answer.


Since 6 years I write ab large book with 800 sites - now on Lyx.

Of cause I did set the sites-, top- & bottom- margins.

Wenn I input a Graphic, this margins render the visuable field now.

I´m not a Latex - specialist, it means, I try out the possibilities of

Lyx: Graphicinput, as Slideobject, click on the Graphic, scale it...

but I can´t make it visible behind the borders of the margins.

I have jpg - Graphics, which should rich over the hole A4 - site.

May I shoult use a Latex - or Tex- command?


So you want the graphic to cover the entire page, and not to be restricted
to the margins? If so, then I am no graphics expert, but a quick look at
Google suggests centering the graphic. Then it will not start at the left
margin. If you want it to start above the top margin, though, that will not
help. I am not sure how to do that.

Richard

PS Please keep replies on the list. That way other people can help as well.



Re: A question on Lyx

2014-04-14 Thread Richard Heck

On 04/14/2014 08:45 AM, Norbert Böhm wrote:




Hello!


I want to set a graphic over the holy DIN A4- side.

But Lyx sets it only on the Top- and Sidemargins,

so the Grafic comes to small or wandering out.

Please, have you a good tip for me?


It would probably be best if you could post a *small* example
file showing what you want to do and how you are trying to do it.

Richard



A question on Lyx

2014-04-14 Thread Norbert Böhm




Hello!


I want to set a graphic over the holy DIN A4- side.

But Lyx sets it only on the Top- and Sidemargins,

so the Grafic comes to small or wandering out.

Please, have you a good tip for me?


Best Greetings, Norbert



Re: A question about SAS output in lyx

2013-09-04 Thread Zhan Joyce
Thank you very much. I look through roughly and find it very helpful!

Joyce
在 2013-9-5,上午1:34,Jacob Bishop  写道:

> On Mon, Sep 2, 2013 at 10:36 PM, Zhan Joyce  wrote:
> Dear all:
> 
> I've a problem inserting the SAS output into my lyx file. I use ODS system in 
> SAS and get a tex file. Then I try to use the program listing to add it into 
> lys file but failed. What should I do with it? Thank you very much. I'm so 
> frustrated with this problem for googling one day!
>  
> As Liviu was trying to point out, the file you sent uses LaTeX commands that 
> have not been defined. I think you need to get the sas style file, which SAS 
> should give you. You can either put this in the same place as your .lyx file 
> or install sas.sty as a package, and reconfigure LyX. Then, you will need to 
> put \usepackage{sas} in your preamble, and maybe also \usepackage{longtable}. 
> Then, you should be able to include the .tex file in your LyX document. For 
> more information, see the sas webpage: 
> http://support.sas.com/rnd/base/ods/odsmarkup/latex.html  Also, I ran across 
> a document that gives some pretty detailed instructions. It was evidently 
> written by a fellow named Carl Schwarz. See: 
> http://people.stat.sfu.ca/~cschwarz/Stat-650/Notes/PDF/ChapterSASTricks.pdf
> 
> That should hopefully be enough to get you going.
> 
> Jacob



Re: A question about SAS output in lyx

2013-09-04 Thread Jacob Bishop
On Mon, Sep 2, 2013 at 10:36 PM, Zhan Joyce  wrote:

> Dear all:
>
> I've a problem inserting the SAS output into my lyx file. I use ODS system
> in SAS and get a tex file. Then I try to use the program listing to add it
> into lys file but failed. What should I do with it? Thank you very much.
> I'm so frustrated with this problem for googling one day!
>

As Liviu was trying to point out, the file you sent uses LaTeX commands
that have not been defined. I think you need to get the sas style file,
which SAS should give you. You can either put this in the same place as
your .lyx file or install sas.sty as a package, and reconfigure LyX. Then,
you will need to put \usepackage{sas} in your preamble, and maybe also
\usepackage{longtable}. Then, you should be able to include the .tex file
in your LyX document. For more information, see the sas webpage:
http://support.sas.com/rnd/base/ods/odsmarkup/latex.html  Also, I ran
across a document that gives some pretty detailed instructions. It was
evidently written by a fellow named Carl Schwarz. See:
http://people.stat.sfu.ca/~cschwarz/Stat-650/Notes/PDF/ChapterSASTricks.pdf

That should hopefully be enough to get you going.

Jacob


Re: A question about SAS output in lyx

2013-09-03 Thread Liviu Andronic
On Wed, Sep 4, 2013 at 4:25 AM, Zhan Joyce  wrote:
> Dear all:
>
> I've a problem inserting the SAS output into my lyx file. I use ODS system in 
> SAS and get a tex file. Then I try to use the program listing to add it into 
> lyx file but failed.
>
Others will give you better advice, but at the very least you need to
define the sascontents command and the sastable environment in your
document's preamble. Check the SAS documentation on how to do that.

Liviu


> What should I do with it? Here I add the tex file from SAS output. Thank you 
> very much for the help. I'm so frustrated with this problem for googling two 
> days!
>
>
> Joyce
>
>
> 在 2013-9-3,下午4:41,Liviu Andronic  写道:
>
>> Dear Joyce,
>> Please use 'Reply all' to send the message to the list.
>>
>> Liviu
>>
>> On Tue, Sep 3, 2013 at 7:35 PM, Zhan Joyce  wrote:
>>> Sure. Here it is. Thank you very much for help~
>>>
>>>
>>> Joyce
>>>
>>>
>>>
>>> 在 2013-9-3,上午2:00,Liviu Andronic  写道:
>>>
 Dear Zhan,


 On Tue, Sep 3, 2013 at 6:36 AM, Zhan Joyce  wrote:
> Dear all:
>
> I've a problem inserting the SAS output into my lyx file. I use ODS 
> system in SAS and get a tex file.
>
 It would help if you sent us a minimal example of such a .tex file.

 Liviu


> Then I try to use the program listing to add it into lys file but failed. 
> What should I do with it? Thank you very much. I'm so frustrated with 
> this problem for googling one day!
>
>
> Joyce



 --
 Do you know how to read?
 http://www.alienetworks.com/srtest.cfm
 http://goodies.xfce.org/projects/applications/xfce4-dict#speed-reader
 Do you know how to write?
 http://garbl.home.comcast.net/~garbl/stylemanual/e.htm#e-mail
>>>
>>>
>>
>>
>>
>> --
>> Do you know how to read?
>> http://www.alienetworks.com/srtest.cfm
>> http://goodies.xfce.org/projects/applications/xfce4-dict#speed-reader
>> Do you know how to write?
>> http://garbl.home.comcast.net/~garbl/stylemanual/e.htm#e-mail
>
>



-- 
Do you know how to read?
http://www.alienetworks.com/srtest.cfm
http://goodies.xfce.org/projects/applications/xfce4-dict#speed-reader
Do you know how to write?
http://garbl.home.comcast.net/~garbl/stylemanual/e.htm#e-mail


A question about SAS output in lyx

2013-09-03 Thread Zhan Joyce
Dear all:

I've a problem inserting the SAS output into my lyx file. I use ODS system in 
SAS and get a tex file. Then I try to use the program listing to add it into 
lyx file but failed. What should I do with it? Here I add the tex file from SAS 
output. Thank you very much for the help. I'm so frustrated with this problem 
for googling two days!


Joyce


output-to-LaTeX-fragment02.tex
Description: Binary data

在 2013-9-3,下午4:41,Liviu Andronic  写道:

> Dear Joyce,
> Please use 'Reply all' to send the message to the list.
> 
> Liviu
> 
> On Tue, Sep 3, 2013 at 7:35 PM, Zhan Joyce  wrote:
>> Sure. Here it is. Thank you very much for help~
>> 
>> 
>> Joyce
>> 
>> 
>> 
>> 在 2013-9-3,上午2:00,Liviu Andronic  写道:
>> 
>>> Dear Zhan,
>>> 
>>> 
>>> On Tue, Sep 3, 2013 at 6:36 AM, Zhan Joyce  wrote:
 Dear all:
 
 I've a problem inserting the SAS output into my lyx file. I use ODS system 
 in SAS and get a tex file.
 
>>> It would help if you sent us a minimal example of such a .tex file.
>>> 
>>> Liviu
>>> 
>>> 
 Then I try to use the program listing to add it into lys file but failed. 
 What should I do with it? Thank you very much. I'm so frustrated with this 
 problem for googling one day!
 
 
 Joyce
>>> 
>>> 
>>> 
>>> --
>>> Do you know how to read?
>>> http://www.alienetworks.com/srtest.cfm
>>> http://goodies.xfce.org/projects/applications/xfce4-dict#speed-reader
>>> Do you know how to write?
>>> http://garbl.home.comcast.net/~garbl/stylemanual/e.htm#e-mail
>> 
>> 
> 
> 
> 
> -- 
> Do you know how to read?
> http://www.alienetworks.com/srtest.cfm
> http://goodies.xfce.org/projects/applications/xfce4-dict#speed-reader
> Do you know how to write?
> http://garbl.home.comcast.net/~garbl/stylemanual/e.htm#e-mail



Re: A question about SAS output in lyx

2013-09-03 Thread Guenter Milde
On 2013-09-03, Liviu Andronic wrote:
> Dear Zhan,


> On Tue, Sep 3, 2013 at 6:36 AM, Zhan Joyce  wrote:
>> Dear all:

>> I've a problem inserting the SAS output into my lyx file. I use ODS
>> system in SAS and get a tex file.

>> Then I try to use the program listing to add it into lys file but
>> failed. 

This is the way to go, if you want to show the TeX source. However, I
suppose you want it to be compiled and "pretty printed".

>> What should I do with it? 

This depends on the actual file:

The SAS/ODS system should have documentation on what usually to do with the
files (include in a LaTeX source file, convert as standalone file, ...).
Depending on this, the correct method to use it with LyX differs.

> It would help if you sent us a minimal example of such a .tex file.

Günter



Re: A question about SAS output in lyx

2013-09-02 Thread Liviu Andronic
Dear Zhan,


On Tue, Sep 3, 2013 at 6:36 AM, Zhan Joyce  wrote:
> Dear all:
>
> I've a problem inserting the SAS output into my lyx file. I use ODS system in 
> SAS and get a tex file.
>
It would help if you sent us a minimal example of such a .tex file.

Liviu


> Then I try to use the program listing to add it into lys file but failed. 
> What should I do with it? Thank you very much. I'm so frustrated with this 
> problem for googling one day!
>
>
> Joyce



-- 
Do you know how to read?
http://www.alienetworks.com/srtest.cfm
http://goodies.xfce.org/projects/applications/xfce4-dict#speed-reader
Do you know how to write?
http://garbl.home.comcast.net/~garbl/stylemanual/e.htm#e-mail


A question about SAS output in lyx

2013-09-02 Thread Zhan Joyce
Dear all:

I've a problem inserting the SAS output into my lyx file. I use ODS system in 
SAS and get a tex file. Then I try to use the program listing to add it into 
lys file but failed. What should I do with it? Thank you very much. I'm so 
frustrated with this problem for googling one day!


Joyce

Re: Creating a new module (for Sage) : a question

2011-10-30 Thread PhilipPirrip

On 10/30/2011 10:37 PM, Murat Yildizoglu wrote:

In order to be able to write in the lyx document [angle=0,
width=10cm]plot(sin(x), 0, pi), axes=True
and select the sageplot command from the top dropbox of styles, to
convert it to the latex command above.



Right click on the line containing the paragraph style, choose "Insert 
short title" and watch what happens in View->View Source.

Unfortunatelly, no other way of doing this for now.



Creating a new module (for Sage) : a question

2011-10-30 Thread Murat Yildizoglu
Hi,

I am trying to write a new module that would allow to introduce me Sage
instructions, like for a Sweave document.
I have read the customization guide but I have a problem in the
implementation of a command.

In a latex document using the sagetex package, one can write

\sageplot[angle=0, width=10cm]{plot(sin(x), 0, pi), axes=True}

to have a plot generated by Sage and inserted in the pdf.

I have written the following definition in my module:


Style sageplot
LatexType Command
 LatexName sageplot
OptionalArgs  1
FreeSpacing   1
 PassThru  1
Spellcheck  0
 TextFont
  Color   latex
  Family  Typewriter
 EndFont
End

In order to be able to write in the lyx document [angle=0,
width=10cm]plot(sin(x), 0, pi), axes=True
and select the sageplot command from the top dropbox of styles, to convert
it to the latex command above.

I am definitely missing something here, since that does not work...

How could I write and environment that accepts options given in the LyX
file. Is this possible at all?

Except this problem, I have now a setup that allows me to put Sage commands
in a lyx file and compile the final PDF including the results of these
commands.

FYI: Sage is a very powerful open source mathematics environment (it pools
together many available open source tools for mathematics).
http://www.sagemath.org/

Once I have a fully working (and tested) setup, I could share it with you
if you are interested by this solution.

Regards,

Murat

-- 
Prof. Murat Yildizoglu

Université Montesquieu Bordeaux IV
GREThA (UMR CNRS 5113)
Avenue Léon Duguit
33608 Pessac cedex
France

yi...@u-bordeaux4.fr

http://yildizoglu.info

http://www.twitter.com/yildizoglu


Re: A Question regarding "fonts"

2010-01-11 Thread Siegfried Meunier-Guttin-Cluzel
In this case, I use the listings package (Insert > Listings). There are 
two possibilities : inline or separated.
The main advantage for me is the syntax highlighting and a lot of other 
possibilities (frames, captions ...).

There's a very good documentation.

Hope it helps.

Siegfried.


Re: A Question regarding "fonts"

2010-01-03 Thread Manveru
2010/1/1 Liviu Andronic :
> Hello
>
> On 1/1/10, Kamran Hameed  wrote:
>> Folks i just started to use Lyx a couple of days before. I am writing a
>>  manual for a software. There are certain lines of "code" for which i want to
>>  set the font as "Courier". Now i went to Document->Settings but i couldnt do
>>
> In Documents > Settings > Fonts set Typewriter to Courier.

I suggest that using proper environment for that, rather than
formatting characters manually. I do not remember its english name
now.

-- 
Manveru
jabber: manv...@manveru.pl
 gg: 1624001
   http://www.manveru.pl


Re: A Question regarding "fonts"

2010-01-01 Thread Liviu Andronic
Hello

On 1/1/10, Kamran Hameed  wrote:
> Folks i just started to use Lyx a couple of days before. I am writing a
>  manual for a software. There are certain lines of "code" for which i want to
>  set the font as "Courier". Now i went to Document->Settings but i couldnt do
>
In Documents > Settings > Fonts set Typewriter to Courier.


>  any thing useful. Then i tried "LyX Code" from its drop down. It works fine
>  but the problem is that when i want to set LyX code for only one line or one
>  word, it sets it for the whole paragraph and alots of lines..
>
Write a paragraph in Standard environment, then select the line or
word of code, click the "ab" (Text style) toolbar button, and set
Family to Typewriter. Now your code bit should be Courier, while the
rest of the paragraph will use the standard font (presumably Roman).
Then you can use "select code > c-menu > Apply last text style" to
apply the same formatting to other bits of code.
Liviu


A Question regarding "fonts"

2009-12-31 Thread Kamran Hameed
Folks i just started to use Lyx a couple of days before. I am writing a
manual for a software. There are certain lines of "code" for which i want to
set the font as "Courier". Now i went to Document->Settings but i couldnt do
any thing useful. Then i tried "LyX Code" from its drop down. It works fine
but the problem is that when i want to set LyX code for only one line or one
word, it sets it for the whole paragraph and alots of lines..

Is there any work around?

-- 
Kamran Hameed

hpc.seecs.edu.pk/~kamran


a question about the import function under Lyx 1.6.4.1 -- a further remark

2009-10-24 Thread Gyorgy SZEIDL

Dear list members and developers,

I have completely removed Lyx 1.6.4.1 from my laptop this afternoon.

Then I installed the older version Lyx 1.6.3.

A reminder: my operating system is Windows XP with Service Pack 3.
I have been using MiKTeX 2.8 with WinEdt for about two months.
My Miktex installation is complete.

Problems
(a) During installation the standard installer did not realize
again that Miktex 2.8 had already been installed: I was promoted
to give the path to the

c:\Program Files\MiKTeX 2.8\miktex\bin

library.

(b) After installation I made an attempt importing some standard LaTeX
documents created by WinEdt. In this case everything worked fine, i.e., 
I could import all the LaTeX files I had been unable to import under

Lyx 1.6.4.1. There arises again the question: what is the problem with
Lyx 1.6.4.1.

If there is no problem with version 1.6.4.1 what have i done wrong
earlier?

Any remark or help is highly appreciated.

Sincerely yours
G. Szeidl



--
I am using the free version of SPAMfighter.
We are a community of 6 million users fighting spam.
SPAMfighter has removed 103 of my spam emails to date.
Get the free SPAMfighter here: http://www.spamfighter.com/len

The Professional version does not have this message


a question about the import function under Lyx 1.6.4.1

2009-10-24 Thread Gyorgy SZEIDL

Dear list members,

I have completely removed lyx 1.6.1 from my laptop this morning.

Then I downloaded the standard windows installer for
Lyx 1.6.4.1

By the way, my operating system is Windows XP with Service Pack 3.
I have been using MiKTeX 2.8 with WinEdt for about two months.
My Miktex installation is complete.

Problems
(a) During installation it was a surprise to me that the standard installer
did not realize that Miktex 2.8 had already been installed: I was promoted
to give the path to the

c:\Program Files\MiKTeX 2.8\miktex\bin

library.

(b) After installation I made an attempt importing some standard LaTeX
documents created by WinEdt. In each case I received an error message:

Tex2lyx.exe has encountered a problem and needs to close. 
We are sorry for the inconvenience.


What have i done wrong?

Remark 1. I was able to import these files as plain latex files under 
lyx1.6.1.
Remark 2. If  I create a new Lyx document and export it as a plane Latex 
document
and then I delete the corresponding Lyx document I am always able to 
import the

file exported earlier as a plain latex file.

Any remark or help is highly appreciated.

Sincerely yours
G. Szeidl

--
--
Dr. habil. Gyorgy SZEIDL
Full Professor
Department of Mechanics
University of Miskolc
3515 Miskolc-Egyetmeváros
Hungary
E-mail: gyorgy.sze...@uni-miskolc.hu
Phone (office): +36 46 565 111 ext. 18-92
http://www.mech.uni-miskolc.hu/staff/lecturers/G_Szeidl.html
--

--
I am using the free version of SPAMfighter.
We are a community of 6 million users fighting spam.
SPAMfighter has removed 103 of my spam emails to date.
Get the free SPAMfighter here: http://www.spamfighter.com/len

The Professional version does not have this message



Re: A question

2009-04-18 Thread Anders Host-Madsen
There is also the enumitem package/module:

wiki.lyx.org/Tips/Enumitem







Re: A question

2009-04-17 Thread Steve Litt
On Friday 17 April 2009 11:36:30 pm Adrian Diaz wrote:
> Friends of Lyx
>
> i am writting my thesis and several times i have to set up some
> list. Lyx by default has the option by point or number, but i would like
> to use symbols or letter and only in certains points of my thesis.
>
> any advice?
>
> Greetings Adrián

Hi Adrián,

I'll bet there's a package to do that on CTAN (www.ctan.org).

Also, see this article:

http://www.troubleshooters.com/linux/lyx/ownlists.htm

The referenced article tells how to to it in LaTeX. To use a special list 
environment with LyX, you need to tell the LyX environment code to use a 
LatexType of Item_Environment instead of Environment. See Help->Customization 
document, especially the section titled "Specific Paragraph Layouts"

If you're writing a thesis, I'd suggest you subscribe to the LyX list. All the 
LyX geniuses are there.

HTH

SteveT

Steve Litt
Recession Relief Package
http://www.recession-relief.US
Twitter: http://www.twitter.com/stevelitt



A question

2009-04-17 Thread Adrian Diaz
Friends of Lyx

i am writting my thesis and several times i have to set up some
list. Lyx by default has the option by point or number, but i would like
to use symbols or letter and only in certains points of my thesis.

any advice?

Greetings Adrián


Re: A question

2009-03-26 Thread John Culleton
On Thursday 26 March 2009 04:22:55 pm Adrian Diaz wrote:
> Friends
>
> When i write in the lyx editor my thesis i write the
> words without any problem.
> Sometimes, when i see my thesis in pdf format some words
> appear separated by a short line: for example
>
> in the lyx edito: thanks
> in pdf format: tha-
> nks
>
> do you known how i can manage?
>
> __
> D O T E A S Y - "Join the web hosting revolution!"
>  http://www.doteasy.com
Lyx is not a pure text editor but rather a front end to the 
TeX (LaTeX) typesetting program.

Take a look at any book by a major publisher. The text will 
be in a block, with even margins and the left and the 
right. TeX of any form will do this automatically unless 
you say otherwise. To achieve this even margin effect 
without wide gaps between words some words at the ends of 
lines will need to be hyphenated. I assume that is what you 
are seeing. 

There are commands to control this. If you want a ragged 
right margin insert at the top of the document:
\raggedright
You can still have some hyphenation occurences so the 
command to prevent that  is
\hyphenpenalty 1

The default setting is 
\hyphenpenalty 50

I would consult with your advisor as to what format is 
preferred, and whether hyphenation should be discouraged or 
eliminated altogether. 




-- 
John Culleton
Able Indexers and Typesetters
http://wexfordpress.com


Re: A question

2009-03-26 Thread Rich Shepard

On Thu, 26 Mar 2009, Adrian Diaz wrote:


Sometimes, when i see my thesis in pdf format some words appear separated
by a short line: for example

in the lyx edito: thanks
   in pdf format: tha-
   nks


Adrian,

  That's called hyphenation and is used by TeX to fill the line. If a
single-syllable word (such as 'thanks') is incorrectly hyphenated the most
effective solution is to re-write the sentence (perhaps only altering word
order) so the line break comes elsewhere.

  If you see the hyphenation on a multi-syllabic word, but it's in the wrong
place, you can add a suggestion to TeX where the word can correctly be
broken.

Rich

--
Richard B. Shepard, Ph.D.   |  IntegrityCredibility
Applied Ecosystem Services, Inc.|Innovation
 Voice: 503-667-4517  Fax: 503-667-8863


A question

2009-03-26 Thread Adrian Diaz
Friends

When i write in the lyx editor my thesis i write the words without any
problem.
Sometimes, when i see my thesis in pdf format some words appear separated by
a short line: for example

in the lyx edito: thanks
in pdf format: tha-
nks

do you known how i can manage?


Re: Literature references end in a question mark some of the time.

2009-02-13 Thread Uwe Stöhr

Niko Schwarz schrieb:


Ok, one strange thing that has happened to me a little bit too often lately
was that when quoting some literature, instead of a reference like [1]
(using natbib), i only get a question mark, like [? ].


This happens when BibTeX is not able to load the citation from your BibTeX file.
This is the case when you have loaded the wrong BibTeX file in your LyX document or more probable, 
when the code in the BibTeX file is wrong.


To check the latter, have a look in LyX's menu Document-> LaTeX Log after you compiled your 
document. There you'll then see error messages about missing or wrong BibTeX entries.
The classic error in this field is that you used a Unicode-only character in your BibTeX file like a 
long "—" instead of a "-". The reason is that BibTeX was developed before Unicode and that 
everything you write in your BibTeX file must be valid LaTeX.


When you still don't find the problem, then you can send me a _small_ example 
LyX and BibTeX file.

regards Uwe


Literature references end in a question mark some of the time.

2009-02-13 Thread Niko Schwarz
Ok, one strange thing that has happened to me a little bit too often lately
was that when quoting some literature, instead of a reference like [1]
(using natbib), i only get a question mark, like [? ].
This is really strange and I don't know why it happens. Deleting the
reference and recreating it sometimes helps. Other times, it is helpful to
change the quote to quote 2 things at the same time, which then usually
works. I feel more like a computer-mythologist.

I thought that JabRef together with Lyx would make it nearly impossible to
get the quotes wrong. What is happening? What information should I provide
so you will know what is happening?

Niko


Thanks a lot!! it worked!! (A question regarding List of figures)

2009-02-03 Thread Carina Gaviglio
Thanks a lot to Vincent, Yago and the lyx-users list!!!

It worked to insert the following in the Preamble:

\addto\captionsspanish{\renewcommand{\listtablename}{\'Indice de tablas}}

Thanks again!!
Regards!!!
Carina

PS: I am not in the Lyx-users list.

> -Original Message-
> From: Yago [mailto:diazd...@ono.com]
> Sent: dinsdag 3 februari 2009 0:37
> To: lyx-users@lists.lyx.org
> Subject: Re: A question regarding List of figures
>
> If you are using the package babel, insert this in the preamble:
>
> \addto\captionsspanish{\renewcommand{\listfigurename}{\'Indice de
> Figuras}}
>
> That works for spanish babel option. You can change the aspect of the
> title. For example: {\bfseries\rm\Huge{\'Indice de Figuras}}. And so on.
> - Original Message -
> From: "Carina Gaviglio" 
> To: 
> Sent: Monday, February 02, 2009 11:36 PM
> Subject: A question regarding List of figures
>
>
>> Hello,
>> I have a question.
>>
>> I am writting a thesis in spanish (Argentinien spanish) in Lyx, the
>> document class is BOOK. And I have inserted a List of figures.
>>
>> But I have a problem with the translation into spanish of: List of
>> figures, Lyx translates as Indice de cuadros, but is not the right
>> translation.
>>
>> And I do not  know what I shoul write in the Preamble in order to get
>> Indice de figuras as the right traslation.
>>
>> I hope someone could advise me.
>>
>> Thanks!!
>> Carina
>>
>>
>>
>>
>> __ Information from ESET NOD32 Antivirus, version of virus
> signature database 3819 (20090202) __
>>
>> The message was checked by ESET NOD32 Antivirus.
>>
>> http://www.eset.com
>>
>>
>>
>




Re: A question regarding List of figures

2009-02-02 Thread Yago
If you are using the package babel, insert this in the preamble:

\addto\captionsspanish{\renewcommand{\listfigurename}{\'Indice de Figuras}}

That works for spanish babel option. You can change the aspect of the title. 
For example: {\bfseries\rm\Huge{\'Indice de Figuras}}. And so on.
- Original Message - 
From: "Carina Gaviglio" 
To: 
Sent: Monday, February 02, 2009 11:36 PM
Subject: A question regarding List of figures


> Hello,
> I have a question.
> 
> I am writting a thesis in spanish (Argentinien spanish) in Lyx, the
> document class is BOOK. And I have inserted a List of figures.
> 
> But I have a problem with the translation into spanish of: List of
> figures, Lyx translates as Indice de cuadros, but is not the right
> translation.
> 
> And I do not  know what I shoul write in the Preamble in order to get
> Indice de figuras as the right traslation.
> 
> I hope someone could advise me.
> 
> Thanks!!
> Carina
> 
> 
> 
> 
> __ Information from ESET NOD32 Antivirus, version of virus signature 
> database 3819 (20090202) __
> 
> The message was checked by ESET NOD32 Antivirus.
> 
> http://www.eset.com
> 
> 
>

Re: A question regarding List of figures

2009-02-02 Thread Vincent van Ravesteijn

Carina Gaviglio schreef:

Hello,
I have a question.

I am writting a thesis in spanish (Argentinien spanish) in Lyx, the
document class is BOOK. And I have inserted a List of figures.

But I have a problem with the translation into spanish of: List of
figures, Lyx translates as Indice de cuadros, but is not the right
translation.

And I do not  know what I shoul write in the Preamble in order to get
Indice de figuras as the right traslation.

I hope someone could advise me.

Thanks!!
Carina

  
You have to put "\renewcommand\listfigurename{Indice de figuras}" in the 
preamble.


However, if you also use babel, this won't work because babel is loaded 
after the user preamble and thus the \listfigurename is reset.


To solve this, you could add an ERT right in front of the "List of 
Figures", with the command I gave above.


Vincent




A question regarding List of figures

2009-02-02 Thread Carina Gaviglio
Hello,
I have a question.

I am writting a thesis in spanish (Argentinien spanish) in Lyx, the
document class is BOOK. And I have inserted a List of figures.

But I have a problem with the translation into spanish of: List of
figures, Lyx translates as Indice de cuadros, but is not the right
translation.

And I do not  know what I shoul write in the Preamble in order to get
Indice de figuras as the right traslation.

I hope someone could advise me.

Thanks!!
Carina





Re: A question

2009-01-05 Thread rgheck

Adrian Diaz wrote:

Dear friends


I am making a bibliography via JabRef 2.4.2 to prepare via BibTex. JabRef
does not show any problem
when i list the bibliography ordered by year, author etc, but when i want to
reproduce the same
order ( year, name etc) in lyx does not show the order given by me, i mean
when i get
the pdf the order is not the same.
When i get the pdf always is generated the list of bibliography following a
list ordered by:
[1] author 1, [2] author 4..etc. I mean teh order is given via [1], [2],
[3],  etc

Could you give me some advices?

  
Sounds like you're using numerical citations, and in that case you do 
get the ordering by number. If you want something else, you might try 
author-year citations: Document>Settings>Bibliography will let you 
control that.


rh



A question

2009-01-05 Thread Adrian Diaz
Dear friends


I am making a bibliography via JabRef 2.4.2 to prepare via BibTex. JabRef
does not show any problem
when i list the bibliography ordered by year, author etc, but when i want to
reproduce the same
order ( year, name etc) in lyx does not show the order given by me, i mean
when i get
the pdf the order is not the same.
When i get the pdf always is generated the list of bibliography following a
list ordered by:
[1] author 1, [2] author 4..etc. I mean teh order is given via [1], [2],
[3],  etc

Could you give me some advices?

 Best
Adrián


Re: A question on latex/bibtex

2007-09-21 Thread Bennett Helm

On Sep 21, 2007, at 9:40 AM, Nicolás wrote:


Hi!

I have just read a paper containing an interesting feature. Each  
citation in the bibliography section contains a list of links to the
pages where such citation appears. For example, if citation [1]  
appears in pages 5 and 7, in the bibliography section we have:


[1] Me and you, "The book of our lives", in Kindly Publication,  
2007 5 7


Does someone know how to achieve that?


Use hyperref, specifying "pagebackref" as an option.

E.g., include in your preamble: \usepackage[pagebackref]{hyperref}

For the hyperref manual, see:




Bennett

A question on latex/bibtex

2007-09-21 Thread Nicolás

Hi!

I have just read a paper containing an interesting feature. Each citation in 
the bibliography section contains a list of links to the
pages where such citation appears. For example, if citation [1] appears in 
pages 5 and 7, in the bibliography section we have:

[1] Me and you, "The book of our lives", in Kindly Publication, 2007 5 7

Does someone know how to achieve that?

Thanks,
Nicolás





Re: Like to ask a question

2007-09-15 Thread Abdelrazak Younes

Andy Turner wrote:

Recently moved to Ubuntu, which I much prefer to windows. However, I'm
having trouble finding a suitable word processor.

My problem is that I need 'intelligent' outlining. Ie. 


header a
child b
child b
child c
child c
child b
header a 


I'd like to be able to then fold in by level so I can choose to see only
header a's plus child b's, with child c's hidden or only header's and
then be able to unfold in same way. I find it a good way to write /
study. 


There's an outline panel in LyX-1.5 that will allow you to 
collapse/expand nodes as you like; not in the main work area though. But 
I think this is not really necessary... Try it!


Abdel.



Re: Like to ask a question (outliner)

2007-09-15 Thread Alan G Isaac
http://www.vimoutliner.org/




Like to ask a question

2007-09-15 Thread Andy Turner
Recently moved to Ubuntu, which I much prefer to windows. However, I'm
having trouble finding a suitable word processor.

My problem is that I need 'intelligent' outlining. Ie. 

header a
child b
child b
child c
child c
child b
header a 

I'd like to be able to then fold in by level so I can choose to see only
header a's plus child b's, with child c's hidden or only header's and
then be able to unfold in same way. I find it a good way to write /
study. 

My question is whether I can do this with Lyx or is an overkill? If it
is, any suggestions? I'm not going to be doing any proper DTP work.

Rgds
Andy



Re: A Question About Opening Tex files in Lyx?

2007-09-07 Thread Paul A. Rubin

Mohammad Nassir wrote:

Hi,
I have a problem importing TEX file in lyx windows. The tex file that I have
and want to open it in Lyx, is run in WinEdt only by TEX Not by LaTex. I can
easily import LaTex files into Lyx and see the output or export Lyx files
into LaTex, but can not open TEX files.
Would somebody help me regarding that.

Thanks
Mohammad



Since LaTeX is a superset of TeX, perhaps embedding the TeX file in a 
LaTeX file would work?


/Paul



Re: A Question About Opening Tex files in Lyx?

2007-09-07 Thread cmiramon
Mohammad Nassir wrote:

> Hi,
> I have a problem importing TEX file in lyx windows. The tex file that I
> have and want to open it in Lyx, is run in WinEdt only by TEX Not by
> LaTex. I can easily import LaTex files into Lyx and see the output or
> export Lyx files into LaTex, but can not open TEX files.
> Would somebody help me regarding that.

LyX does not import tex files only latex files.

Cheers,
Charles




A Question About Opening Tex files in Lyx?

2007-09-07 Thread Mohammad Nassir
Hi,
I have a problem importing TEX file in lyx windows. The tex file that I have
and want to open it in Lyx, is run in WinEdt only by TEX Not by LaTex. I can
easily import LaTex files into Lyx and see the output or export Lyx files
into LaTex, but can not open TEX files.
Would somebody help me regarding that.

Thanks
Mohammad


Re: A Question about logo of the first page?

2007-05-08 Thread ingarp
Siterer Mohammad Nassir <[EMAIL PROTECTED]>:

> Hi,
>
> I have no idea about latex, but I searched the net, found some codes
> and
> plug them in an ERT box at the top of the first page. But in the
> output
> pdf file, the logo was printed in the second page instead of the
> first
> one. I also attached my lyx file and was wondering if you could take
> a
> look and give me the appropriate guidelines.

The reason the logo appears on the second page is because it is
interpreted after the title is made. There is some tricks to get around
this, but there is an easier way if you can use article-class from
koma-script.

In that case forget the ERT and just mark the logo as TitleHead instead
of Standard and it should appear in the head of the titlepage.

Ingar
--



A Question about logo of the first page?

2007-05-08 Thread Mohammad Nassir
-Original Message-
From: Steve Litt [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 07, 2007 3:37 PM
To: lyx-users@lists.lyx.org
Subject: Re: A Question About Fancy Title?

 

On Monday 07 May 2007 19:13, Mohammad Nassir wrote:

> Hi,

>

> I had a problem putting the Header sign of SPE (Society of Petroleum

> Engineering) on top of the first page of the output file (only the
first

> page). I attached the lyx file.

>

> I was wondering if someone could help me out.

>

>

>

> Thanks in advance

>

>

>

> Mohammad Nassir


-

I've had success hand tweaking the front matter with ERT. That way I can
base 

my document class choice on what gives me the mainmatter I want. If it
were 

me, I'd just ERT the LaTeX necessary to include the picture at the top
of the 

first page.

 

SteveT

 

Steve Litt

Author: Universal Troubleshooting Process books and courseware

http://www.troubleshooters.com/

 


-

Hi,

I have no idea about latex, but I searched the net, found some codes and
plug them in an ERT box at the top of the first page. But in the output
pdf file, the logo was printed in the second page instead of the first
one. I also attached my lyx file and was wondering if you could take a
look and give me the appropriate guidelines.

 

Thanks a lot

Mohammad Nassir

 



newfile2.lyx
Description: application/lyx
<>

Re: A Question About Fancy Title?

2007-05-07 Thread Steve Litt
On Monday 07 May 2007 19:13, Mohammad Nassir wrote:
> Hi,
>
> I had a problem putting the Header sign of SPE (Society of Petroleum
> Engineering) on top of the first page of the output file (only the first
> page). I attached the lyx file.
>
> I was wondering if someone could help me out.
>
>
>
> Thanks in advance
>
>
>
> Mohammad Nassir

I've had success hand tweaking the front matter with ERT. That way I can base 
my document class choice on what gives me the mainmatter I want. If it were 
me, I'd just ERT the LaTeX necessary to include the picture at the top of the 
first page.

SteveT

Steve Litt
Author: Universal Troubleshooting Process books and courseware
http://www.troubleshooters.com/


A Question About Fancy Title?

2007-05-07 Thread Mohammad Nassir
Hi,

I had a problem putting the Header sign of SPE (Society of Petroleum
Engineering) on top of the first page of the output file (only the first
page). I attached the lyx file.

I was wondering if someone could help me out.

 

Thanks in advance 

 

Mohammad Nassir

 



newfile2.lyx
Description: application/lyx


Re: A question about fonts

2007-01-28 Thread Nick Hopton
In a recent message <[EMAIL PROTECTED]>, John 
Hughes <[EMAIL PROTECTED]> wrote.


This is going to sound like a bit of a stupid question. I have quite a 
few fonts installed in Windows (XP) which are available to pretty much 
all of my programmes. LyX uses its own set of fonts, which aren't 
available to any other programmes and does not (appear) to be able to 
use the other fonts on the system. Why is this? And can LyX use the 
fonts installed in Windows?

[...]

I haven't tried it, but you're supposed to be able to use True Type 
fonts in LyX, see: http://wiki.lyx.org/Windows/LyXWinTips#toc5


Regards,
Nick.
--
Nick Hopton and Anne Hopton
Caversham, Reading, England
<[EMAIL PROTECTED]>



A question about fonts

2007-01-27 Thread John Hughes
This is going to sound like a bit of a stupid question. I have quite a few 
fonts installed in Windows (XP) which are available to pretty much all of my 
programmes. LyX uses its own set of fonts, which aren't available to any 
other programmes and does not (appear) to be able to use the other fonts on 
the system. Why is this? And can LyX use the fonts installed in Windows?


Thanks

John

_
MSN Hotmail is evolving – check out the new Windows Live Mail 
http://ideas.live.com




Re: a question with all the ams document

2005-05-24 Thread Paul A. Rubin

Ruiming Zhang wrote:

Hi,
I am trying to use lyx to write a paper, but I have
met a problem with nesting the enumerate environment
within a theorem. I want to get out of the enumerate
environment without getting out of the theorem, could
you tell me how to do it? This is very common to nest
several lists type conditions and conclusions inside a
mathematics environment like proposition, theorem,
lemma, definition, corollary etc.. Thanks.
Best Regards,
R.Z.

Start a paragraph by selecting the Theorem environment and begin the 
theorem.  When you reach the enumeration, start a new paragraph, select 
the enumerate environment and increase the depth (S-M-Right, or use the 
button on the toolbar that looks like an arrow pointing into the middle 
of a paragraph).  At the end of the enumeration, hit enter and select 
the theorem environment again.  It should resume your current theorem, 
rather than starting a new one.


The key is to make sure that the enumeration is embedded in the theorem 
by incrementing its depth.


-- Paul



a question with all the ams document

2005-05-24 Thread Ruiming Zhang
Hi,
I am trying to use lyx to write a paper, but I have
met a problem with nesting the enumerate environment
within a theorem. I want to get out of the enumerate
environment without getting out of the theorem, could
you tell me how to do it? This is very common to nest
several lists type conditions and conclusions inside a
mathematics environment like proposition, theorem,
lemma, definition, corollary etc.. Thanks.
Best Regards,
R.Z.



__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


LyX wiki page about tables available and a question

2004-11-21 Thread Uwe StÃhr
Hello LyXers,
I created a wiki page, that describes advanced table formatting,
multirow / multicolumn cells and customized formats
You can find it here:
http://wiki.lyx.org/pmwiki.php/LyX/Tables
just for information.
But there is a table, I wasn't able to create:
-
|   t   |   |
|   e   | text  |
|   x   |   |
|   t   |
|   x   |   |
|   e   | text  |
|   t   |   |
-
LyX offers to rotate the text in the multirow, but it not horizontally 
centered (it adheres on the right border). How can I center the text.?
The other problem is the row height - the first row is bibber than the 
second one, because the multirow has a fixed height. How can I adjust 
the height of the second row?

thanks and regards Uwe



Re: A question, but in Portuguese

2004-08-04 Thread Georg Baum
Paul A. Rubin wrote:

> Carlos Fernando Knauer wrote:
> 
>> Hello !!
>> Excuse me,but my english is very poor.
>> I will write in portuguese. If you can help me, thanks.
>> 
>> Eu quero "cancelar" um elemento de uma equação. Exemplo:
>> $\frac{x(x+1)}{x}$. Eu queria cancelar o "x" em evidência no numerador
>> com o "x" do denominador. Como faço isso no LyX ? Como posso criar um
>> atalho para esse tipo de coisa ?
>> 
>> If somedody can translate this e-mail to english I will thank.
>> 
>> Thank You,
> 
> Approximate translation (courtesy of BabelFish):
> 
>> I want to "cancel" an element of an equation. Example:
>> $\frac{x(x+1)}{x}$. I want to cancel "x" in the numerator
>> with "x" in the denominator.  How can I make this happen in LyX?
>> How I can create a shortcut for this type of thing?

If you mean by "cancelling" that the x should stay there but be marked at
"cancelled", have a look at the attached. It is made with the "cancel"
latex package, see
http://www.tex.ac.uk/cgi-bin/texfaq2html?label=cancellation.

If you don't know how to produce the red "cancel{}" in math mode: just write
\cancel{.


Georg

cancel.lyx
Description: application/lyx


Re: A question, but in Portuguese

2004-08-04 Thread Paul A. Rubin
Carlos Fernando Knauer wrote:
Hello !!
Excuse me,but my english is very poor.
I will write in portuguese. If you can help me, thanks.
Eu quero "cancelar" um elemento de uma equação. Exemplo:
$\frac{x(x+1)}{x}$. Eu queria cancelar o "x" em evidência no numerador
com o "x" do denominador. Como faço isso no LyX ? Como posso criar um
atalho para esse tipo de coisa ?
If somedody can translate this e-mail to english I will thank.
Thank You,
Approximate translation (courtesy of BabelFish):
I want to "cancel" an element of an equation. Example: 
$\frac{x(x+1)}{x}$. I want to cancel "x" in the numerator 
with "x" in the denominator.  How can I make this happen in LyX?
How I can create a shortcut for this type of thing?
My answer (which wiser minds can correct):  This sounds like a job for a 
computer algebra system (Mathematica or Maple, for instance), not a job 
for LyX.  With the cursor inside a math insert in LyX, you can select 
Edit -> Math -> Use Computer Algebra System -> ... and pick the system 
you are using.  This of course assumes you have one of the choices 
installed.

-- Paul
**
Paul A. RubinPhone: 
   (517) 432-3509
Department of ManagementFax:  (517) 
432-
The Eli Broad Graduate School of ManagementE-mail:   [EMAIL PROTECTED]
Michigan State University 
http://www.msu.edu/~rubin/
East Lansing, MI  48824-1122  (USA)
**
Mathematicians are like Frenchmen:  whenever you say something to them,
they translate it into their own language, and at once it is something
entirely different.J. W. v. GOETHE



A question, but in Portuguese

2004-08-04 Thread Carlos Fernando Knauer
Hello !!
Excuse me,but my english is very poor.
I will write in portuguese. If you can help me, thanks.

Eu quero "cancelar" um elemento de uma equação. Exemplo:
$\frac{x(x+1)}{x}$. Eu queria cancelar o "x" em evidência no numerador
com o "x" do denominador. Como faço isso no LyX ? Como posso criar um
atalho para esse tipo de coisa ?

If somedody can translate this e-mail to english I will thank.

Thank You,
-- 
Carlos Fernando Knauer - [EMAIL PROTECTED]
ICQ: 2365669
http://counter.li.org
Linux User # 282221




Re: A question: is there any way to set the language of document in Layouts?

2003-12-18 Thread Günter Milde
Pablo De Napoli wrote:
 
> Ok, this is a work around. But I want to do that on the .layout scripts
> so that if I distribute my layouts, other users don't have to do this
> themselves. I'll see if I can write a patch for adding such a command.

Although you cannot set it in the .layout scripts currently, you could just
write a template for your users and distribute it with the layout file.

Write a document using your layout with some nice usage examples and
comments, set the language and save-as to the template-folder
(~/.lyx/templates). Next time you want to have a new file using the
layout, start with File>New-from-template, choose the right template and
voila, the language is set.

Pro: users have a nice commented document to see the power of your layout
 and a starting point for own experiments/usage.
 
Con: your package consists of more than just a layout file. 

 LyX doesnot merge the system and private template directories:
 
   You can either put your template (as root) to
   /usr/share/lyx/templates/ or copy the standard to ~/.lyx/templates
   and add your template there.


Sincerely

Günter

-- 
G.Milde at web.de


Re: A question: is there any way to set the language of document in Layouts?

2003-12-17 Thread Pablo De Napoli

Ok, this is a work around. But I want to do that on the .layout scripts
so that if I distribute my layouts, other users don't have to do this
themselves. I'll see if I can write a patch for adding such a command.
Thank you for your help

Pablo De Nápoli

--- Helge Hafting <[EMAIL PROTECTED]> wrote:
> Pablo De Napoli wrote:
> > Hi!
> > 
> > I've created some custom layouts for mathematical 
> > documents in Spanish. I want to ask you a question:
> > is there any command to set the language and the encoding
> > of the document in the layout? (.layout file). I could not
> > find it anywhere in the "Cuztomization" manual of Lyx
> > (chapter 5). If not, it might be a nice feature to add.
> > Thanks.
> > 
> > Pablo De Nápoli
> > 
> 
> 1. Create or open some document using this layout.
> 2. Style->document (brings up a dialog)
> 3. Select language tab in that dialog.
> 4. Select spanish language
> 5. Click "save as document defaults" in the dialog
> 
> Future documents of this class will now be created spanish by default.
> All other settings in "style->document" works the same way too.
> 
> Helge Hafting
> 

__
Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing.
http://photos.yahoo.com/


Re: A question: is there any way to set the language of document in Layouts?

2003-12-17 Thread Helge Hafting
Pablo De Napoli wrote:
Hi!

I've created some custom layouts for mathematical 
documents in Spanish. I want to ask you a question:
is there any command to set the language and the encoding
of the document in the layout? (.layout file). I could not
find it anywhere in the "Cuztomization" manual of Lyx
(chapter 5). If not, it might be a nice feature to add.
Thanks.

Pablo De Nápoli

1. Create or open some document using this layout.
2. Style->document (brings up a dialog)
3. Select language tab in that dialog.
4. Select spanish language
5. Click "save as document defaults" in the dialog
Future documents of this class will now be created spanish by default.
All other settings in "style->document" works the same way too.
Helge Hafting



A question: is there any way to set the language of document in Layouts?

2003-12-16 Thread Pablo De Napoli

Hi!

I've created some custom layouts for mathematical 
documents in Spanish. I want to ask you a question:
is there any command to set the language and the encoding
of the document in the layout? (.layout file). I could not
find it anywhere in the "Cuztomization" manual of Lyx
(chapter 5). If not, it might be a nice feature to add.
Thanks.

Pablo De Nápoli



__
Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing.
http://photos.yahoo.com/


[mreavey@echoes.net: is it possible to post a question?]

2003-11-18 Thread lyx
Sent to wrong address,

Mate
- Forwarded message from mreavey <[EMAIL PROTECTED]> -

Delivered-To: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
Date: Mon, 17 Nov 2003 21:20:56 -0500
From: mreavey <[EMAIL PROTECTED]>
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.1) Gecko/20020823 
Netscape/7.0
X-Accept-Language: en-us, en
To:  [EMAIL PROTECTED]
Subject: is it possible to post a question?

I need help with setting a running head apa style on my title sheet.
I'm using class report on lyx 1.2. I can simulate the running head by 
using Ert \markright{foo is good} However I don't see how to put it onto 
the title page
Thanks
Mike Reavey


- End forwarded message -


Re: A Question on Win32 Lyx

2003-10-30 Thread Angus Leeming
Frank Chu wrote:

> Dear Andres,
> 
> Do you know if I should install the patches too ? and how ?  I saw
> these on win32 lyx's homepage:
> 
> Patches & extra files: (updated 20030518)
> extra_win32_files.tar.bz2 (Some extra header files & MSVC wrapper)
> lyx_win32.diff (Patch against CVS)
> quick_fix.diff (Dirty compile fixes)

These patches constitute the difference between the official LyX 
1.3.x release and Ruurd's Win32 port. You don't need to touch them. 
In fact, we should roll them back into the official LyX source.

Your problem appears to be that the 'supporting software' that LyX 
uses isn't up to the task on your system. That's things like 'perl', 
'python' and a 'shell environment'. Ruurd provides stripped down 
versions of these utilities; perhaps they are insufficient for your 
needs and you should get the real things instead.

-- 
Angus



Re: A Question on Win32 Lyx

2003-10-29 Thread Frank Chu
Dear Andres,

Do you know if I should install the patches too ? and how ?  I saw these on 
win32 lyx's homepage:

Patches & extra files: (updated 20030518)
extra_win32_files.tar.bz2 (Some extra header files & MSVC wrapper)
lyx_win32.diff (Patch against CVS)
quick_fix.diff (Dirty compile fixes)
Thanks,
Frank

From: Andres Becerra Sandoval <[EMAIL PROTECTED]>
To: Frank Chu <[EMAIL PROTECTED]>
CC: [EMAIL PROTECTED]
Subject: Re: A Question on Win32 Lyx
Date: Sun, 19 Oct 2003 11:52:38 -0500
Hello,

Maybe:

perl c:\lyx\bin\reLyX file.tex

works from commandline ...

Andres.

En Sat, 18 Oct 2003 11:06:23 -0500, Frank Chu <[EMAIL PROTECTED]> 
escribió:

Thanks, Andres,
It's already on path. BTW, when you installed it, did you need to install 
any patch ?  I haven't yet.  The version I am using is 1.3

Is there any manual way to convert the .tex to .lyx with commandline in 
Windows?

Frank

_
See when your friends are online with MSN Messenger 6.0. Download it now 
FREE! http://msnmessenger-download.com



Re: A Question on Win32 Lyx

2003-10-24 Thread Paul A. Rubin
"Frank Chu" <[EMAIL PROTECTED]> wrote in
news:[EMAIL PROTECTED]: 

> Here is the error message I got in the debugging window when openning 
> work1.lyx file:
> 
> Buffer::Buffer()
> Assigning to buffer 0
> Running 'C:/applications/lyx/share/lyx/lyx2lyx/lyx2lyx -t221 
> "C:/temp/work1.lyx"'
> 
> On the Lyx GUI, it said:
> ERROR!
> An error occured while running the conversion script.
> 
> Is that a bug ?  BTW, work1.lyx is a good lyx file, in the sense that
> it is converted from a good lyx file on Unix (converted to DOS just by
> changing the end-of-line character).
> 

I seem to recall some posts to the list once upon a time saying that 
lyx2lyx was not foolproof.  Might be you've hit a bug in it.

Two things come to mind:

1.  You could try running the following from a DOS prompt:

C:\applications\lyx\share\lyx\lyx2lyx\lyx2lyx -t221 -d2 C:/temp/work1.lyx

Note that I changed the slashes to Microsoft slashes in the program path 
but not in the path to the data file (not sure the latter makes a 
difference), and that I added the -d2 switch to put it in verbose mode 
(not sure if there should be a space between d and 2).  This might give a 
useful error message.

2.  Assuming no proprietary content, you could try posting both the Unix 
and DOS versions of work1.lyx to the list, so that some of us could try 
it on our setups.  (Or, if you're bashful, you could e-mail them to me. 
:-)

-- Paul



Re: A Question on Win32 Lyx

2003-10-24 Thread Jose' Matos
On Friday 24 October 2003 04:12, Frank Chu wrote:
> Thanks, Paul,
>
> Here is the error message I got in the debugging window when openning
> work1.lyx file:
>
> Buffer::Buffer()
> Assigning to buffer 0
> Running 'C:/applications/lyx/share/lyx/lyx2lyx/lyx2lyx -t221
> "C:/temp/work1.lyx"'

  Is python installed in your computer. What version?

> On the Lyx GUI, it said:
> ERROR!
> An error occured while running the conversion script.
>
> Is that a bug ?  BTW, work1.lyx is a good lyx file, in the sense that it is
> converted from a good lyx file on Unix (converted to DOS just by changing
> the end-of-line character).
>
> Frank

-- 
José Abílio

LyX and docbook, a perfect match. :-)



Re: A Question on Win32 Lyx

2003-10-23 Thread Frank Chu
Thanks, Paul,

Here is the error message I got in the debugging window when openning 
work1.lyx file:

Buffer::Buffer()
Assigning to buffer 0
Running 'C:/applications/lyx/share/lyx/lyx2lyx/lyx2lyx -t221 
"C:/temp/work1.lyx"'

On the Lyx GUI, it said:
ERROR!
An error occured while running the conversion script.
Is that a bug ?  BTW, work1.lyx is a good lyx file, in the sense that it is 
converted from a good lyx file on Unix (converted to DOS just by changing 
the end-of-line character).

Frank

From: "Paul A. Rubin" <[EMAIL PROTECTED]>
To: Frank Chu <[EMAIL PROTECTED]>
Subject: Re: A Question on Win32 Lyx
Date: Tue, 21 Oct 2003 16:04:44 -0400
[posted and mailed]

"Frank Chu" <[EMAIL PROTECTED]> wrote in
news:[EMAIL PROTECTED]:
> Hi, folks,
>
> When I tried to
> import a Latex file, it flashed out a DOS prompt window and
> immediately closed that window (it seems it said "Bad Filename or
> command" or things like that).  Looks like I missed some script that
> it tried to call for converting latex file ?  BTW, my lyx's bin
> directory is on PATH.
If this is still a problem, try the following.  Open a DOS window in the
LyX bin directory, and type lyx -dbg 5 at the command prompt.  It should
open the LyX GUI.  Now try importing your LaTeX file and (without closing
the LyX window) switch back to the DOS window and see what messages you
got relating to the import operation.  Hopefully, if a script blew up,
you'll find out which one (and maybe something about why) there.
BTW, I agree that the %~p0 in reLyx.bat looks a bit goofy by Windows
standards, but it works on my (XP) system.
-- Paul

*
Paul A. Rubin  Phone:(517) 432-3509
Department of Management   Fax:  (517) 432-
The Eli Broad Graduate School of ManagementE-mail:   [EMAIL PROTECTED]
Michigan State University  http://www.msu.edu/~rubin/
East Lansing, MI  48824-1122  (USA)
*
Mathematicians are like Frenchmen:  whenever you say something to them,
they translate it into their own language, and at once it is something
entirely different.J. W. v. GOETHE
_
Surf and talk on the phone at the same time with broadband Internet access. 
Get high-speed for as low as $29.95/month (depending on the local service 
providers in your area).  https://broadband.msn.com



Re: A Question on Win32 Lyx

2003-10-23 Thread Frank Chu
Yeah, it works for conversion.  The problem I met seems from "openning" a 
.lyx file instead of converting a file.  I'll show it in my next mail to the 
list.

Frank

From: Andres Becerra Sandoval <[EMAIL PROTECTED]>
To: Frank Chu <[EMAIL PROTECTED]>
CC: [EMAIL PROTECTED]
Subject: Re: A Question on Win32 Lyx
Date: Sun, 19 Oct 2003 11:52:38 -0500
Hello,

Maybe:

perl c:\lyx\bin\reLyX file.tex

works from commandline ...

Andres.

En Sat, 18 Oct 2003 11:06:23 -0500, Frank Chu <[EMAIL PROTECTED]> 
escribió:

Thanks, Andres,
It's already on path. BTW, when you installed it, did you need to install 
any patch ?  I haven't yet.  The version I am using is 1.3

Is there any manual way to convert the .tex to .lyx with commandline in 
Windows?

Frank

_
Send instant messages to anyone on your contact list with  MSN Messenger 
6.0.  Try it now FREE!  http://msnmessenger-download.com



Re: A Question on Win32 Lyx

2003-10-21 Thread Paul A. Rubin
[posted and mailed]

"Frank Chu" <[EMAIL PROTECTED]> wrote in
news:[EMAIL PROTECTED]: 

> Hi, folks,
> 
> When I tried to
> import a Latex file, it flashed out a DOS prompt window and
> immediately closed that window (it seems it said "Bad Filename or
> command" or things like that).  Looks like I missed some script that
> it tried to call for converting latex file ?  BTW, my lyx's bin
> directory is on PATH. 

If this is still a problem, try the following.  Open a DOS window in the 
LyX bin directory, and type lyx -dbg 5 at the command prompt.  It should 
open the LyX GUI.  Now try importing your LaTeX file and (without closing 
the LyX window) switch back to the DOS window and see what messages you 
got relating to the import operation.  Hopefully, if a script blew up, 
you'll find out which one (and maybe something about why) there.

BTW, I agree that the %~p0 in reLyx.bat looks a bit goofy by Windows 
standards, but it works on my (XP) system.

-- Paul

*
Paul A. Rubin  Phone:(517) 432-3509
Department of Management   Fax:  (517) 432-
The Eli Broad Graduate School of ManagementE-mail:   [EMAIL PROTECTED]
Michigan State University  http://www.msu.edu/~rubin/
East Lansing, MI  48824-1122  (USA)
*
Mathematicians are like Frenchmen:  whenever you say something to them,
they translate it into their own language, and at once it is something
entirely different.J. W. v. GOETHE



Re: A Question on Win32 Lyx

2003-10-19 Thread Andres Becerra Sandoval
Hello,

Maybe:

perl c:\lyx\bin\reLyX file.tex

works from commandline ...

Andres.

En Sat, 18 Oct 2003 11:06:23 -0500, Frank Chu <[EMAIL PROTECTED]> 
escribió:

Thanks, Andres,
It's already on path. BTW, when you installed it, did you need to install 
any patch ?  I haven't yet.  The version I am using is 1.3

Is there any manual way to convert the .tex to .lyx with commandline in 
Windows?

Frank



Re: A Question on Win32 Lyx

2003-10-18 Thread Frank Chu
Thanks so much, Guido,

I do have perl in my system (on path too) running normally all the time.  
Your are right.  I found the .lyx file I got from Unix is not DOS format.  
So I used unix2dos to change it.  Now, it still can't open the changed .lyx 
file.  It said "ERROR! An error occured while running the conversion 
script."  Below is the reLyx.bat.  I don't understand why it has a %~p0 
there.  It doesn't seem to be a right Windows env var.

@echo off
rem Wrapper script for Win32
rem written by Ruurd Reitsma
set PERLLIB=%~p0..\lib
%~p0\perl.exe %~p0\reLyX %1 %2 %3
I tried to run this script in DOS Prompt: perl reLyX xxx  (xxx.tex is a 
Latex file) and it produced a .lyx file successfully.  However the same 
error message occured when I used Lyx to open this .lyx file.  Furthermore, 
I noticed the Window environmental variable PERLLIB became ~p0..\lib, which 
doesn't seem right.

Anything wrong with the reLyX script ?

Thanks,
Frank
From: Guido Milanese <[EMAIL PROTECTED]>
To: "Frank Chu" <[EMAIL PROTECTED]>
Subject: Re: A Question on Win32 Lyx
Date: Sat, 18 Oct 2003 11:58:36 +0200
On Saturday 18 October 2003 06:31, Frank Chu wrote:
> When I tried to
> import a Latex file, it flashed out a DOS prompt window and
> immediately closed that window (it seems it said "Bad Filename or
> command" or things like that).  Looks like I missed some script
> that it tried to call for converting latex file ?  BTW, my lyx's
> bin directory is on PATH.
reLyX is a perl script, so you need perl in your system (for Windows,
if I remember correctly, there is a product called Activeperl
available for free).
> Furthermore, I can't even
> open a .lyx file that I generated from a lower version lyx on Unix.
>  I can read
> the .lyx that this win32 lyx brings with.
Change end of line. A simple system is to load the file with vim under
windows or linux (or kwrite/kate, or any editor with end-of-line
control) and to save it again with Windows format. Or use little
efficient scripts as unix2dos, available on the Internet.
HTH,
g.
--
Guido Milanese
Vocal Ensemble "Ars Antiqua", Genova, Italy
http://www.arsantiqua.org
*** GAUDETE IN DOMINO SEMPER ***

_
Send instant messages to anyone on your contact list with  MSN Messenger 
6.0.  Try it now FREE!  http://msnmessenger-download.com



A Question on Win32 Lyx

2003-10-17 Thread Frank Chu
Hi, folks,

When I tried to
import a Latex file, it flashed out a DOS prompt window and immediately
closed that window (it seems it said "Bad Filename or command" or things
like that).  Looks like I missed some script that it tried to call for
converting latex file ?  BTW, my lyx's bin directory is on PATH.
My Win98 PC has MikTex installed and it worked all the time.
I also installed the following fonts to Windows font directory:
http://www-ftp.lip6.fr/pub/lyx/contrib/latex-xft-fonts-0.1.tar.gz
I also have Imagemagick installed.  The latex file I tried is
just a small latex file with a few text and figures.It is a good latex
(means: it works on Unix as well as MikTex on my PC). Furthermore, I can't 
even
open a .lyx file that I generated from a lower version lyx on Unix.  I can 
read
the .lyx that this win32 lyx brings with.

Do I need to install Qt ?  I haven't yet.

Anyone knows why ?

Thanks,
Frank
PS: its relyx script is like this.  Don't understand why.
@echo off
rem Wrapper script for Win32
rem written by Ruurd Reitsma
set PERLLIB=%~p0..\lib
%~p0\perl.exe %~p0\reLyX %1 %2 %3
_
Concerned that messages may bounce because your Hotmail account has exceeded 
its 2MB storage limit? Get Hotmail Extra Storage! 
http://join.msn.com/?PAGE=features/es



Re: A question

2002-10-14 Thread José Abílio Oliveira Matos

On Monday 14 October 2002 07:50, Andre Poenitz wrote:
>
> Uh. I thought there was no LyX on Knoppix, but I just had a look, it's
> right there - and even in version 1.2.1.
>
> Hey, this is cool...
>
> [I seem to remember Klaus Knopper saying that he did not want to LyX
> because of its xforms dependencies (and unless someone wants it included)
> but either my memory fails me (again), or times have truly changed...]

  Simple answer: it brings xforms-1.0.0RC4 that has LGPL license, so that is 
the time change you are refering to. :-)

> Andre'

-- 
José Abílio



Re: A question

2002-10-13 Thread Andre Poenitz

On Sun, Oct 13, 2002 at 11:42:23AM +0200, Wolfgang Engelmann wrote:
> How about using Knoppix on a CD?
> You insert it in your Windows PC and it will install a (Debian based) Linux 
> system, which AFAIK, contains also Lyx. You have access to your swap 
> partition and other space.

Uh. I thought there was no LyX on Knoppix, but I just had a look, it's
right there - and even in version 1.2.1.

Hey, this is cool...

[I seem to remember Klaus Knopper saying that he did not want to LyX
because of its xforms dependencies (and unless someone wants it included)
but either my memory fails me (again), or times have truly changed...]

Andre'

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



Re: A question

2002-10-13 Thread Andre Poenitz

On Sat, Oct 12, 2002 at 01:32:02AM -0400, Hooman Javidnia wrote:
> I was searching to learn things about LaTeX I came to your site and it
> was very interesting for me. I have tried to download the Lyx for Win32
> but it failed after downloading large amount of data. I want to know if
> there is the possibility to put everything needed to install Lyx on a
> Win32 machine on a CD and send to me.

www.liniso.com

> I would like to have everything
> (XFree86, CGywin,?.) needed on one CD. I have  MikeTeX  installed on my
> computer.

If you insist on running LyX under Windows you should have a look at
www.lyx.org -> "LyX 1.2.1 for Win32" -> "this URL"

Andre'

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



Re: A question

2002-10-13 Thread Wolfgang Engelmann



How about using Knoppix on a CD?
You insert it in your Windows PC and it will install a (Debian based) Linux 
system, which AFAIK, contains also Lyx. You have access to your swap 
partition and other space.


Wolfgang



On Saturday 12 October 2002 09:20, Herbert Voss wrote:
> Hooman Javidnia wrote:
> > I am a Ph.D. student in the University f Western Ontario and recently I
> > have switched to LaTeX as my word processor and I love it so much. While
> > I was searching to learn things about LaTeX I came to your site and it
> > was very interesting for me. I have tried to download the Lyx for Win32
> > but it failed after downloading large amount of data. I want to know if
> > there is the possibility to put everything needed to install Lyx on a
> > Win32 machine on a CD and send to me. I would like to have everything
> > (XFree86, CGywin,….) needed on one CD. I have  MikeTeX  installed on my
> > computer.





A question

2002-10-12 Thread Hooman Javidnia

I am a Ph.D. student in the University f Western Ontario and recently I
have switched to LaTeX as my word processor and I love it so much. While
I was searching to learn things about LaTeX I came to your site and it
was very interesting for me. I have tried to download the Lyx for Win32
but it failed after downloading large amount of data. I want to know if
there is the possibility to put everything needed to install Lyx on a
Win32 machine on a CD and send to me. I would like to have everything
(XFree86, CGywin,….) needed on one CD. I have  MikeTeX  installed on my
computer.
Any help would be appreciated.
Happy Thanksgiving :-)
Hooman Javidnia
Department of Electrical and Computer Engineering
The University of Western Ontario
London, ON, N6A 5B9
Canada
Phone: (519)-661-2111 Ext. 88270
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.393 / Virus Database: 223 - Release Date: 30/09/2002
 



Re: A question

2002-10-12 Thread Herbert Voss

Hooman Javidnia wrote:

> I am a Ph.D. student in the University f Western Ontario and recently I
> have switched to LaTeX as my word processor and I love it so much. While
> I was searching to learn things about LaTeX I came to your site and it
> was very interesting for me. I have tried to download the Lyx for Win32
> but it failed after downloading large amount of data. I want to know if
> there is the possibility to put everything needed to install Lyx on a
> Win32 machine on a CD and send to me. I would like to have everything
> (XFree86, CGywin,….) needed on one CD. I have  MikeTeX  installed on my
> computer.


have a look at


http://www.fh-hannover.de/mbau/tim/hentschel/lyx/index.htm

Herbert



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




Re: A question about 'Description'

2002-07-17 Thread Herbert Voss

Doug Innes wrote:

> Is there a way to mass select a sentence and make it a 'Description' with
> 'protected blanks' replacing spaces in the sentence, avoiding a line break?
> Or do I have to replace the spaces all one-at-a-time?


it's not possible from inside lyx, use any other primitive
editor, if it's important. but you have to change a blank
into the command sequence of a protected space.

Herbert



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




A question about 'Description'

2002-07-17 Thread Doug Innes

Is there a way to mass select a sentence and make it a 'Description' with
'protected blanks' replacing spaces in the sentence, avoiding a line break?
Or do I have to replace the spaces all one-at-a-time?




A question about Protected Blanks

2002-07-17 Thread Doug Innes

Is there a way to mass-select a paragraph and make the whole of it a
'Description' header properly, with protected blanks replacing normal
spaces, or do I have no choice but to replace them one-at-a-time?

Please send reply to '[EMAIL PROTECTED]'. Thanks.




Re: Maybe this is more a question about tex... but...

1999-11-09 Thread jiva

Thanks to all those who replied.  Yes, I looked back in the mail archive (shoulda done 
that first, DOH!) and ther it was!  Now I am flowing all over the place. ;D  That 
having been said, is there *anything* the WYSIWIG word processors can do that lyx 
can't?  It seems like there isn't.  I can't think of any average writing task that 
wouldn't be easier in lyx.

On Tue, Nov 09, 1999 at 10:19:13AM +0100, Juergen Vigna wrote:
> 
> On 09-Nov-99 [EMAIL PROTECTED] wrote:
> > Is it possible to use lyx/tex to force text to flow around graphics on a page?  
>ie: if
> > I had a graphic, and I wanted to plop it in the middle of my page, and have my text
> > flow around it (like for a newsletter or something) can I do that? and how?
> 
> I answered the same question not long ago (last week?) so (to all of you)
> look at the mail-archive first, please!
> 
> Look at the attached example file!
> 
> Hope this helps,
> 
>Jürgen
> 
> -._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._
> 
> Dr. Jürgen Vigna  E-Mail: [EMAIL PROTECTED]
> Gerbergasse 60Tel:+39-0471-450260
> I-39100 Bozen Fax:+39-0471-970042
> ITALY Web:http://www.sad.it/~jug
> 
> Suicide is the sincerest form of self-criticism.
> -- Donald Kaul
> 
> -._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._



-- 



RE: Maybe this is more a question about tex... but...

1999-11-09 Thread Juergen Vigna


On 09-Nov-99 [EMAIL PROTECTED] wrote:
> Is it possible to use lyx/tex to force text to flow around graphics on a page?  ie: 
>if
> I had a graphic, and I wanted to plop it in the middle of my page, and have my text
> flow around it (like for a newsletter or something) can I do that? and how?

I answered the same question not long ago (last week?) so (to all of you)
look at the mail-archive first, please!

Look at the attached example file!

Hope this helps,

   Jürgen

-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._

Dr. Jürgen Vigna  E-Mail: [EMAIL PROTECTED]
Gerbergasse 60Tel:+39-0471-450260
I-39100 Bozen Fax:+39-0471-970042
ITALY Web:http://www.sad.it/~jug

Suicide is the sincerest form of self-criticism.
-- Donald Kaul

-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._

 ex_picinpar.lyx


Maybe this is more a question about tex... but...

1999-11-08 Thread jiva

Is it possible to use lyx/tex to force text to flow around graphics on a page?  ie: if 
I had a graphic, and I wanted to plop it in the middle of my page, and have my text 
flow around it (like for a newsletter or something) can I do that? and how?

Thanks
--