Re: Cannot find vezes.sty file

2012-12-29 Thread João Alberto
On Fri, Dec 28, 2012 at 2:45 PM, Richard Heck rgh...@lyx.org wrote:

 On 12/27/2012 05:03 PM, João Alberto wrote:

 I just installed the most recent version of Lyx and when I tried to
 generate the PDF Lyx/MiKTeX requested the vezes.sty file. I updated MiKTex
 repositories and searched in CTAN, but I cannot find this file. Any ideas
 on how to solve this problem?

 What file were you trying to compile? Post it here, if possible.

 rh


Any file. If I write Test and try to compile, the error is the same.

The file has no preamble.
João Alberto Ferreira


Re: Cannot find vezes.sty file

2012-12-29 Thread Jürgen Spitzmüller
José Matos wrote:
 On 12/28/2012 04:45 PM, Richard Heck wrote:
  What file were you trying to compile? Post it here, if possible.
  
  rh 
 
 The name vezes is times in Portuguese in the sense of 2 times 4 equal
 to 8. So the name sound suspiciously like someone wrote an sty file to
 deal with multiplication. Here I am just guessing.

Actually, if you run LyX (branch) with Protugues l7n and select Times Roman 
font, Lyx calls

\usepackage{vezes}

I'll have a look.

Jürgen


Re: Cannot find vezes.sty file

2012-12-29 Thread Richard Heck

On 12/29/2012 11:11 AM, João Alberto wrote:


On Fri, Dec 28, 2012 at 2:45 PM, Richard Heck rgh...@lyx.org 
mailto:rgh...@lyx.org wrote:


On 12/27/2012 05:03 PM, João Alberto wrote:

I just installed the most recent version of Lyx and when I
tried to generate the PDF Lyx/MiKTeX requested the vezes.sty
file. I updated MiKTex repositories and searched in CTAN, but
I cannot find this file. Any ideas on how to solve this problem?

What file were you trying to compile? Post it here, if possible.

rh


Any file. If I write Test and try to compile, the error is the same.
The file has no preamble.

That is very strange. Please post some such file, still. There are other 
questions I have that will be easier to answer then.


Do you know how to compile a normal LaTeX file? If so, do you have the 
same problem there?


Richard



Re: Cannot find vezes.sty file

2012-12-29 Thread Richard Heck


Ignore that message. Jurgen seems to be on it.

rh

On 12/29/2012 11:24 AM, Richard Heck wrote:

On 12/29/2012 11:11 AM, João Alberto wrote:


On Fri, Dec 28, 2012 at 2:45 PM, Richard Heck rgh...@lyx.org 
mailto:rgh...@lyx.org wrote:


On 12/27/2012 05:03 PM, João Alberto wrote:

I just installed the most recent version of Lyx and when I
tried to generate the PDF Lyx/MiKTeX requested the vezes.sty
file. I updated MiKTex repositories and searched in CTAN, but
I cannot find this file. Any ideas on how to solve this problem?

What file were you trying to compile? Post it here, if possible.

rh


Any file. If I write Test and try to compile, the error is the same.
The file has no preamble.

That is very strange. Please post some such file, still. There are 
other questions I have that will be easier to answer then.


Do you know how to compile a normal LaTeX file? If so, do you have the 
same problem there?


Richard





[patch] Re: Cannot find vezes.sty file

2012-12-29 Thread Jürgen Spitzmüller
Jürgen Spitzmüller wrote:
 Actually, if you run LyX (branch) with Protugues l7n and select Times
 Roman  font, Lyx calls
 
 \usepackage{vezes}
 
 I'll have a look.

Indeed an incredibely stupid bug: we translate the combo data! Richard, I 
suppose I can submit the attached patch.

@João: For the time being, do not select Times Roman from the font combo 
with Portugues localization, but enter \usepackage{mathptmx} to the preamble.

