Orphans and Widows

2000-04-07 Thread Diego A. Puertas F.

How can I archieve orphans an widows control on LyX, I need to have no
more than two orphans/widows lines per page.

Thanks in advance.




Orphans and Widows

2000-04-07 Thread Diego A. Puertas F.

How can I archieve orphans an widows control on LyX, I need to have no
more than two orphans/widows lines per page.

Thanks in advance.




Orphans and Widows

2000-04-07 Thread Diego A. Puertas F.

How can I archieve orphans an widows control on LyX, I need to have no
more than two orphans/widows lines per page.

Thanks in advance.




IndentFirst Problem (The solution I've used)

2000-04-03 Thread Diego A. Puertas F.

I've been suffering with the package indentfirst, the problem was that the
package didn't indent the paragraphs that came right after a enumerate,
description or itemize paragraph. This is the solution I've found.

As Jean-Marc Lasgouttes so kindly told, LyX does not (and I am still
wondering why wouldn't he) put a paragraph break between lists and the
following paragraph. Well, the solution is simple, put the paragraph
break. This is what I did:

1- Export the document as a LaTeX file (your_file.tex).
2- Run a script that put the paragraph breaks (set_indent.perl).
3- Run LaTeX 3 times: latex your_file.tex
3- And then: dvips -t letter -o your_file.ps your_file.dvi

And now you have a postcript file - your_file.ps - ready to print.

Attached is the script I've used, named "set_indent.perl". It is, as you
migth guess, a perl script, and is written for a Unix like system (Linux
in my case) which has perl instalated on : /usr/bin/perl.


I hope this help someone out there with this problem.

Diego




Re: IndentFirst Problem (The solution I've used)

2000-04-03 Thread Diego A. Puertas F.

Sorry, forgot the attachment the first time

El 29/03/00, Diego A. Puertas F. escribió:

 I've been suffering with the package indentfirst, the problem was that the
 package didn't indent the paragraphs that came right after a enumerate,
 description or itemize paragraph. This is the solution I've found.
 
 As Jean-Marc Lasgouttes so kindly told, LyX does not (and I am still
 wondering why wouldn't he) put a paragraph break between lists and the
 following paragraph. Well, the solution is simple, put the paragraph
 break. This is what I did:
 
 1- Export the document as a LaTeX file (your_file.tex).
 2- Run a script that put the paragraph breaks (set_indent.perl).
 3- Run LaTeX 3 times: latex your_file.tex
 3- And then: dvips -t letter -o your_file.ps your_file.dvi
 
 And now you have a postcript file - your_file.ps - ready to print.
 
 Attached is the script I've used, named "set_indent.perl". It is, as you
 migth guess, a perl script, and is written for a Unix like system (Linux
 in my case) which has perl instalated on : /usr/bin/perl.
 
 
 I hope this help someone out there with this problem.
 
   Diego
 
 


#!/usr/bin/perl

print "The name of the file: ";
$file=STDIN;
chop($file);

open(TEX,$file);
@tex=TEX;
close(TEX);
open(TEX2,"$file");
foreach $item (@tex) {
print TEX2 $item;
if($item =~ /\\end\{enumerate\}/
|| $item =~ /\\end\{itemize\}/
|| $item =~ /\\end\{description\}/)
{ print TEX2 "\n";}
}
close(TEX2);



IndentFirst Problem (The solution I've used)

2000-04-03 Thread Diego A. Puertas F.

I've been suffering with the package indentfirst, the problem was that the
package didn't indent the paragraphs that came right after a enumerate,
description or itemize paragraph. This is the solution I've found.

As Jean-Marc Lasgouttes so kindly told, LyX does not (and I am still
wondering why wouldn't he) put a paragraph break between lists and the
following paragraph. Well, the solution is simple, put the paragraph
break. This is what I did:

1- Export the document as a LaTeX file (your_file.tex).
2- Run a script that put the paragraph breaks (set_indent.perl).
3- Run LaTeX 3 times: latex your_file.tex
3- And then: dvips -t letter -o your_file.ps your_file.dvi

And now you have a postcript file - your_file.ps - ready to print.

Attached is the script I've used, named "set_indent.perl". It is, as you
migth guess, a perl script, and is written for a Unix like system (Linux
in my case) which has perl instalated on : /usr/bin/perl.


I hope this help someone out there with this problem.

Diego




Re: IndentFirst Problem (The solution I've used)

2000-04-03 Thread Diego A. Puertas F.

Sorry, forgot the attachment the first time

El 29/03/00, Diego A. Puertas F. escribió:

 I've been suffering with the package indentfirst, the problem was that the
 package didn't indent the paragraphs that came right after a enumerate,
 description or itemize paragraph. This is the solution I've found.
 
 As Jean-Marc Lasgouttes so kindly told, LyX does not (and I am still
 wondering why wouldn't he) put a paragraph break between lists and the
 following paragraph. Well, the solution is simple, put the paragraph
 break. This is what I did:
 
 1- Export the document as a LaTeX file (your_file.tex).
 2- Run a script that put the paragraph breaks (set_indent.perl).
 3- Run LaTeX 3 times: latex your_file.tex
 3- And then: dvips -t letter -o your_file.ps your_file.dvi
 
 And now you have a postcript file - your_file.ps - ready to print.
 
 Attached is the script I've used, named "set_indent.perl". It is, as you
 migth guess, a perl script, and is written for a Unix like system (Linux
 in my case) which has perl instalated on : /usr/bin/perl.
 
 
 I hope this help someone out there with this problem.
 
   Diego
 
 


#!/usr/bin/perl

print "The name of the file: ";
$file=STDIN;
chop($file);

open(TEX,$file);
@tex=TEX;
close(TEX);
open(TEX2,"$file");
foreach $item (@tex) {
print TEX2 $item;
if($item =~ /\\end\{enumerate\}/
|| $item =~ /\\end\{itemize\}/
|| $item =~ /\\end\{description\}/)
{ print TEX2 "\n";}
}
close(TEX2);



IndentFirst Problem (The solution I've used)

2000-04-03 Thread Diego A. Puertas F.

I've been suffering with the package indentfirst, the problem was that the
package didn't indent the paragraphs that came right after a enumerate,
description or itemize paragraph. This is the solution I've found.

As Jean-Marc Lasgouttes so kindly told, LyX does not (and I am still
wondering why wouldn't he) put a paragraph break between lists and the
following paragraph. Well, the solution is simple, put the paragraph
break. This is what I did:

1- Export the document as a LaTeX file (your_file.tex).
2- Run a script that put the paragraph breaks (set_indent.perl).
3- Run LaTeX 3 times: latex your_file.tex
3- And then: dvips -t letter -o your_file.ps your_file.dvi

And now you have a postcript file - your_file.ps - ready to print.

Attached is the script I've used, named "set_indent.perl". It is, as you
migth guess, a perl script, and is written for a Unix like system (Linux
in my case) which has perl instalated on : /usr/bin/perl.


I hope this help someone out there with this problem.

Diego




Re: IndentFirst Problem (The solution I've used)

2000-04-03 Thread Diego A. Puertas F.

Sorry, forgot the attachment the first time

El 29/03/00, Diego A. Puertas F. escribió:

> I've been suffering with the package indentfirst, the problem was that the
> package didn't indent the paragraphs that came right after a enumerate,
> description or itemize paragraph. This is the solution I've found.
> 
> As Jean-Marc Lasgouttes so kindly told, LyX does not (and I am still
> wondering why wouldn't he) put a paragraph break between lists and the
> following paragraph. Well, the solution is simple, put the paragraph
> break. This is what I did:
> 
> 1- Export the document as a LaTeX file (your_file.tex).
> 2- Run a script that put the paragraph breaks (set_indent.perl).
> 3- Run LaTeX 3 times: latex your_file.tex
> 3- And then: dvips -t letter -o your_file.ps your_file.dvi
> 
> And now you have a postcript file - your_file.ps - ready to print.
> 
> Attached is the script I've used, named "set_indent.perl". It is, as you
> migth guess, a perl script, and is written for a Unix like system (Linux
> in my case) which has perl instalated on : /usr/bin/perl.
> 
> 
> I hope this help someone out there with this problem.
> 
>   Diego
> 
> 


#!/usr/bin/perl

print "The name of the file: ";
$file=;
chop($file);

open(TEX,$file);
@tex=;
close(TEX);
open(TEX2,">$file");
foreach $item (@tex) {
print TEX2 $item;
if($item =~ /\\end\{enumerate\}/
|| $item =~ /\\end\{itemize\}/
|| $item =~ /\\end\{description\}/)
{ print TEX2 "\n";}
}
close(TEX2);



IndentFirst Problem

2000-03-30 Thread Diego A. Puertas F.

Hello list, at last, my thesis is finished, but I still have a problem
with the IndentFirst package.

IndentFirst is indenting allrigth all the first paragraphs, except for  
the ones that are after a enumerate, description or itemize paragraph.

Anyone, can help? I'll apreciate very much your anwser on this one.

Thanks.




Re: IndentFirst Problem

2000-03-30 Thread Diego A. Puertas F.

El 30/03/00, Osvaldo Fornaro escribió:

 "Diego A. Puertas F." wrote:
 
  Hello list, at last, my thesis is finished, but I still have a problem
  with the IndentFirst package.
 
  IndentFirst is indenting allrigth all the first paragraphs, except for
  the ones that are after a enumerate, description or itemize paragraph.
 
  Anyone, can help? I'll apreciate very much your anwser on this one.
 
  Thanks.
 
 add \indent In tex mode, and possibly a new paragraph. In this way work
 for me
 
 


I need an automatic way to do this, it's not a pleasent idea to put those
\indents all over the 250 pages the thesis has.




IndentFirst Problem

2000-03-30 Thread Diego A. Puertas F.

Hello list, at last, my thesis is finished, but I still have a problem
with the IndentFirst package.

IndentFirst is indenting allrigth all the first paragraphs, except for  
the ones that are after a enumerate, description or itemize paragraph.

Anyone, can help? I'll apreciate very much your anwser on this one.

Thanks.




Re: IndentFirst Problem

2000-03-30 Thread Diego A. Puertas F.

El 30/03/00, Osvaldo Fornaro escribió:

 "Diego A. Puertas F." wrote:
 
  Hello list, at last, my thesis is finished, but I still have a problem
  with the IndentFirst package.
 
  IndentFirst is indenting allrigth all the first paragraphs, except for
  the ones that are after a enumerate, description or itemize paragraph.
 
  Anyone, can help? I'll apreciate very much your anwser on this one.
 
  Thanks.
 
 add \indent In tex mode, and possibly a new paragraph. In this way work
 for me
 
 


I need an automatic way to do this, it's not a pleasent idea to put those
\indents all over the 250 pages the thesis has.




IndentFirst Problem

2000-03-30 Thread Diego A. Puertas F.

Hello list, at last, my thesis is finished, but I still have a problem
with the IndentFirst package.

IndentFirst is indenting allrigth all the first paragraphs, except for  
the ones that are after a enumerate, description or itemize paragraph.

Anyone, can help? I'll apreciate very much your anwser on this one.

Thanks.




Re: IndentFirst Problem

2000-03-30 Thread Diego A. Puertas F.

El 30/03/00, Osvaldo Fornaro escribió:

> "Diego A. Puertas F." wrote:
> 
> > Hello list, at last, my thesis is finished, but I still have a problem
> > with the IndentFirst package.
> >
> > IndentFirst is indenting allrigth all the first paragraphs, except for
> > the ones that are after a enumerate, description or itemize paragraph.
> >
> > Anyone, can help? I'll apreciate very much your anwser on this one.
> >
> > Thanks.
> 
> add \indent In tex mode, and possibly a new paragraph. In this way work
> for me
> 
> 


I need an automatic way to do this, it's not a pleasent idea to put those
\indents all over the 250 pages the thesis has.




Re: Wrong Hypenation

2000-03-21 Thread Diego A. Puertas F.

It was the TeX configuration, for languages other than english, italian
and german (and I belive french too) you must run "texconfig" and once in
there, get into the "hyphen" item of the menu.

You will see a text file (with vi), which you got to edit and uncomment
your especific language.

Diego




Re: Yet another longtable problem

2000-03-21 Thread Diego A. Puertas F.

El 19/03/00, Herbert Voss escribió:

 1. the caption for the nonfloating table:
 
 \centerline{Table Nr. \stepcounter{table}\thetable : My own caption for
 my own table \vspace{0.5cm}}
 
 2. add this for the list of tables "lot"
 
 \addcontentsline{lot}{table}{\thetable\hspace{1.5em} My own caption for
 my own table}
 
 
 Herbert

It works nice Herbert, but there is still a problem.  When you issue the
command \stepcounter{table} the counter moves right to the next number and
the caption (wich I put on top of the table) apears with the rigth number, 
so does the line on the list of tables; but LyX, I don't know why, 
apparently steps the counter of the tables when a longtable appears, even
if the table is not on a float.

So in the table of contents there is a table 5.6 (which is our anoying
longtable) and then a jump to the table 5.8, which is supossed to be  
table 5.7.

If I remove the \stepcounter{table} an put both the "caption" and the
"addcontents" line on the bottom of the table, everyting is numbered and
referenced rigth, but the caption MUST be on top of the table (thesis
typography rules of my faculty).

A workarround would be a comand that does and opposite action to
\stepcounter{} (is there one?), but any other solution will do fine.


Thanks in advance

Diego




RE: Long table (in a float) problem

2000-03-21 Thread Diego A. Puertas F.

Hi list


Thanks for your tip Juergen, the commands \\ and \caption{} works fine, if
the caption if on the bottom of the table, but the problem is that the
caption must be on top of the table (faculty rules), and if I issue:

\\ \caption{The Caption}

on the of the table, the results are very nasty.

Does anyone have a solution for this, I'll appreciate any help.


Diego





indentfirst package

2000-03-21 Thread Diego A. Puertas F.

Hello list

I'm using the "indentfirst" and it works fine for all the paragraphs
except for the paragraph that are inmediatly after a "itemize",
"enumerate" or "description" paragraph.

Can somebody help me with this one?





Re: Wrong Hypenation

2000-03-21 Thread Diego A. Puertas F.

It was the TeX configuration, for languages other than english, italian
and german (and I belive french too) you must run "texconfig" and once in
there, get into the "hyphen" item of the menu.

You will see a text file (with vi), which you got to edit and uncomment
your especific language.

Diego




Re: Yet another longtable problem

2000-03-21 Thread Diego A. Puertas F.

El 19/03/00, Herbert Voss escribió:

 1. the caption for the nonfloating table:
 
 \centerline{Table Nr. \stepcounter{table}\thetable : My own caption for
 my own table \vspace{0.5cm}}
 
 2. add this for the list of tables "lot"
 
 \addcontentsline{lot}{table}{\thetable\hspace{1.5em} My own caption for
 my own table}
 
 
 Herbert

It works nice Herbert, but there is still a problem.  When you issue the
command \stepcounter{table} the counter moves right to the next number and
the caption (wich I put on top of the table) apears with the rigth number, 
so does the line on the list of tables; but LyX, I don't know why, 
apparently steps the counter of the tables when a longtable appears, even
if the table is not on a float.

So in the table of contents there is a table 5.6 (which is our anoying
longtable) and then a jump to the table 5.8, which is supossed to be  
table 5.7.

If I remove the \stepcounter{table} an put both the "caption" and the
"addcontents" line on the bottom of the table, everyting is numbered and
referenced rigth, but the caption MUST be on top of the table (thesis
typography rules of my faculty).

A workarround would be a comand that does and opposite action to
\stepcounter{} (is there one?), but any other solution will do fine.


Thanks in advance

Diego




RE: Long table (in a float) problem

2000-03-21 Thread Diego A. Puertas F.

Hi list


Thanks for your tip Juergen, the commands \\ and \caption{} works fine, if
the caption if on the bottom of the table, but the problem is that the
caption must be on top of the table (faculty rules), and if I issue:

\\ \caption{The Caption}

on the of the table, the results are very nasty.

Does anyone have a solution for this, I'll appreciate any help.


Diego





indentfirst package

2000-03-21 Thread Diego A. Puertas F.

Hello list

I'm using the "indentfirst" and it works fine for all the paragraphs
except for the paragraph that are inmediatly after a "itemize",
"enumerate" or "description" paragraph.

Can somebody help me with this one?





Re: Wrong Hypenation

2000-03-21 Thread Diego A. Puertas F.

It was the TeX configuration, for languages other than english, italian
and german (and I belive french too) you must run "texconfig" and once in
there, get into the "hyphen" item of the menu.

You will see a text file (with vi), which you got to edit and uncomment
your especific language.

Diego




Re: Yet another longtable problem

2000-03-21 Thread Diego A. Puertas F.

El 19/03/00, Herbert Voss escribió:

> 1. the caption for the nonfloating table:
> 
> \centerline{Table Nr. \stepcounter{table}\thetable : My own caption for
> my own table \vspace{0.5cm}}
> 
> 2. add this for the list of tables "lot"
> 
> \addcontentsline{lot}{table}{\thetable\hspace{1.5em} My own caption for
> my own table}
> 
> 
> Herbert

It works nice Herbert, but there is still a problem.  When you issue the
command \stepcounter{table} the counter moves right to the next number and
the caption (wich I put on top of the table) apears with the rigth number, 
so does the line on the list of tables; but LyX, I don't know why, 
apparently steps the counter of the tables when a longtable appears, even
if the table is not on a float.

So in the table of contents there is a table 5.6 (which is our anoying
longtable) and then a jump to the table 5.8, which is supossed to be  
table 5.7.

If I remove the \stepcounter{table} an put both the "caption" and the
"addcontents" line on the bottom of the table, everyting is numbered and
referenced rigth, but the caption MUST be on top of the table (thesis
typography rules of my faculty).

A workarround would be a comand that does and opposite action to
\stepcounter{} (is there one?), but any other solution will do fine.


Thanks in advance

Diego




RE: Long table (in a float) problem

2000-03-21 Thread Diego A. Puertas F.

Hi list


Thanks for your tip Juergen, the commands \\ and \caption{} works fine, if
the caption if on the bottom of the table, but the problem is that the
caption must be on top of the table (faculty rules), and if I issue:

\\ \caption{The Caption}

on the of the table, the results are very nasty.

Does anyone have a solution for this, I'll appreciate any help.


Diego





indentfirst package

2000-03-21 Thread Diego A. Puertas F.

Hello list

I'm using the "indentfirst" and it works fine for all the paragraphs
except for the paragraph that are inmediatly after a "itemize",
"enumerate" or "description" paragraph.

Can somebody help me with this one?





Long table (in a float) problem

2000-03-18 Thread Diego A. Puertas F.

Hello list


OK, I have a long table, inside a float, and it won't split in two
pages. When I got it out of the float, it works just fine, breaking just in
the row I've said so.

I even had make two tables out of my original table, put both of them inside
a float, and put a \newpage between them and ... nothing.


Can I make my table split inside the float ?  (this option is much better
   than the next one)

If not, well, I need the table to be numbered and into the list of tables,
how can I work arround this ?


Thanks in advance.

Diego



Wrong Hypenation

2000-03-18 Thread Diego A. Puertas F.

LyX is not hypenating rigth, I don't know about hypenation rules in other
languages, but in Spanish LyX isn't doing it the rigth way.

For example, it's hypenating  "explicación" like this: expl-icación; it's
breaking the syllable "pli" and it shouldn't.

Can anybody help me?

Thanks


Diego



Re: Yet another longtable problem

2000-03-18 Thread Diego A. Puertas F.

El 18/03/00, Herbert Voss escribió:

 "Diego A. Puertas F." wrote:
  
  Hello list.
  
  OK, I have a long table, in a float, and it won't split in two pages.
  
  When I get it out of the float, it breaks perfectly, just in the row
  where I've said so, but I put it into a float and she does not.
  
  I need the table to be numbered.
 
 have a look at the sample file, there are three tables:
 1. floating
 2. nonfloating
 3. floating
 
 the nonfloating one is countered by the same table-counter.
 but pay attention, if you delete the h(ere)-option in 
 layout-document-float placement
 latex put the two floating tables before the nonfloating one
 and therefore countig is incorrect.
 
 hope this helps
 Herbert
 
 

There is a problem Herbert, the table does not appear on the list of
tables, and it must.



Bibliography counted on the TOC

2000-03-18 Thread Diego A. Puertas F.

Hi list!

Well, by itself, the bibliography does not appear counted on the table of
contents. I've managed to put it in by using the following LaTeX comand
(which have just been posted on the list) on the first item of the biblio:

\addcontentsline{toc}{chapter}{Bibliografía}

I was wondering:

- Is there is a more elegant way to do this?, and

- why does not the list apears on TOC by default?


I'll apreciate all the help you could bring.

--

By the way, I want to apologize for the 3 posts of the same subject the
other nigth (to be fair, the frist 2 ones were Pine's fault :-)

It was embarrassing, it is probe that, when you are sleepy, you got to
sleep, if not such things (and worst) can happen. Simple true.



Diego



Re: Wrong Hypenation

2000-03-18 Thread Diego A. Puertas F.

El 18/03/00, Kayvan A. Sylvan escribió:

 On Sun, Mar 19, 2000 at 01:55:51AM -0400, Diego A. Puertas F. wrote:
  LyX is not hypenating rigth.
 
 What version OS? What version of tetex?
 
 This is most certainly a TeX configuration problem and not a LyX issue.


Well, It is Mandrake 7.0 with tetex 1.0.6 an LyX 1.1.2, next there is a
list of the packages installed:

tetex-dvips-1.0.6-6mdk
tetex-latex-1.0.6-6mdk
tetex-xdvi-1.0.6-6mdk
tetex-dvilj-1.0.6-6mdk
tetex-1.0.6-6mdk
tetex-afm-1.0.6-6mdk
tetex-doc-1.0.6-19990903
lyx-1.1.2-1



Re: Wrong Hypenation

2000-03-18 Thread Diego A. Puertas F.

El 19/03/00, Diego A. Puertas F. escribió:

 LyX is not hypenating rigth, I don't know about hypenation rules in other
 languages, but in Spanish LyX isn't doing it the rigth way.
 
 For example, it's hypenating  "explicación" like this: expl-icación; it's
 breaking the syllable "pli" and it shouldn't.
 
 Can anybody help me?
 
 Thanks
 
 
   Diego
 
 

Well, Kayvan, there are 150 pages, I had begun a \hyphenation{} in the
preamble but is a mounstrous work, more when you consider that when you
hyphenate right a word, another one breaks where it shouldn't.

I'm trying to use \usepackage[spanish]{babel}, but LyX give me a box that
says:

LaTeX Error: Option clash for package babel
I.25 \makeanother


By the way, which is that error you were talking about, maybe It can give
me some ligths.



Long table (in a float) problem

2000-03-18 Thread Diego A. Puertas F.

Hello list


OK, I have a long table, inside a float, and it won't split in two
pages. When I got it out of the float, it works just fine, breaking just in
the row I've said so.

I even had make two tables out of my original table, put both of them inside
a float, and put a \newpage between them and ... nothing.


Can I make my table split inside the float ?  (this option is much better
   than the next one)

If not, well, I need the table to be numbered and into the list of tables,
how can I work arround this ?


Thanks in advance.

Diego



Wrong Hypenation

2000-03-18 Thread Diego A. Puertas F.

LyX is not hypenating rigth, I don't know about hypenation rules in other
languages, but in Spanish LyX isn't doing it the rigth way.

For example, it's hypenating  "explicación" like this: expl-icación; it's
breaking the syllable "pli" and it shouldn't.

Can anybody help me?

Thanks


Diego



Re: Yet another longtable problem

2000-03-18 Thread Diego A. Puertas F.

El 18/03/00, Herbert Voss escribió:

 "Diego A. Puertas F." wrote:
  
  Hello list.
  
  OK, I have a long table, in a float, and it won't split in two pages.
  
  When I get it out of the float, it breaks perfectly, just in the row
  where I've said so, but I put it into a float and she does not.
  
  I need the table to be numbered.
 
 have a look at the sample file, there are three tables:
 1. floating
 2. nonfloating
 3. floating
 
 the nonfloating one is countered by the same table-counter.
 but pay attention, if you delete the h(ere)-option in 
 layout-document-float placement
 latex put the two floating tables before the nonfloating one
 and therefore countig is incorrect.
 
 hope this helps
 Herbert
 
 

There is a problem Herbert, the table does not appear on the list of
tables, and it must.



Bibliography counted on the TOC

2000-03-18 Thread Diego A. Puertas F.

Hi list!

Well, by itself, the bibliography does not appear counted on the table of
contents. I've managed to put it in by using the following LaTeX comand
(which have just been posted on the list) on the first item of the biblio:

\addcontentsline{toc}{chapter}{Bibliografía}

I was wondering:

- Is there is a more elegant way to do this?, and

- why does not the list apears on TOC by default?


I'll apreciate all the help you could bring.

--

By the way, I want to apologize for the 3 posts of the same subject the
other nigth (to be fair, the frist 2 ones were Pine's fault :-)

It was embarrassing, it is probe that, when you are sleepy, you got to
sleep, if not such things (and worst) can happen. Simple true.



Diego



Re: Wrong Hypenation

2000-03-18 Thread Diego A. Puertas F.

El 18/03/00, Kayvan A. Sylvan escribió:

 On Sun, Mar 19, 2000 at 01:55:51AM -0400, Diego A. Puertas F. wrote:
  LyX is not hypenating rigth.
 
 What version OS? What version of tetex?
 
 This is most certainly a TeX configuration problem and not a LyX issue.


Well, It is Mandrake 7.0 with tetex 1.0.6 an LyX 1.1.2, next there is a
list of the packages installed:

tetex-dvips-1.0.6-6mdk
tetex-latex-1.0.6-6mdk
tetex-xdvi-1.0.6-6mdk
tetex-dvilj-1.0.6-6mdk
tetex-1.0.6-6mdk
tetex-afm-1.0.6-6mdk
tetex-doc-1.0.6-19990903
lyx-1.1.2-1



Re: Wrong Hypenation

2000-03-18 Thread Diego A. Puertas F.

El 19/03/00, Diego A. Puertas F. escribió:

 LyX is not hypenating rigth, I don't know about hypenation rules in other
 languages, but in Spanish LyX isn't doing it the rigth way.
 
 For example, it's hypenating  "explicación" like this: expl-icación; it's
 breaking the syllable "pli" and it shouldn't.
 
 Can anybody help me?
 
 Thanks
 
 
   Diego
 
 

Well, Kayvan, there are 150 pages, I had begun a \hyphenation{} in the
preamble but is a mounstrous work, more when you consider that when you
hyphenate right a word, another one breaks where it shouldn't.

I'm trying to use \usepackage[spanish]{babel}, but LyX give me a box that
says:

LaTeX Error: Option clash for package babel
I.25 \makeanother


By the way, which is that error you were talking about, maybe It can give
me some ligths.



Long table (in a float) problem

2000-03-18 Thread Diego A. Puertas F.

Hello list


OK, I have a long table, inside a float, and it won't split in two
pages. When I got it out of the float, it works just fine, breaking just in
the row I've said so.

I even had make two tables out of my original table, put both of them inside
a float, and put a \newpage between them and ... nothing.


Can I make my table split inside the float ?  (this option is much better
   than the next one)

If not, well, I need the table to be numbered and into the list of tables,
how can I work arround this ?


Thanks in advance.

Diego



Wrong Hypenation

2000-03-18 Thread Diego A. Puertas F.

LyX is not hypenating rigth, I don't know about hypenation rules in other
languages, but in Spanish LyX isn't doing it the rigth way.

For example, it's hypenating  "explicación" like this: expl-icación; it's
breaking the syllable "pli" and it shouldn't.

Can anybody help me?

Thanks


Diego



Re: Yet another longtable problem

2000-03-18 Thread Diego A. Puertas F.

El 18/03/00, Herbert Voss escribió:

> "Diego A. Puertas F." wrote:
> > 
> > Hello list.
> > 
> > OK, I have a long table, in a float, and it won't split in two pages.
> > 
> > When I get it out of the float, it breaks perfectly, just in the row
> > where I've said so, but I put it into a float and she does not.
> > 
> > I need the table to be numbered.
> 
> have a look at the sample file, there are three tables:
> 1. floating
> 2. nonfloating
> 3. floating
> 
> the nonfloating one is countered by the same table-counter.
> but pay attention, if you delete the h(ere)-option in 
> layout->document->float placement
> latex put the two floating tables before the nonfloating one
> and therefore countig is incorrect.
> 
> hope this helps
> Herbert
> 
> 

There is a problem Herbert, the table does not appear on the list of
tables, and it must.



Bibliography counted on the TOC

2000-03-18 Thread Diego A. Puertas F.

Hi list!

Well, by itself, the bibliography does not appear counted on the table of
contents. I've managed to put it in by using the following LaTeX comand
(which have just been posted on the list) on the first item of the biblio:

\addcontentsline{toc}{chapter}{Bibliografía}

I was wondering:

- Is there is a more elegant way to do this?, and

- why does not the list apears on TOC by default?


I'll apreciate all the help you could bring.

--

By the way, I want to apologize for the 3 posts of the same subject the
other nigth (to be fair, the frist 2 ones were Pine's fault :-)

It was embarrassing, it is probe that, when you are sleepy, you got to
sleep, if not such things (and worst) can happen. Simple true.



Diego



Re: Wrong Hypenation

2000-03-18 Thread Diego A. Puertas F.

El 18/03/00, Kayvan A. Sylvan escribió:

> On Sun, Mar 19, 2000 at 01:55:51AM -0400, Diego A. Puertas F. wrote:
> > LyX is not hypenating rigth.
> 
> What version OS? What version of tetex?
> 
> This is most certainly a TeX configuration problem and not a LyX issue.


Well, It is Mandrake 7.0 with tetex 1.0.6 an LyX 1.1.2, next there is a
list of the packages installed:

tetex-dvips-1.0.6-6mdk
tetex-latex-1.0.6-6mdk
tetex-xdvi-1.0.6-6mdk
tetex-dvilj-1.0.6-6mdk
tetex-1.0.6-6mdk
tetex-afm-1.0.6-6mdk
tetex-doc-1.0.6-19990903
lyx-1.1.2-1



Re: Wrong Hypenation

2000-03-18 Thread Diego A. Puertas F.

El 19/03/00, Diego A. Puertas F. escribió:

> LyX is not hypenating rigth, I don't know about hypenation rules in other
> languages, but in Spanish LyX isn't doing it the rigth way.
> 
> For example, it's hypenating  "explicación" like this: expl-icación; it's
> breaking the syllable "pli" and it shouldn't.
> 
> Can anybody help me?
> 
> Thanks
> 
> 
>   Diego
> 
> 

Well, Kayvan, there are 150 pages, I had begun a \hyphenation{} in the
preamble but is a mounstrous work, more when you consider that when you
hyphenate right a word, another one breaks where it shouldn't.

I'm trying to use \usepackage[spanish]{babel}, but LyX give me a box that
says:

LaTeX Error: Option clash for package babel
I.25 \makeanother


By the way, which is that error you were talking about, maybe It can give
me some ligths.



Problem with \pagenumbering

2000-03-16 Thread Diego A. Puertas F.

Hello list. My thesis is now ready for the first revisión (at last) and
I'm just in the formating stage. 

I'm using \pagenumbering{roman} at the very first line of the document, 
and \pagenumbering{arabic} in the same line of the paragraph Chapter 1, in
order to have the pages numbered until chapter 1 in romans and since then
in arabics. But there is a problem, the first two pages of the output
apear numbered as "i" (the real number "i" and the suposed-to-be number
"ii"), the same thing happens with page 1.
The number of the 2 pages where I insert \pagenumbering{} apears
repeated in the next page !!!

Anyone knows what's going on? I'll apreciate any sugestions.


Diego 





(Not so) wild development ideas

2000-03-16 Thread Diego A. Puertas F.

Doesn't sound like a good idea to have the "Insert Cross Reference" box
list the labels indented?

The labels indented by the place where they were declared. It will be a
lot much easier to find one of them when you have (like in my case) about
250 of them.

I mean something like this:

.

The chapter
One section
FIG: A figure on the section
A subsection
TAB: a table in the subsection
Another Subsection
Another section
Yet another Subsection 
Another chapter

.


An so on.

Is there any effort going on about this?




Problem with \pagenumbering

2000-03-16 Thread Diego A. Puertas F.

Hello list. My thesis is now ready for the first revisión (at last) and
I'm just in the formating stage. 

I'm using \pagenumbering{roman} at the very first line of the document, 
and \pagenumbering{arabic} in the same line of the paragraph Chapter 1, in
order to have the pages numbered until chapter 1 in romans and since then
in arabics. But there is a problem, the first two pages of the output
apear numbered as "i" (the real number "i" and the suposed-to-be number
"ii"), the same thing happens with page 1.
The number of the 2 pages where I insert \pagenumbering{} apears
repeated in the next page !!!

Anyone knows what's going on? I'll apreciate any sugestions.


Diego 





(Not so) wild development ideas

2000-03-16 Thread Diego A. Puertas F.

Doesn't sound like a good idea to have the "Insert Cross Reference" box
list the labels indented?

The labels indented by the place where they were declared. It will be a
lot much easier to find one of them when you have (like in my case) about
250 of them.

I mean something like this:

.

The chapter
One section
FIG: A figure on the section
A subsection
TAB: a table in the subsection
Another Subsection
Another section
Yet another Subsection 
Another chapter

.


An so on.

Is there any effort going on about this?




Problem with \pagenumbering

2000-03-16 Thread Diego A. Puertas F.

Hello list. My thesis is now ready for the first revisión (at last) and
I'm just in the formating stage. 

I'm using \pagenumbering{roman} at the very first line of the document, 
and \pagenumbering{arabic} in the same line of the paragraph Chapter 1, in
order to have the pages numbered until chapter 1 in romans and since then
in arabics. But there is a problem, the first two pages of the output
apear numbered as "i" (the real number "i" and the suposed-to-be number
"ii"), the same thing happens with page 1.
The number of the 2 pages where I insert \pagenumbering{} apears
repeated in the next page !!!

Anyone knows what's going on? I'll apreciate any sugestions.


Diego 





(Not so) wild development ideas

2000-03-16 Thread Diego A. Puertas F.

Doesn't sound like a good idea to have the "Insert Cross Reference" box
list the labels indented?

The labels indented by the place where they were declared. It will be a
lot much easier to find one of them when you have (like in my case) about
250 of them.

I mean something like this:

.

The chapter
One section
FIG: A figure on the section
A subsection
TAB: a table in the subsection
Another Subsection
Another section
Yet another Subsection 
Another chapter

.


An so on.

Is there any effort going on about this?




Re: US-Keyboard + LyX + spanish

1999-12-07 Thread Diego A. Puertas F.

Esa es una forma de configurar el teclado en ingles para acentos y eñes 
que puedes automatizar aún mas, el archivo pav.map al que haces referencia
ponlo en tu directorio HOME y llámalo .Xmodmap, asi se cargará 
automáticamente cada vez que uses Xwindows.


Aún así existe una forma de configurar solamente a lyx para poder tipear
acentos y eñes, y esto sin usar la "altgr" sino con los acentos tal como
los usarias en un teclado en español: tecleando primero ' y luego la vocal
en cuestión ;  de una forma análoga funciona para la diéresis y la eñe
( la eñe tipeando primero ~ y luego la n ).

Tienes que crear un archivo "espanol.kmap" y lo ubicas en $HOME/.lyx/kbd
(o en $LYXHOME/share/lyx/kbd si eres root) que contenga lo siguiente (no
usar la numeración es solo para referencia):

1:  \kmod ' acute aeiouAEIOU
2:  \kmod ~ tilde nN
3:  \kmod ` umlaut uU
4:  \kxmod acute i "\\'{\\i}"

 -  En la linea 1 esta la definición para los acentos agudos (el
único tipo de acento en español).
 -  En la linea 2 el "acento" para la eñe, la tilde ~.
 -  En la linea 3 la dieresis, que yo la configuré para la tecla `
pero se puede usar cualquier otra tecla ( "  :  etc ).

Notese que estas lineas funcionan así:
\kmod tecla que activa la acción tipo de acento letras que podrán ser
objeto de la acción

 -  La cuarta línea es para prevenir que se les punga el punto a las i
acentuadas, no tengo la menor idea de como funciona. 

Luego de esto debes modificar el archivo $HOME/.lyx/lyxrc
( $LYXHOME/share/lyx/lyxrc si eres root ) para que incluya lo siguiente:

\kbmap true
\kbmap_primary espanol


y eso es todo, la próxima vez que arranques lyx debes poder usar los
acentos, eñes y diéresis sin tener que usar "altgr".



Fancy Tables

1999-12-07 Thread Diego A. Puertas F.

Any one knows how to make a table like this:

+---+
| |  Over titles 2  3  |  
|---|
| title 1 | title  2 | title  3 |
|---|
| data| data | data |
| data| data | data |
| data| data | data |
+---+


I have 2 lines of titles, in the first line there is a title over title 2
and 3; in other words, how can i join 2 cells of a table an have a result
like this table.



Re: US-Keyboard + LyX + spanish

1999-12-07 Thread Diego A. Puertas F.

Esa es una forma de configurar el teclado en ingles para acentos y eñes 
que puedes automatizar aún mas, el archivo pav.map al que haces referencia
ponlo en tu directorio HOME y llámalo .Xmodmap, asi se cargará 
automáticamente cada vez que uses Xwindows.


Aún así existe una forma de configurar solamente a lyx para poder tipear
acentos y eñes, y esto sin usar la "altgr" sino con los acentos tal como
los usarias en un teclado en español: tecleando primero ' y luego la vocal
en cuestión ;  de una forma análoga funciona para la diéresis y la eñe
( la eñe tipeando primero ~ y luego la n ).

Tienes que crear un archivo "espanol.kmap" y lo ubicas en $HOME/.lyx/kbd
(o en $LYXHOME/share/lyx/kbd si eres root) que contenga lo siguiente (no
usar la numeración es solo para referencia):

1:  \kmod ' acute aeiouAEIOU
2:  \kmod ~ tilde nN
3:  \kmod ` umlaut uU
4:  \kxmod acute i "\\'{\\i}"

 -  En la linea 1 esta la definición para los acentos agudos (el
único tipo de acento en español).
 -  En la linea 2 el "acento" para la eñe, la tilde ~.
 -  En la linea 3 la dieresis, que yo la configuré para la tecla `
pero se puede usar cualquier otra tecla ( "  :  etc ).

Notese que estas lineas funcionan así:
\kmod tecla que activa la acción tipo de acento letras que podrán ser
objeto de la acción

 -  La cuarta línea es para prevenir que se les punga el punto a las i
acentuadas, no tengo la menor idea de como funciona. 

Luego de esto debes modificar el archivo $HOME/.lyx/lyxrc
( $LYXHOME/share/lyx/lyxrc si eres root ) para que incluya lo siguiente:

\kbmap true
\kbmap_primary espanol


y eso es todo, la próxima vez que arranques lyx debes poder usar los
acentos, eñes y diéresis sin tener que usar "altgr".



Fancy Tables

1999-12-07 Thread Diego A. Puertas F.

Any one knows how to make a table like this:

+---+
| |  Over titles 2  3  |  
|---|
| title 1 | title  2 | title  3 |
|---|
| data| data | data |
| data| data | data |
| data| data | data |
+---+


I have 2 lines of titles, in the first line there is a title over title 2
and 3; in other words, how can i join 2 cells of a table an have a result
like this table.



Re: US-Keyboard + LyX + spanish

1999-12-07 Thread Diego A. Puertas F.

Esa es una forma de configurar el teclado en ingles para acentos y eñes 
que puedes automatizar aún mas, el archivo pav.map al que haces referencia
ponlo en tu directorio HOME y llámalo .Xmodmap, asi se cargará 
automáticamente cada vez que uses Xwindows.


Aún así existe una forma de configurar solamente a lyx para poder tipear
acentos y eñes, y esto sin usar la "altgr" sino con los acentos tal como
los usarias en un teclado en español: tecleando primero ' y luego la vocal
en cuestión ;  de una forma análoga funciona para la diéresis y la eñe
( la eñe tipeando primero ~ y luego la n ).

Tienes que crear un archivo "espanol.kmap" y lo ubicas en $HOME/.lyx/kbd
(o en $LYXHOME/share/lyx/kbd si eres root) que contenga lo siguiente (no
usar la numeración es solo para referencia):

1:  \kmod ' acute aeiouAEIOU
2:  \kmod ~ tilde nN
3:  \kmod ` umlaut uU
4:  \kxmod acute i "\\'{\\i}"

 -  En la linea 1 esta la definición para los acentos agudos (el
único tipo de acento en español).
 -  En la linea 2 el "acento" para la eñe, la tilde ~.
 -  En la linea 3 la dieresis, que yo la configuré para la tecla `
pero se puede usar cualquier otra tecla ( "  :  etc ).

Notese que estas lineas funcionan así:
\kmod   

 -  La cuarta línea es para prevenir que se les punga el punto a las i
acentuadas, no tengo la menor idea de como funciona. 

Luego de esto debes modificar el archivo $HOME/.lyx/lyxrc
( $LYXHOME/share/lyx/lyxrc si eres root ) para que incluya lo siguiente:

\kbmap true
\kbmap_primary espanol


y eso es todo, la próxima vez que arranques lyx debes poder usar los
acentos, eñes y diéresis sin tener que usar "altgr".



Fancy Tables

1999-12-07 Thread Diego A. Puertas F.

Any one knows how to make a table like this:

+---+
| |  Over titles 2 & 3  |  
|---|
| title 1 | title  2 | title  3 |
|---|
| data| data | data |
| data| data | data |
| data| data | data |
+---+


I have 2 lines of titles, in the first line there is a title over title 2
and 3; in other words, how can i join 2 cells of a table an have a result
like this table.