Jürgendiff --git a/src/frontends/qt4/GuiDocument.cpp b/src/frontends/qt4/GuiDocument.cpp
index b88083a..600e4f2 100644
--- a/src/frontends/qt4/GuiDocument.cpp
+++ b/src/frontends/qt4/GuiDocument.cpp
@@ -1732,19 +1732,19 @@ void GuiDocument::updateFontlist()
 		QString font = qt_(tex_fonts_roman_gui[n]);
 		if (!isFontAvailable(tex_fonts_roman[n]))
 			font += qt_( (not installed));
-		fontModule-fontsRomanCO-addItem(font, qt_(tex_fonts_roman[n]));
+		fontModule-fontsRomanCO-addItem(font, toqstr(tex_fonts_roman[n]));
 	}
 	for (int n = 0; tex_fonts_sans[n][0]; ++n) {
 		QString font = qt_(tex_fonts_sans_gui[n]);
 		if (!isFontAvailable(tex_fonts_sans[n]))
 			font += qt_( (not installed));
-		fontModule-fontsSansCO-addItem(font, qt_(tex_fonts_sans[n]));
+		fontModule-fontsSansCO-addItem(font, toqstr(tex_fonts_sans[n]));
 	}
 	for (int n = 0; tex_fonts_monospaced[n][0]; ++n) {
 		QString font = qt_(tex_fonts_monospaced_gui[n]);
 		if (!isFontAvailable(tex_fonts_monospaced[n]))
 			font += qt_( (not installed));
-		fontModule-fontsTypewriterCO-addItem(font, qt_(tex_fonts_monospaced[n]));
+		fontModule-fontsTypewriterCO-addItem(font, toqstr(tex_fonts_monospaced[n]));
 	}
 }
 


Re: [patch] Re: Cannot find vezes.sty file

2012-12-29 Thread Richard Heck

On 12/29/2012 11:40 AM, Jürgen Spitzmüller wrote:

Jürgen Spitzmüller wrote:

Actually, if you run LyX (branch) with Protugues l7n and select Times
Roman  font, Lyx calls

\usepackage{vezes}

I'll have a look.

Indeed an incredibely stupid bug: we translate the combo data! Richard, I
suppose I can submit the attached patch.

Yes, please. Amazing that hasn't shown up before.

I looked too, but was confused because I only found vezes in the po 
files and tutorial.


rh



Re: Cannot find vezes.sty file

2012-12-29 Thread João Alberto
On Fri, Dec 28, 2012 at 2:45 PM, Richard Heck rgh...@lyx.org wrote:

 On 12/27/2012 05:03 PM, João Alberto wrote:

 I just installed the most recent version of Lyx and when I tried to
 generate the PDF Lyx/MiKTeX requested the vezes.sty file. I updated MiKTex
 repositories and searched in CTAN, but I cannot find this file. Any ideas
 on how to solve this problem?

 What file were you trying to compile? Post it here, if possible.

 rh


Any file. If I write Test and try to compile, the error is the same.

The file has no preamble.
João Alberto Ferreira


Re: Cannot find vezes.sty file

2012-12-29 Thread Jürgen Spitzmüller
José Matos wrote:
 On 12/28/2012 04:45 PM, Richard Heck wrote:
  What file were you trying to compile? Post it here, if possible.
  
  rh 
 
 The name vezes is times in Portuguese in the sense of 2 times 4 equal
 to 8. So the name sound suspiciously like someone wrote an sty file to
 deal with multiplication. Here I am just guessing.

Actually, if you run LyX (branch) with Protugues l7n and select Times Roman 
font, Lyx calls

\usepackage{vezes}

I'll have a look.

Jürgen


Re: Cannot find vezes.sty file

2012-12-29 Thread Richard Heck

On 12/29/2012 11:11 AM, João Alberto wrote:


On Fri, Dec 28, 2012 at 2:45 PM, Richard Heck rgh...@lyx.org 
mailto:rgh...@lyx.org wrote:


On 12/27/2012 05:03 PM, João Alberto wrote:

I just installed the most recent version of Lyx and when I
tried to generate the PDF Lyx/MiKTeX requested the vezes.sty
file. I updated MiKTex repositories and searched in CTAN, but
I cannot find this file. Any ideas on how to solve this problem?

What file were you trying to compile? Post it here, if possible.

rh


Any file. If I write Test and try to compile, the error is the same.
The file has no preamble.

That is very strange. Please post some such file, still. There are other 
questions I have that will be easier to answer then.


Do you know how to compile a normal LaTeX file? If so, do you have the 
same problem there?


Richard



Re: Cannot find vezes.sty file

2012-12-29 Thread Richard Heck


Ignore that message. Jurgen seems to be on it.

rh

On 12/29/2012 11:24 AM, Richard Heck wrote:

On 12/29/2012 11:11 AM, João Alberto wrote:


On Fri, Dec 28, 2012 at 2:45 PM, Richard Heck rgh...@lyx.org 
mailto:rgh...@lyx.org wrote:


On 12/27/2012 05:03 PM, João Alberto wrote:

I just installed the most recent version of Lyx and when I
tried to generate the PDF Lyx/MiKTeX requested the vezes.sty
file. I updated MiKTex repositories and searched in CTAN, but
I cannot find this file. Any ideas on how to solve this problem?

What file were you trying to compile? Post it here, if possible.

rh


Any file. If I write Test and try to compile, the error is the same.
The file has no preamble.

That is very strange. Please post some such file, still. There are 
other questions I have that will be easier to answer then.


Do you know how to compile a normal LaTeX file? If so, do you have the 
same problem there?


Richard





[patch] Re: Cannot find vezes.sty file

2012-12-29 Thread Jürgen Spitzmüller
Jürgen Spitzmüller wrote:
 Actually, if you run LyX (branch) with Protugues l7n and select Times
 Roman  font, Lyx calls
 
 \usepackage{vezes}
 
 I'll have a look.

Indeed an incredibely stupid bug: we translate the combo data! Richard, I 
suppose I can submit the attached patch.

@João: For the time being, do not select Times Roman from the font combo 
with Portugues localization, but enter \usepackage{mathptmx} to the preamble.

Jürgendiff --git a/src/frontends/qt4/GuiDocument.cpp b/src/frontends/qt4/GuiDocument.cpp
index b88083a..600e4f2 100644
--- a/src/frontends/qt4/GuiDocument.cpp
+++ b/src/frontends/qt4/GuiDocument.cpp
@@ -1732,19 +1732,19 @@ void GuiDocument::updateFontlist()
 		QString font = qt_(tex_fonts_roman_gui[n]);
 		if (!isFontAvailable(tex_fonts_roman[n]))
 			font += qt_( (not installed));
-		fontModule-fontsRomanCO-addItem(font, qt_(tex_fonts_roman[n]));
+		fontModule-fontsRomanCO-addItem(font, toqstr(tex_fonts_roman[n]));
 	}
 	for (int n = 0; tex_fonts_sans[n][0]; ++n) {
 		QString font = qt_(tex_fonts_sans_gui[n]);
 		if (!isFontAvailable(tex_fonts_sans[n]))
 			font += qt_( (not installed));
-		fontModule-fontsSansCO-addItem(font, qt_(tex_fonts_sans[n]));
+		fontModule-fontsSansCO-addItem(font, toqstr(tex_fonts_sans[n]));
 	}
 	for (int n = 0; tex_fonts_monospaced[n][0]; ++n) {
 		QString font = qt_(tex_fonts_monospaced_gui[n]);
 		if (!isFontAvailable(tex_fonts_monospaced[n]))
 			font += qt_( (not installed));
-		fontModule-fontsTypewriterCO-addItem(font, qt_(tex_fonts_monospaced[n]));
+		fontModule-fontsTypewriterCO-addItem(font, toqstr(tex_fonts_monospaced[n]));
 	}
 }
 


Re: [patch] Re: Cannot find vezes.sty file

2012-12-29 Thread Richard Heck

On 12/29/2012 11:40 AM, Jürgen Spitzmüller wrote:

Jürgen Spitzmüller wrote:

Actually, if you run LyX (branch) with Protugues l7n and select Times
Roman  font, Lyx calls

\usepackage{vezes}

I'll have a look.

Indeed an incredibely stupid bug: we translate the combo data! Richard, I
suppose I can submit the attached patch.

Yes, please. Amazing that hasn't shown up before.

I looked too, but was confused because I only found vezes in the po 
files and tutorial.


rh



Re: Cannot find vezes.sty file

2012-12-29 Thread João Alberto
On Fri, Dec 28, 2012 at 2:45 PM, Richard Heck  wrote:

> On 12/27/2012 05:03 PM, João Alberto wrote:
>
>> I just installed the most recent version of Lyx and when I tried to
>> generate the PDF Lyx/MiKTeX requested the vezes.sty file. I updated MiKTex
>> repositories and searched in CTAN, but I cannot find this file. Any ideas
>> on how to solve this problem?
>>
> What file were you trying to compile? Post it here, if possible.
>
> rh
>
>
Any file. If I write "Test" and try to compile, the error is the same.

The file has no preamble.
João Alberto Ferreira


Re: Cannot find vezes.sty file

2012-12-29 Thread Jürgen Spitzmüller
José Matos wrote:
> On 12/28/2012 04:45 PM, Richard Heck wrote:
> > What file were you trying to compile? Post it here, if possible.
> > 
> > rh 
> 
> The name vezes is "times" in Portuguese in the sense of 2 times 4 equal
> to 8. So the name sound suspiciously like someone wrote an sty file to
> deal with multiplication. Here I am just guessing.

Actually, if you run LyX (branch) with Protugues l7n and select "Times Roman" 
font, Lyx calls

\usepackage{vezes}

I'll have a look.

Jürgen


Re: Cannot find vezes.sty file

2012-12-29 Thread Richard Heck

On 12/29/2012 11:11 AM, João Alberto wrote:


On Fri, Dec 28, 2012 at 2:45 PM, Richard Heck > wrote:


On 12/27/2012 05:03 PM, João Alberto wrote:

I just installed the most recent version of Lyx and when I
tried to generate the PDF Lyx/MiKTeX requested the vezes.sty
file. I updated MiKTex repositories and searched in CTAN, but
I cannot find this file. Any ideas on how to solve this problem?

What file were you trying to compile? Post it here, if possible.

rh


Any file. If I write "Test" and try to compile, the error is the same.
The file has no preamble.

That is very strange. Please post some such file, still. There are other 
questions I have that will be easier to answer then.


Do you know how to compile a normal LaTeX file? If so, do you have the 
same problem there?


Richard



Re: Cannot find vezes.sty file

2012-12-29 Thread Richard Heck


Ignore that message. Jurgen seems to be on it.

rh

On 12/29/2012 11:24 AM, Richard Heck wrote:

On 12/29/2012 11:11 AM, João Alberto wrote:


On Fri, Dec 28, 2012 at 2:45 PM, Richard Heck > wrote:


On 12/27/2012 05:03 PM, João Alberto wrote:

I just installed the most recent version of Lyx and when I
tried to generate the PDF Lyx/MiKTeX requested the vezes.sty
file. I updated MiKTex repositories and searched in CTAN, but
I cannot find this file. Any ideas on how to solve this problem?

What file were you trying to compile? Post it here, if possible.

rh


Any file. If I write "Test" and try to compile, the error is the same.
The file has no preamble.

That is very strange. Please post some such file, still. There are 
other questions I have that will be easier to answer then.


Do you know how to compile a normal LaTeX file? If so, do you have the 
same problem there?


Richard





[patch] Re: Cannot find vezes.sty file

2012-12-29 Thread Jürgen Spitzmüller
Jürgen Spitzmüller wrote:
> Actually, if you run LyX (branch) with Protugues l7n and select "Times
> Roman"  font, Lyx calls
> 
> \usepackage{vezes}
> 
> I'll have a look.

Indeed an incredibely stupid bug: we translate the combo data! Richard, I 
suppose I can submit the attached patch.

@João: For the time being, do not select "Times Roman" from the font combo 
with Portugues localization, but enter \usepackage{mathptmx} to the preamble.

Jürgendiff --git a/src/frontends/qt4/GuiDocument.cpp b/src/frontends/qt4/GuiDocument.cpp
index b88083a..600e4f2 100644
--- a/src/frontends/qt4/GuiDocument.cpp
+++ b/src/frontends/qt4/GuiDocument.cpp
@@ -1732,19 +1732,19 @@ void GuiDocument::updateFontlist()
 		QString font = qt_(tex_fonts_roman_gui[n]);
 		if (!isFontAvailable(tex_fonts_roman[n]))
 			font += qt_(" (not installed)");
-		fontModule->fontsRomanCO->addItem(font, qt_(tex_fonts_roman[n]));
+		fontModule->fontsRomanCO->addItem(font, toqstr(tex_fonts_roman[n]));
 	}
 	for (int n = 0; tex_fonts_sans[n][0]; ++n) {
 		QString font = qt_(tex_fonts_sans_gui[n]);
 		if (!isFontAvailable(tex_fonts_sans[n]))
 			font += qt_(" (not installed)");
-		fontModule->fontsSansCO->addItem(font, qt_(tex_fonts_sans[n]));
+		fontModule->fontsSansCO->addItem(font, toqstr(tex_fonts_sans[n]));
 	}
 	for (int n = 0; tex_fonts_monospaced[n][0]; ++n) {
 		QString font = qt_(tex_fonts_monospaced_gui[n]);
 		if (!isFontAvailable(tex_fonts_monospaced[n]))
 			font += qt_(" (not installed)");
-		fontModule->fontsTypewriterCO->addItem(font, qt_(tex_fonts_monospaced[n]));
+		fontModule->fontsTypewriterCO->addItem(font, toqstr(tex_fonts_monospaced[n]));
 	}
 }
 


Re: [patch] Re: Cannot find vezes.sty file

2012-12-29 Thread Richard Heck

On 12/29/2012 11:40 AM, Jürgen Spitzmüller wrote:

Jürgen Spitzmüller wrote:

Actually, if you run LyX (branch) with Protugues l7n and select "Times
Roman"  font, Lyx calls

\usepackage{vezes}

I'll have a look.

Indeed an incredibely stupid bug: we translate the combo data! Richard, I
suppose I can submit the attached patch.

Yes, please. Amazing that hasn't shown up before.

I looked too, but was confused because I only found "vezes" in the po 
files and tutorial.


rh



Re: Cannot find vezes.sty file

2012-12-28 Thread Richard Heck

On 12/27/2012 05:03 PM, João Alberto wrote:
I just installed the most recent version of Lyx and when I tried to 
generate the PDF Lyx/MiKTeX requested the vezes.sty file. I updated 
MiKTex repositories and searched in CTAN, but I cannot find this file. 
Any ideas on how to solve this problem?

What file were you trying to compile? Post it here, if possible.

rh



Re: Cannot find vezes.sty file

2012-12-28 Thread José Matos
On 12/28/2012 04:45 PM, Richard Heck wrote:
 What file were you trying to compile? Post it here, if possible.

 rh 

The name vezes is times in Portuguese in the sense of 2 times 4 equal
to 8. So the name sound suspiciously like someone wrote an sty file to
deal with multiplication. Here I am just guessing. :-)

Funnily searching for latex vezes.sty returns me the original message
of this thread as its first result. :-)

Regards,

-- 
José Matos



Re: Cannot find vezes.sty file

2012-12-28 Thread Richard Heck

On 12/28/2012 11:52 AM, José Matos wrote:

On 12/28/2012 04:45 PM, Richard Heck wrote:

What file were you trying to compile? Post it here, if possible.

rh

The name vezes is times in Portuguese in the sense of 2 times 4 equal
to 8. So the name sound suspiciously like someone wrote an sty file to
deal with multiplication. Here I am just guessing. :-)

Presumably you need to remove the \usepackage declaration from the 
preamble, then.



Funnily searching for latex vezes.sty returns me the original message
of this thread as its first result. :-)

Yes, I saw that.

rh



Re: Cannot find vezes.sty file

2012-12-28 Thread Richard Heck

On 12/27/2012 05:03 PM, João Alberto wrote:
I just installed the most recent version of Lyx and when I tried to 
generate the PDF Lyx/MiKTeX requested the vezes.sty file. I updated 
MiKTex repositories and searched in CTAN, but I cannot find this file. 
Any ideas on how to solve this problem?

What file were you trying to compile? Post it here, if possible.

rh



Re: Cannot find vezes.sty file

2012-12-28 Thread José Matos
On 12/28/2012 04:45 PM, Richard Heck wrote:
 What file were you trying to compile? Post it here, if possible.

 rh 

The name vezes is times in Portuguese in the sense of 2 times 4 equal
to 8. So the name sound suspiciously like someone wrote an sty file to
deal with multiplication. Here I am just guessing. :-)

Funnily searching for latex vezes.sty returns me the original message
of this thread as its first result. :-)

Regards,

-- 
José Matos



Re: Cannot find vezes.sty file

2012-12-28 Thread Richard Heck

On 12/28/2012 11:52 AM, José Matos wrote:

On 12/28/2012 04:45 PM, Richard Heck wrote:

What file were you trying to compile? Post it here, if possible.

rh

The name vezes is times in Portuguese in the sense of 2 times 4 equal
to 8. So the name sound suspiciously like someone wrote an sty file to
deal with multiplication. Here I am just guessing. :-)

Presumably you need to remove the \usepackage declaration from the 
preamble, then.



Funnily searching for latex vezes.sty returns me the original message
of this thread as its first result. :-)

Yes, I saw that.

rh



Re: Cannot find vezes.sty file

2012-12-28 Thread Richard Heck

On 12/27/2012 05:03 PM, João Alberto wrote:
I just installed the most recent version of Lyx and when I tried to 
generate the PDF Lyx/MiKTeX requested the vezes.sty file. I updated 
MiKTex repositories and searched in CTAN, but I cannot find this file. 
Any ideas on how to solve this problem?

What file were you trying to compile? Post it here, if possible.

rh



Re: Cannot find vezes.sty file

2012-12-28 Thread José Matos
On 12/28/2012 04:45 PM, Richard Heck wrote:
> What file were you trying to compile? Post it here, if possible.
>
> rh 

The name vezes is "times" in Portuguese in the sense of 2 times 4 equal
to 8. So the name sound suspiciously like someone wrote an sty file to
deal with multiplication. Here I am just guessing. :-)

Funnily searching for "latex vezes.sty" returns me the original message
of this thread as its first result. :-)

Regards,

-- 
José Matos



Re: Cannot find vezes.sty file

2012-12-28 Thread Richard Heck

On 12/28/2012 11:52 AM, José Matos wrote:

On 12/28/2012 04:45 PM, Richard Heck wrote:

What file were you trying to compile? Post it here, if possible.

rh

The name vezes is "times" in Portuguese in the sense of 2 times 4 equal
to 8. So the name sound suspiciously like someone wrote an sty file to
deal with multiplication. Here I am just guessing. :-)

Presumably you need to remove the \usepackage declaration from the 
preamble, then.



Funnily searching for "latex vezes.sty" returns me the original message
of this thread as its first result. :-)

Yes, I saw that.

rh



Cannot find vezes.sty file

2012-12-27 Thread João Alberto
I just installed the most recent version of Lyx and when I tried to
generate the PDF Lyx/MiKTeX requested the vezes.sty file. I updated MiKTex
repositories and searched in CTAN, but I cannot find this file. Any ideas
on how to solve this problem?

The error presented by Lyx follows.

Cordially,

João Alberto Ferreira.

This is pdfTeX, Version 3.1415926-2.4-1.40.13 (MiKTeX 2.9) (preloaded
format=pdflatex 2012.12.27) 27 DEC 2012 19:54

entering extended mode

**FuzzyController.tex


(C:\Users\Joao\AppData\Local\Temp\lyx_tmpdir.Hp1732\lyx_tmpbuf2\FuzzyController

.tex

LaTeX2e 2011/06/27

Babel v3.8m and hyphenation patterns for english, afrikaans,
ancientgreek, ar

abic, armenian, assamese, basque, bengali, bokmal, bulgarian, catalan,
coptic,

croatian, czech, danish, dutch, esperanto, estonian, farsi, finnish,
french, ga

lician, german, german-x-2012-05-30, greek, gujarati, hindi, hungarian,
iceland

ic, indonesian, interlingua, irish, italian, kannada, kurmanji, latin,
latvian,

lithuanian, malayalam, marathi, mongolian, mongolianlmc, monogreek,
ngerman, n

german-x-2012-05-30, nynorsk, oriya, panjabi, pinyin, polish, portuguese,
roman

ian, russian, sanskrit, serbian, slovak, slovenian, spanish, swedish,
swissgerm

an, tamil, telugu, turkish, turkmen, ukenglish, ukrainian, uppersorbian,
usengl

ishmax, welsh, loaded.


(C:\Program Files\MiKTeX 2.9\tex\latex\base\article.cls

Document Class: article 2007/10/19 v1.4h Standard LaTeX document class

(C:\Program Files\MiKTeX 2.9\tex\latex\base\size12.clo

File: size12.clo 2007/10/19 v1.4h Standard LaTeX file (size option)

)

\c@part=\count79

\c@section=\count80

\c@subsection=\count81

\c@subsubsection=\count82

\c@paragraph=\count83

\c@subparagraph=\count84

\c@figure=\count85

\c@table=\count86

\abovecaptionskip=\skip41

\belowcaptionskip=\skip42

\bibindent=\dimen102

)


! LaTeX Error: File `vezes.sty' not found.


Type X to quit or RETURN to proceed,

or enter new name. (Default extension: sty)


Enter file name:

! Emergency stop.

read *

 l.7 \renewcommand

{\familydefault}{\rmdefault}

*** (cannot \read from terminal in nonstop modes)


 Here is how much of TeX's memory you used:

205 strings out of 493921

2369 string characters out of 3147284

49031 words of memory out of 300

3586 multiletter control sequences out of 15000+20

3938 words of font info for 15 fonts, out of 300 for 9000

841 hyphenation exceptions out of 8191

22i,0n,19p,165b,36s stack positions out of 5000i,500n,1p,20b,5s

! == Fatal error occurred, no output PDF file produced!


Cannot find vezes.sty file

2012-12-27 Thread João Alberto
I just installed the most recent version of Lyx and when I tried to
generate the PDF Lyx/MiKTeX requested the vezes.sty file. I updated MiKTex
repositories and searched in CTAN, but I cannot find this file. Any ideas
on how to solve this problem?

The error presented by Lyx follows.

Cordially,

João Alberto Ferreira.

This is pdfTeX, Version 3.1415926-2.4-1.40.13 (MiKTeX 2.9) (preloaded
format=pdflatex 2012.12.27) 27 DEC 2012 19:54

entering extended mode

**FuzzyController.tex


(C:\Users\Joao\AppData\Local\Temp\lyx_tmpdir.Hp1732\lyx_tmpbuf2\FuzzyController

.tex

LaTeX2e 2011/06/27

Babel v3.8m and hyphenation patterns for english, afrikaans,
ancientgreek, ar

abic, armenian, assamese, basque, bengali, bokmal, bulgarian, catalan,
coptic,

croatian, czech, danish, dutch, esperanto, estonian, farsi, finnish,
french, ga

lician, german, german-x-2012-05-30, greek, gujarati, hindi, hungarian,
iceland

ic, indonesian, interlingua, irish, italian, kannada, kurmanji, latin,
latvian,

lithuanian, malayalam, marathi, mongolian, mongolianlmc, monogreek,
ngerman, n

german-x-2012-05-30, nynorsk, oriya, panjabi, pinyin, polish, portuguese,
roman

ian, russian, sanskrit, serbian, slovak, slovenian, spanish, swedish,
swissgerm

an, tamil, telugu, turkish, turkmen, ukenglish, ukrainian, uppersorbian,
usengl

ishmax, welsh, loaded.


(C:\Program Files\MiKTeX 2.9\tex\latex\base\article.cls

Document Class: article 2007/10/19 v1.4h Standard LaTeX document class

(C:\Program Files\MiKTeX 2.9\tex\latex\base\size12.clo

File: size12.clo 2007/10/19 v1.4h Standard LaTeX file (size option)

)

\c@part=\count79

\c@section=\count80

\c@subsection=\count81

\c@subsubsection=\count82

\c@paragraph=\count83

\c@subparagraph=\count84

\c@figure=\count85

\c@table=\count86

\abovecaptionskip=\skip41

\belowcaptionskip=\skip42

\bibindent=\dimen102

)


! LaTeX Error: File `vezes.sty' not found.


Type X to quit or RETURN to proceed,

or enter new name. (Default extension: sty)


Enter file name:

! Emergency stop.

read *

 l.7 \renewcommand

{\familydefault}{\rmdefault}

*** (cannot \read from terminal in nonstop modes)


 Here is how much of TeX's memory you used:

205 strings out of 493921

2369 string characters out of 3147284

49031 words of memory out of 300

3586 multiletter control sequences out of 15000+20

3938 words of font info for 15 fonts, out of 300 for 9000

841 hyphenation exceptions out of 8191

22i,0n,19p,165b,36s stack positions out of 5000i,500n,1p,20b,5s

! == Fatal error occurred, no output PDF file produced!


Cannot find vezes.sty file

2012-12-27 Thread João Alberto
I just installed the most recent version of Lyx and when I tried to
generate the PDF Lyx/MiKTeX requested the vezes.sty file. I updated MiKTex
repositories and searched in CTAN, but I cannot find this file. Any ideas
on how to solve this problem?

The error presented by Lyx follows.

Cordially,

João Alberto Ferreira.

This is pdfTeX, Version 3.1415926-2.4-1.40.13 (MiKTeX 2.9) (preloaded
format=pdflatex 2012.12.27) 27 DEC 2012 19:54

entering extended mode

**FuzzyController.tex


(C:\Users\Joao\AppData\Local\Temp\lyx_tmpdir.Hp1732\lyx_tmpbuf2\FuzzyController

.tex

LaTeX2e <2011/06/27>

Babel  and hyphenation patterns for english, afrikaans,
ancientgreek, ar

abic, armenian, assamese, basque, bengali, bokmal, bulgarian, catalan,
coptic,

croatian, czech, danish, dutch, esperanto, estonian, farsi, finnish,
french, ga

lician, german, german-x-2012-05-30, greek, gujarati, hindi, hungarian,
iceland

ic, indonesian, interlingua, irish, italian, kannada, kurmanji, latin,
latvian,

lithuanian, malayalam, marathi, mongolian, mongolianlmc, monogreek,
ngerman, n

german-x-2012-05-30, nynorsk, oriya, panjabi, pinyin, polish, portuguese,
roman

ian, russian, sanskrit, serbian, slovak, slovenian, spanish, swedish,
swissgerm

an, tamil, telugu, turkish, turkmen, ukenglish, ukrainian, uppersorbian,
usengl

ishmax, welsh, loaded.


("C:\Program Files\MiKTeX 2.9\tex\latex\base\article.cls"

Document Class: article 2007/10/19 v1.4h Standard LaTeX document class

("C:\Program Files\MiKTeX 2.9\tex\latex\base\size12.clo"

File: size12.clo 2007/10/19 v1.4h Standard LaTeX file (size option)

)

\c@part=\count79

\c@section=\count80

\c@subsection=\count81

\c@subsubsection=\count82

\c@paragraph=\count83

\c@subparagraph=\count84

\c@figure=\count85

\c@table=\count86

\abovecaptionskip=\skip41

\belowcaptionskip=\skip42

\bibindent=\dimen102

)


! LaTeX Error: File `vezes.sty' not found.


Type X to quit or  to proceed,

or enter new name. (Default extension: sty)


Enter file name:

! Emergency stop.



 l.7 \renewcommand

{\familydefault}{\rmdefault}

*** (cannot \read from terminal in nonstop modes)


 Here is how much of TeX's memory you used:

205 strings out of 493921

2369 string characters out of 3147284

49031 words of memory out of 300

3586 multiletter control sequences out of 15000+20

3938 words of font info for 15 fonts, out of 300 for 9000

841 hyphenation exceptions out of 8191

22i,0n,19p,165b,36s stack positions out of 5000i,500n,1p,20b,5s

! ==> Fatal error occurred, no output PDF file produced!