Re: Margins in the beginning of the chapter

2012-02-27 Thread Marcelo Acuña




 
I've written a documment, using the book Koma-Script class. I need to 
put some specific margins in my document, so I indicated the space in 
this option for that in my document. 

But my problem is that when each chapter begins (also in the index), lyx puts 
the name of this chapter with too muchtop margin, and not the same that I've 
put and that is in the page where no chapter begins.

I need to change this margin, in the index as well as in the beginning of the 
each chapter in my document.

If anyone can help me, I would really be grateful.

By the way, I'm from Spain, is there any mailinglist similar to this in 
Spanish?

Thank you.

titlesec and titletoc packages allowto customize chapter, sections, index pages.
Marcelo

Re: Selective page numbering...

2012-03-18 Thread Marcelo Acuña
 Hi

 I have a fairly large table that just about fits onto one page. I
 prefer it to be only one one page and not split it across two pages.
 The problem is that the page number is displaying over the table and I
 would prefer it not to do that. Is there any way to get the page
 number not to overwrite the table or get it not to display for a
 specific page?

in ERT
\thispagestyle{empty}

Marcelo


Re: underfull/ overfull badboxes

2012-03-20 Thread Marcelo Acuña
 I've often been able to use \begin{sloppy} and \end{sloppy} to make

 LaTeX less pedantic about where to break a line, and thereby cure both
 these warnings and the extra space.

Read this essential guide to LaTeX2e usage
http://mirror.ctan.org/info/l2tabu/english/l2tabuen.pdf

which lists among the most severe mistakes in using LaTeX2e:
Section 1.8: Should I use \sloppy? (the answer is: Frankly speaking, the 
\sloppy switch should not be used at all.)

They suggest this preamble code, which works very well for me:
\tolerance 1414
\hbadness 1414
\emergencystretch 1.5em
\hfuzz 0.3pt
\widowpenalty=1
\vfuzz \hfuzz
\raggedbottom
Jürgen

 What is the meaning of tolerance and emergencystretch.
I need a flexibilty in the page height (really text height) because I have some 
problems with prematures page break for a few milimeters but I don`t know how 
to get it.
Is tolerance or emergencystretch the way for get it?

Marcelo

Re: underfull/ overfull badboxes

2012-03-20 Thread Marcelo Acuña
Jürgen
 \tolerance is [...]

thanks

 I need a flexibilty in the page height (really text height) because I have
 some problems with prematures page break for a few milimeters but I don`t
 know how to get it. Is tolerance or emergencystretch the way for get it?

I would try \enlargethispage{10pt} (or any value of your choice) on the 
respective page.

 Yes. I use it, but I want a global solution, not to go page for page and put a 
command that may be a headhache.
 I don`t know if it is possible.

Marcelo

Re: underfull/ overfull badboxes

2012-03-20 Thread Marcelo Acuña
 I need a flexibilty in the page height (really text height) because I have

 some problems with prematures page break for a few milimeters but I don`t
 know how to get it. Is tolerance or emergencystretch the way for get it?

 I would try \enlargethispage{10pt} (or any value of your choice) on the
 respective page.
Let me add that this:
    \enlargethispage{\baselineskip}
is the easy way to get an extra line if you need it. Note that you can also do:
    \enlargethispage{-\baselineskip}
to get one fewer line, which is sometimes better.
Richard

 I have two columms in all works. Time to time, I get a premature page break 
(column break) and a huge and ugly blank space and disbalanced columns in a 
page.
 One fewer line is not usefull, I need to get back some text from the next 
column.
 I want to have a global solution in the preamble  for this problem.

Marcelo


Re: underfull/ overfull badboxes

2012-03-22 Thread Marcelo Acuña
 Jürgen

  \tolerance is [...]
 
 thanks
 
  I need a flexibilty in the page height (really text height)
  because I have some problems with prematures page break for a few
  milimeters but I don`t know how to get it. Is tolerance or
  emergencystretch the way for get it?
 
 I would try \enlargethispage{10pt} (or any value of your choice) on
 the respective page.
 
  Yes. I use it, but I want a global solution, not to go page for page
 and put a command that may be a headhache. I don`t know if it is
 possible.
 
 Marcelo
[StevET]
You basically mean Widow/Orphan protection, right?


I get Widow/Orphan protection by mean of usual stuff in preamble.

(This leads me to believe that Lyx could add the option for a single click add 
these commands to avoid problems for newbies.)

My problem is:  I have two columms in all works. Time to time, I get a 
premature 
page break (column break) and a huge and ugly blank space and 
disbalanced columns in a page.
 I need to get back some text from the next column. And  I want to have a 
global solution in the preamble  for this problem and not a case by case ERT 
workaround.

Marcelo


Re: thin space is wider than regular space

2012-03-23 Thread Marcelo Acuña
  I noted that thin space (I use it between number and unity like 100 kg

 or something like) is wider than spaces between words.
  Does anyone have same problem?
 Marcelo
 

no, not me.  
(debian squeeze, article koma, palatino, pdf-latex)
Wolfgang

Please, try with 10 % (with thin space between them).
Marcelo

Re: How I can get thin space more narrow?

2012-03-30 Thread Marcelo Acuña
Marcelo Acuña wrote:

 How I can redefine thin space for get it more narrow?
 I want to get a 0.4 * thin space but I don't know how to redefine it.

These are the relevant definitions from the LaTeX kernel:

\DeclareRobustCommand{\,}{%
   \relax\ifmmode\mskip\thinmuskip\else\thinspace\fi
}

\def\thinspace{\kern .16667em }

Adjusting the value in the thinspace definition will do. However, \thinspace 
is used in other macros. If you only want to change the width of the thin 
space itself, I would go for something like

\DeclareRobustCommand{\,}{%
   \relax\ifmmode\mskip\thinmuskip\else\mythinspace\fi
}

\def\mythinspace{\kern .06668em }



This work well, thank Jürgen!
Marcelo

Re: ERT text size

2012-04-07 Thread Marcelo Acuña
In your local layout, something like:


Format 31

InsetLayout ERT
    Font
        Size Small
    EndFont
End

Not tested.

rh

 I don´t understand why this not work for me.
Marcelo

Re: ERT text size

2012-04-08 Thread Marcelo Acuña
In your local layout, something like:

Format 31
InsetLayout ERT
    Font
        Size Small
    EndFont
End

 I don´t understand why this not work for me.
Marcelo

Are you putting it in:
 Document/Settings/Local Layout
Does it Validate?
It works for me when I use it.
Be well,
Charlie

 Yes. But no take effect.
Marcelo

Re: ERT text size

2012-04-13 Thread Marcelo Acuña
Format 31

InsetLayout ERT
    Font
        Size Small
    EndFont
End

 I don´t understand why this not work for me.
Marcelo

Are you putting it in:
 Document/Settings/Local Layout
Does it Validate?
It works for me when I use it.
Be well,
Charlie

 Yes. But no take effect.
Marcelo

Am using Debian wheezy kernel 3.2.0-2-686-pae

LyX version 2.0.3

So maybe it doesn't work for you because you're using a different
version?
Charlie


--
 I have similar sistem. TexLive 2011, lyx 2.0.3 and Debian squeeze.

Marcelo

Re: Ubuntu users -- can you replicate this?

2012-06-12 Thread Marcelo Acuña
I'm trying to fix a couple of bugs that others haven't been able to replicate. 
Could you please let me know if you observe the same behavior as I do?


(1)
in the edit menu when you see Find and Replace (quick) ... is the F 
underlined? Or does the underscore appear before the F ?


F is underlined. I have ubuntu 12.04, lyx 2.0.3.

Marcelo

Re: how to fix spacing

2012-06-26 Thread Marcelo Acuña
 On 2012-06-24, Hady Ariwibowo Teguh wrote:


 I have problem in spacing between chapter name and paragraph and
 chapter number and chapter name.

titlesec package allow to you to make all customize that you want.
Marcelo


Re: Resume Tables

2012-07-06 Thread Marcelo Acuña
I am trying to rewrite my resume in LyX. I attached my old resume which I made 
with Google docs.


However I didn't find any way to have two columns where one can easily write 
some arbitrary text in one column on the same height as some text in the 
other column. I did this for achievements and dates in my old resume; you can 
see that each date is vertically aligned with the corresponding achievement.

It's seems to me that you can easily make this with Insert  Formatting  
Horizontal Space  Horizontal Fill

Bachelor of Science: Honours Mathematics  Computer Science -- Horizontal Fill 
-- 2006 - 2010
Item 1
Item 2
Item 3 --- Horizontal fill --  2003

Marcelo

Re: Resume Tables

2012-07-07 Thread Marcelo Acuña


[...] Marcelo, your idea is perfect, except for the fact that the environment 
is shared by the whole line. I can work around that by manually changing the 
text style, though.

[...]

I don't understand what is the problem.
Before send the post I make an example for me and that work correctly.

Regards
Marcelo

hf-example.lyx
Description: application/lyx


Re: Dimensions too large + minibox problems (LaTeX errors)

2012-07-08 Thread Marcelo Acuña
Dimensions too large is a nightmare for me.
This error appears when I change font size and I can't resolve it.

Marcelo

Re: Adjusting vertical space between picture and caption of a sub-figure

2012-07-10 Thread Marcelo Acuña
How can one adjust the vertical space between the picture and the

caption in a float sub-figure? In my case, I would like to increase
such vertical space.


Insert  Formatting  Vertical Space

Marcelo


problems wiht AMS article

2006-11-30 Thread Marcelo Acuña
Hello,
 I am writing a work in mathematics with AMS article.
 I put \usepackage[spanish]{babel} in preamble.
 In main screen in Lyx all OK.
 Appears Corolario instead Corollary, Teorema instead Theorem, etc.
 But in output all titles appears in English.
 How I can get titles in Spanish?

 Thanks
 Marcelo


__
Correo Yahoo!
Espacio para todos tus mensajes, antivirus y antispam ¡gratis! 
¡Abrí tu cuenta ya! - http://correo.yahoo.com.ar


Re: Spacing between headings (Title, Author, Date, abstract, etc)

2006-12-24 Thread Marcelo Acuña
 How do I change the spacing between various headings
 in the title?
 
 Also it would be handy to change the font size and
 other such things. My
 goal is to take up as little space with the header
 as possible - or at least
 to have control over how big it is. Another
 important size to change is the
 space between the abstract and the main text.

 titlesec package allow customize space, fonts, etc.

 Marcelo


__
Correo Yahoo!
Espacio para todos tus mensajes, antivirus y antispam ¡gratis! 
¡Abrí tu cuenta ya! - http://correo.yahoo.com.ar


two years with Lyx

2006-12-24 Thread Marcelo Acuña
hello,
 now I have two years working with Lyx.
 It work beautifull.
 Thanks to developers team!

 Regards

 Marcelo


__
Correo Yahoo!
Espacio para todos tus mensajes, antivirus y antispam ¡gratis! 
¡Abrí tu cuenta ya! - http://correo.yahoo.com.ar


[SPAM] I can´t compile lyx 1.4.4

2007-02-17 Thread Marcelo Acuña
Hi
 I have opensuse 10.2.
 In the past I have not problem in to compile lyx from
sources.
 Now, when I run ./configure I get messages that said
that some libs are founds but configure can´t use it.
 Any idea for to correct this problem?
 Thanks.
 Marcelo






__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: [SPAM] I can´t compile lyx 1.4.4

2007-02-21 Thread Marcelo Acuña
   Now, when I run ./configure I get messages that
 said
  that some libs are founds but configure can´t use
 it.
 
 post your exact configure command and also the tail
 of configure (error) output.
 
 pavel
 
 Since I updated Suse 9.3 with OpenSuse 10.2 I can´t
compile Lyx.
 Now I solved the problem when I deleted one option of
configure.
 With --enable-optimization= option I can´t get that
configure work.
 Without this option I can get that configure and make
work ok.
 But now make install no work well.
 I need run Lyx from command line. From icon on KDE my
computer work for a few minutes and then nothing
appears. From command line, lyx 1.4.4 work ok.

 Marcelo







__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: [SPAM] I can´t compile lyx 1.4.4

2007-02-24 Thread Marcelo Acuña
  Since I updated Suse 9.3 with OpenSuse 10.2 I can´t
 compile Lyx.
  Now I solved the problem when I deleted one option
 of
 configure.
  With --enable-optimization= option I can´t get that
 configure work.
  Without this option I can get that configure and
 make
 work ok.
  But now make install no work well.
  I need run Lyx from command line. From icon on KDE
 my
 computer work for a few minutes and then nothing
 appears. From command line, lyx 1.4.4 work ok.
 
  Marcelo
 
This late problem was solved. I have an error in my
batch (script).
 Remain an error in configure. Option
--enable-optimization no work.
 
 Marcelo







__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



about Lyx 1..5.0 beta 1

2007-02-26 Thread Marcelo Acuña
Hi,
 I have OpenSuse 10.2 and KDE 3.5
 I instaled lyx 1.5.0 beta 1 without problems.
 put ./configure --enable-optimization=O3
enable-gettext
 make all
 make install-strip

 with this I loaded a work of about 300.000 word.
 Load and convertion work OK.
 
 1) paste fail
with several windows open I noted that cut  paste
fail. First paste work OK, but second and so on, put
garbage instead my selection.

 2) view fail
latex error: option clash for package inputenc
latex error: option clash for package helvet
 
then I deleted this entries in preamble and latex
run OK

 3) ispell fail
I need to use ispell because aspell have problems
with acented characters.
when I run spellchecker I get

Unrecognized formatter type latin9

I go to Preferences and:
uncheck Use language default enconding
then Select latin1 from list
and active keyboard map
and select espanol keymap

then all work OK

 4) Glossary fail
I inserted glossary and entrys and get
Latex error: Undefined control sequence

 5) box fail
I inserted box and get
Latex error: Undefined control sequence

 6) Update pdf no work
I pressed the button for PDF view, all OK,
then modified my book, press the button for update
PDF and get error:
font not found


 Regards

 Marcelo

  







__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



more paste problems in Lyx 1.5.0 beta 1

2007-02-28 Thread Marcelo Acuña
Hello,
 With opensuse 10.2 and kde 3.5 I have another paste
problem.
 
1) I took (with ctrl + x)  a word for move it.
 Then I put it (with ctrl + v) in other site.
 Then I think that I put word in wrong site.
 Then I delete this word with baskspace key.
 I put cursor in other site, press ctrl + v and
nothing appears.
 When I press backspace key, buffer with word was
deleted.
 
2) I confirmed previous paste problem.
 In a window I took (with crtl + c) an ERT (with a
\setcounter command).
 Click in another window.
 I put cursor in a title of chapter.
 I press ctrl + v.
 ERT appears correctly.
 With mouse wheel I put cursor at the end of another
title of section or chapter and I press ctrl + v.
 Appears a title of section instead ERT.

 Regards

 Marcelo







__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



new trick no work for me

2007-02-28 Thread Marcelo Acuña
Hello,
 I am very interested in trick that I found in
documetation (FAQ):

 [EMAIL PROTECTED]

 I put this in preamble of koma-script book with hope
of no more \setcounter in every section.
 This no work. Number of footnotes no reset in each
section.
 How I get it?
 Thanks

 Marcelo







__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: more paste problems in Lyx 1.5.0 beta 1

2007-03-02 Thread Marcelo Acuña
  Hello,
   With opensuse 10.2 and kde 3.5 I have another
 paste
  problem.
   
  1) I took (with ctrl + x)  a word for move it.
   Then I put it (with ctrl + v) in other site.
   Then I think that I put word in wrong site.
   Then I delete this word with baskspace key.
   I put cursor in other site, press ctrl + v and
  nothing appears.
   When I press backspace key, buffer with word was
  deleted.
 
 Works here.
 
  2) I confirmed previous paste problem.
   In a window I took (with crtl + c) an ERT (with a
  \setcounter command).
   Click in another window.
   I put cursor in a title of chapter.
   I press ctrl + v.
   ERT appears correctly.
   With mouse wheel I put cursor at the end of
 another
  title of section or chapter and I press ctrl + v.
   Appears a title of section instead ERT.
 
 This works here too.

I confirmed this two errors. Others applications work
without problems: Lyx 1.4.4, Lyx 1.3.7, etc.

Regards
Marcelo







__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: I've become a fine-tuner!

2007-03-04 Thread Marcelo Acuña

--- Steve Litt [EMAIL PROTECTED] escribió:

 Hi all,
 
 After years of writing books in LyX, and hunting for
 the silver bullet 
 document class or package or whatever to make my
 title page and copyright 
 page look exactly like I want, today I finally
 surrendered to what I believe 
 is the truth -- A title page or copyright page is an
 individual, one-off 
 product that must look just the way I want it, and
 therefore I just produced 
 it with a few home grown environments and a lot of
 ERT. The result was 
 Exactly how I wanted it, with much less work, and I
 didn't need to get a 
 special document class (with all the hassles that
 presents in the rest of the 
 book), just to make my title page and copyright page
 just look the way I 
 wanted.
 
 How you get this look?
 Can you send a example file?
 I have a problem with this pages of frontmatter.
 Thanks

 Marcelo







__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: new trick no work for me

2007-03-07 Thread Marcelo Acuña
  Hello,
   I am very interested in trick that I found in
  documetation (FAQ):
 
   [EMAIL PROTECTED]
 
   I put this in preamble of koma-script book with
 hope
  of no more \setcounter in every section.
   This no work. Number of footnotes no reset in
 each
  section.
   How I get it?
   Thanks
 I discoverd part of the problem:
[EMAIL PROTECTED]
 no work with section* in any way.
 For now, I not dicovered why no work with section in
my book but work in littles files.

 Marcelo

 






__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: Lyx 1.5 no funciona

2007-03-14 Thread Marcelo Acuña
 No se que pasa
 
 Tengo  Service Pack 2 en ambos computadores,  en
 ambos instale la misma 
 version de Lyx 1.5  ambos tienen la misma version de
 Goshcrip, entonces 
 no entiendo por que en uno de ellos no funciona , 
 es mas ,  no funciona 
 en el mejor de los dos, el que tiene mas memoria y
 mas disco duro...
 
 atte Mario

 Mario, tenés que escribir en Inglés. Es difícil que
te contesten de otro modo. Enviá más datos sobre el
sistema que no funciona.
 Saludos
 Marcelo







__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



ugly big blank space

2007-03-21 Thread Marcelo Acuña
Hello,
 Sometimes, about 1 time by 40/50 pages, latex put a
page break too early, and appears a ugly big blank
space at the bottom of page.
 This occurs when I put in preamble commands for avoid
widows and orphan. If I deleted this commands ugly
space desappears and widows and orphans appears.
 How I can avoid this problem?
 What command I can put in pages with early page
break?
 Thanks
 Marcelo

 






__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: ugly big blank space

2007-03-25 Thread Marcelo Acuña
 AFAIK there is no out-of-the-box solution (aka some
 magic option) for
 this kind of problem that really works. If the space
 is just enough for
 an orphan/widow, but to big to be let empty, well
 what should LaTeX
 possibly do about it?

 Space is enough for 3 or more lines. No orphan/widow
involved. Only a big blank space.

 
 IMHO this is best solved by manual fine-tuning at
 the very end:
 
 - I usually start with altering the size of figures
 and floats on the
 pages before the problem page. Make them slightly
 smaller so that an
 extra line would fit on the problem page or bigger,
 so that the empty
 space no longer looks that empty.
 
 - If that doesn't help, I rephrase the text so that
 an extra line of the
 otherwise orphan/widow paragraph would fit on the
 page.
 
 - As a last resort, if space is a real problem
 because I have a page
 limit, I start to spread negative \vspaces at
 certain positions.
 However, doing so  can be a real pain.
 
 
 Daniel
 
 How can I reduce/enlarge a page?

 
 Marcelo Acuña wrote:
  Hello,
   Sometimes, about 1 time by 40/50 pages, latex put
 a
  page break too early, and appears a ugly big blank
  space at the bottom of page.
   This occurs when I put in preamble commands for
 avoid
  widows and orphan. If I deleted this commands ugly
  space desappears and widows and orphans appears.
   How I can avoid this problem?
   What command I can put in pages with early page
  break?

 Thanks
 Marcelo







__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: Reducing table size

2007-04-20 Thread Marcelo Acuña
 Hi,
 
 Does anyone know any fancy tricks to get a wide
 table to fit within the page 
 margins?  I have a table inside a float and it keeps
 going off my right 
 margin.  I tried playing with the document margins
 but I still can't get it 
 to fit.  I also reduced the text size to tiny and
 still no luck.  I am using 
 the basic 'article' document class.  If I change the
 document class to 
 'article(IEEEtran)'  then table is able to fit with
 in the  page margins.  
 However I would like to get this to work with the
 regular 'article' document 
 type.  Thank you in advance.
 
 Adrian
 
 May be put it sideways?

 Marcelo



  __ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas,
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: LyX version 1.5.0 (beta 2) is released

2007-04-27 Thread Marcelo Acuña
  Public release of LyX version 1.5.0 (beta 2)
  ===
  
  We are glad to announce the release of LyX 1.5.0
  (beta 2).
  
  What's new in version 1.5.0 (beta 2)?
  
 ...
  
  * Unicode
  
 
  Great!
 
  * Multiple views of the same buffer
  * Outliner and embedded TOC
  * Session managment
 
  Great!
 
  * Source code Viewer
  
  Super!
 
  * New Font Selection Interface
 
  Great!
  
  * Tabular extensions
 
  Great!
  
  * Glossaries
  
  * Tabbed Widget
  Super!
  
  
  * Frontend News
  * Change tracking enhancements
  
  * Converter file cache
  
  * Minor user interface improvements
  
   - Syntax highlighting for the user preamble and
 the
  LaTeX log file 
   - Better parsing of BibTeX databases (in the
  citation dialog) 
   - Support optional argument for environments 
  
  Lyz 1.5.0 is a great leap! Thanks!
 
  Marcelo



  __ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas,
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



about beta 3

2007-05-19 Thread Marcelo Acuña
Hello,
 I open a file with beta 3 (before I opened it with
beta 2). I modified it and save it.
 Then, when I opened with beta 2 a message appears
that said:

 (name-file) is from a different version of lyx, but
the lyx2lyx script failed to convert it.

 File format has changed from beta 2 to beta 3? Or is
a bug?
 
 Marcelo

 






__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



bug in lyx 1.5.0

2007-05-19 Thread Marcelo Acuña
Hello,
 I have a severe problem with version 1.5.0 that I
haven´t with version 1.4.4.
 I have several words in bold typeface. In times this
word included emphatized or small caps words for latin
words and names. When I have words in bold that
included words emphatized or in small caps, spaces
between word in bold and word emphatized or in small
caps are missing.
 Same text is compiled with lyx 1.4.4 without problem.

 Marcelo



  __ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas,
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



little problem in lyx 1.5.0

2007-05-19 Thread Marcelo Acuña
Hello,
 I have a little problem in lyx 1.5.0.
 In times main screen of lyx is no redraw properly
when I changed to others program, i.e.: when I run
latex.

 Marcelo



  __ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas,
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: little problem in lyx 1.5.0

2007-05-20 Thread Marcelo Acuña

--- Richard Heck [EMAIL PROTECTED] escribió:

 
 If you are seeing only one paragraph, then this is a
 known problem.
 
 Marcelo Acuña wrote:
  Hello,
   I have a little problem in lyx 1.5.0.
   In times main screen of lyx is no redraw properly
  when I changed to others program, i.e.: when I run
  latex.
 

 Yes, when I return to main screen of lyx only one
paragraph is show.
 Marcelo



  __ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas,
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: bug in lyx 1.5.0

2007-05-20 Thread Marcelo Acuña
  Hello,
   I have a severe problem with version 1.5.0 that I
  haven´t with version 1.4.4.
   I have several words in bold typeface. In times
 this
  word included emphatized or small caps words for
 latin
  words and names. When I have words in bold that
  included words emphatized or in small caps, spaces
  between word in bold and word emphatized or in
 small
  caps are missing.

 I've just tried this, and I don't see any problem.
 Please try to create
 a minimal example, that is, to strip out as much
 from the file as you
 can while still seeing the problem. Then post the
 example file to
 bugzilla.lyx.org.
 
 Richard

 The bug is eassy to see.
 Take a paragraph. Select several word in it. Put bold
and small size. Choose a word in this area (bold and
small size), select and put emphatized. Choose another
word (again in area with bold and small size), select
and put small caps.
 Then run latex (DVI or PDF). You can see the problem.
Space between this word and next are missing. 
 This problem no appears with 1.4.4 version.
 Please, said to me if you verified the problem.
 Marcelo



  __ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas,
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: bug in lyx 1.5.0

2007-05-21 Thread Marcelo Acuña

--- Anders Ekberg [EMAIL PROTECTED] escribió:
   The bug is eassy to see.
   Take a paragraph. Select several word in it. Put
 bold
  and small size. Choose a word in this area (bold
 and
  small size), select and put emphatized. Choose
 another
  word (again in area with bold and small size),
 select
  and put small caps.
   Then run latex (DVI or PDF). You can see the
 problem.
  Space between this word and next are missing.
   This problem no appears with 1.4.4 version.
   Please, said to me if you verified the problem.
   Marcelo
 
 Does not occur on LyX1.5svn (as of May 20) on
 MacPPC. See LyX and pdf- 
 files at
 http://www.charmec.chalmers.se/temp/WordSpacing.lyx
 and
 http://www.charmec.chalmers.se/temp/Word_spacing.pdf
 
 /Anders

 I think that you no replicate conditions for error.
Word emphatized must be in middle of the word bold and
small.
 Marcelo


  __ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas,
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: bug in lyx 1.5.0

2007-05-21 Thread Marcelo Acuña
  It's possible you are seeing a version of this
 bug:
  http://bugzilla.lyx.org/show_bug.cgi?id=3382. 
  I can confirm both that it happens (1.5.0beta3,
 Win XP) and that it
  matches bug 3382 (looking at the LaTeX source).
 OK, thanks Paul. Hopefully someone will get to it
 soon.
 
 rh

 May be a version of error 3382, but this error is in
1.4.4 version, and I have not problem in that version,
only in 1.5.0

 Marcelo



  __ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas,
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



beta 3 and lyx2lyx

2007-05-30 Thread Marcelo Acuña
Hello,
 I want to export an example in beta 3 format to 1.4.x
or 1.3.x format. When I make an export I get an error:

 An eror ocurred whiist running phthon -tt
usr/local/share/lyx-1.5.0b3/lyx2lyx/l

 Is this a know bug?

 Marcelo

 






__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: beta 3 and lyx2lyx

2007-05-30 Thread Marcelo Acuña
  Hello,
   I want to export an example in beta 3 format to
 1.4.x
  or 1.3.x format. When I make an export I get an
 error:
 
   An eror ocurred whiist running phthon -tt
  usr/local/share/lyx-1.5.0b3/lyx2lyx/l
 
   Is this a know bug?
 
 No.
 
 Please give us more information such as the file to
 be converted, and
 OS (looks like linux though).
 
 Cheers,
 Bo
 
 opensuse 10.2, kde 3.5, the file is big file (300.000
words) in koma script style
 Marcelo



  __ 
¡Asombrate! Conocé el Beta de Correo Yahoo! que incluye muchas herramientas que 
harán tu vida más sencilla.
http://correo.yahoo.com.ar/


Re: beta 3 and lyx2lyx

2007-05-30 Thread Marcelo Acuña
   opensuse 10.2, kde 3.5, the file is big file
 (300.000
  words) in koma script style
   Marcelo
 
 There are some known problems with back conversion,
 but your problem
 seems to be with how lyx2lyx is called. Are you sure
 the error message
 is
 
 python -tt usr/local/share/lyx-1.5.0b3/lyx2lyx/l
 
 not
 
 python -tt /usr/local/share/lyx-1.5.0b3/lyx2lyx
 
 ?
 
 Bo
 
 I am sure that is
 python -tt usr/local/share/lyx-1.5.0b3/lyx2lyx/l

 without  at the end, but may be 1 o l the final
character, I can´t see it.
 Marcelo



  __ 
¡Asombrate! Conocé el Beta de Correo Yahoo! que incluye muchas herramientas que 
harán tu vida más sencilla.
http://correo.yahoo.com.ar/


Re: beta 3 and lyx2lyx

2007-05-30 Thread Marcelo Acuña
   I am sure that is
   python -tt usr/local/share/lyx-1.5.0b3/lyx2lyx/l
 
   without  at the end, but may be 1 o l the final
 
 Then, can you manually convert your file? I mean,
 under a command prompt, run
 
 python -tt
 /usr/local/share/lyx-1.5.0b3/lyx2lyx/lyx2lyx -t 221
 yourfile.lyx  newfile.lyx
 
 Bo

 I will go to my home and try with this command.
 Thanks.
 Marcelo 



  __ 
¡Asombrate! Conocé el Beta de Correo Yahoo! que incluye muchas herramientas que 
harán tu vida más sencilla.
http://correo.yahoo.com.ar/


Re: beta 3 and lyx2lyx

2007-05-30 Thread Marcelo Acuña
 Then, can you manually convert your file? I mean,
 under a command prompt, run
 
 python -tt
 /usr/local/share/lyx-1.5.0b3/lyx2lyx/lyx2lyx -t 221
 yourfile.lyx  newfile.lyx
 
 Bo

 With this command I can run lyx2lyx but I get several
errors and I can´t get a file correctly exported.
 I get this message:
 
 UnicodeEncodeError: latin-1 codec can´t encode
character u\u0301 in position 0: ordinal not in
range(256)

 When in the file I deleted the character that produce
error and re run lyx2lyx I get a new error with
u\u2044 character and so on.
 When I deleted all character with problem, lyx2lyx
export 99% of my file and become crazy:
 At the end of file lyx2lyx get error with all
accented character.
 When I duplicate paragraph with accented character
lyx2lyx get error in second paragraph while first
paragraph (with accented character) is accepted.
 Plus, Lyx 1.5.0 beta 3 became crazy, a shadow of
cursor remains in the position that cursor left. And
main screen of lyx is not redraw properly. Appears
error that only one or two paragraph is showed.

 When I deleted all accented character at the end of
file, lyx2lyx stop run succesfully but when I run lyx
1.4.4 the new file appears corrupt and is truncated.

Marcelo







__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: beta 3 and lyx2lyx

2007-05-30 Thread Marcelo Acuña
   With this command I can run lyx2lyx but I get
 several
  errors and I can´t get a file correctly exported.
   I get this message:
 
   UnicodeEncodeError: latin-1 codec can´t encode
  character u\u0301 in position 0: ordinal not in
  range(256)
 
 I also see this with a few other files and I will
 work on it. I guess
 I will ask you to test your document again with RC2
 if I can not make
 it before RC1.
 
 Thanks.
 Bo
 
 What is RC2, RC1?

 Marcelo







__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: beta 3 and lyx2lyx

2007-05-30 Thread Marcelo Acuña
   What is RC2, RC1?
 
 Lyx 1.5.0 is now at beta3 testing stage. The next
 testing release will
 be called release candidate 1 (RC1), which is
 planned to be released
 soon (this weekend?). There will likely to be a RC2
 release before
 1.5.0 is officially released.
 
 Cheers,
 Bo
 
 Ok. I will test this problem with the next testing
release.
 Thanks!
 Marcelo



  __ 
¡Asombrate! Conocé el Beta de Correo Yahoo! que incluye muchas herramientas que 
harán tu vida más sencilla.
http://correo.yahoo.com.ar/


Re: RC1 - more remarks

2007-06-01 Thread Marcelo Acuña

--- Hellmut Weber [EMAIL PROTECTED] escribió:

 Hi,
 two remarks:
 
 1) When i start lyx-rc1 from the command line i get
 11 messages:
 'Menu warning: menu entries Stichwort|w and
 Zweig|w share the same 
 shortcut.'
 

 I have same problem.
 Marcelo



  __ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas,
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



about rc1

2007-06-06 Thread Marcelo Acuña
Hello,
 1) I haven´t crahs in lyx 1.5.0 rc1 (like beta 3).
 2) I have a little problem with tools bar. I put 3
tools bar at the rigth margin of screen in 2 columns.
This work ok. But when I close lyx and then reopen,
this 3 tools bars appears superpossed in only 1
column.
 3) Session manager work only a few times. Most of
times, when I start my computer (linux) Lyx no open
and I must make click in incon.
 4)Cursor is very slow when I am making a selection of
text with keyboard.
 5) I can see a lot of warning messages when I am
compiling lyx like this: 

warning FIXME
warning FIXME!! The graphics cache no longer has a
changeDisplay method
warning control reaches end of non-void function.
warning handle non existing files
warning this function should be moved to
buffer_pimpl.C
warning look here
warning this will not work any more when we have
multiple views of the same buffer
warning broken?
warning Why not pass a proper DocIterator here?
and so on

 I don´t know severety of this messages.

 Regards
 Marcelo



  __ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas,
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



question on titlesec package

2007-06-06 Thread Marcelo Acuña
Hello,
 I want to have giant chapter number in first page of
each chapter. I am using titlesec package and in
preamble I put:


\titleformat{\chapter}{display­}{\sffamily\Large\bfseries}
{\chaptertitlename\thechapter}­{4ex}{}{\titlerule}{} 

 but I don´t know how to get that chapter number
became very large.
 Any idea?
 Thanks
 Marcelo



  __ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas,
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: 1.5rc1 and kde session

2007-06-10 Thread Marcelo Acuña
 Moreover, i would like  lyx-sessions to be preserved
 across kdm sessions. 
 Any hints to get such result?

 For me, session manager of rc1 (unlike beta 3), no
work.
 Marcelo



  __ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas,
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: 1.5rc1 and kde session

2007-06-10 Thread Marcelo Acuña
 Marcelo Acuña wrote:
  For me, session manager of rc1 (unlike beta 3), no
 work.
 
 Could you please elaborate a bit?
 
 Jürgen
 
 I have opensuse 10.2, kde 3.5, lyx 1.5.0 rc1 compiled
for me.
 Unlike beta 3 (in same machine) session manager work
a few times when I began to use it. Now no work at
all. I re start my computer and I need to make a click
on the icon. Lyx appears maximized (ok) and file in
last position (ok).
 If I have two files open (A and B) and I closed with
file A at view. When I re start and open Lyx, file B
is at view (bad).
 Regards.
 Marcelo

 






__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: question on titlesec package

2007-06-11 Thread Marcelo Acuña
  Hello,
   I want to have giant chapter number in first page
 of
  each chapter. I am using titlesec package and in
  preamble I put:
   [...]
   but I don´t know how to get that chapter number
  became very large.


 I am crazy. Actually in preamble I put:


\titleformat{\chapter}[display]{\sffamily\huge\bfseries}{\filleft\
\Huge \thechapter}{8ex}{\huge}[\titlerule]

This part:
{\filleft\ \Huge \thechapter}

 set position and size of number of chapter. But I
can´t get nothing more great than Huge, and I want a
giant number, twice or more than Huge.
 Without to use titlesec package I make this with
scaled command, but I don´t know how to make this with
titlesec.
 Marcelo




  __ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas,
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



Re: LyX Outline feature - screenshot short explanation

2007-06-14 Thread Marcelo Acuña
  Is there a stable 1.5.x? Does 1.5.x use the same
 native format as 1.4.2? Is 
  1.5.x as reliable and stable as 1.4.2 (meaning it
 never screws up)?
 
  I'm using Mandriva 2007. Anyone know how difficult
 it would be for me to 
  install 1.5.x  in /usr/local/bin without trashing
 /usr/bin/lyx, which is 
  1.4.2?

 It is not well tested, so no guaranteees. 
 I use 1.5 daily for my writing though, and compile a
 new one
 about once a week.  If I get a bad LyX this way, I
 just go back to
 the previous one.  (Before installing a new test
 LyX, just rename
 the old one to a different name based on timestamp,
 i.e. lyx15-june12.
  
 If you compile yourself, you have the option of
 using a version prefix.
 So your tested and true lyx 1.4 will be named lyx,
 while you
 can have the experimental 1.5 named lyx15
 
 You then write lyx15 to invoke it.
 This way, you can start using lyx15 for texts of
 less importance.
 You can get familiar with the new features, and find
 out if
 1.5 is sufficiently stable for your use. And of
 course you can
 report any faults you find and get them fixed before
 the release. :-)
 
 Helge Hafting
 
 For me, lyx 1.5.0 rc1 is very stable for production
but have several bugs.
 Marcelo







__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 



about lyx 1.5.1

2007-08-10 Thread Marcelo Acuña
Hello,
 Lyx 1.5.1 works very well with a few minor (very
little) problems.
 Thanks to the lyx team!

 Marcelo



  

¡Sé un mejor ambientalista!
Encontrá consejos para cuidar el lugar donde vivimos.   
http://ar.yahoo.com/promos/mejorambientalista.html


Re: On the fly spellcheck?

2007-08-11 Thread Marcelo Acuña
  Is there any way to do on-the-fly spellchecking?
 
 Not now.
 
  Is there any plan to add
  on-the-fly spellchecking later?
 
 Being considered for 1.6.0, along with
 auto-completion, abbreviation etc.
 
 Cheers,
 Bo
 
 I want to have on-the-fly spellchecking,
auto-completion and abbreviation. I think that is an
important goal.
 Marcelo



  

Los referentes más importantes en compra/venta de autos se juntaron: Demotores 
y Yahoo!
Ahora comprar o vender tu auto es más fácil. ¡Probalo!   
http://ar.autos.yahoo.com/


question about XeTex, ConTeXt and others

2007-08-11 Thread Marcelo Acuña
Hello,
  I have linux (opensuse 10.2) and I want to know:

1) if I can install other distros of Tex like XeTeX,
Tex Live, ConTeXt, etc., instead Latex and to use this
with Lyx.

2) If I get a gain with this, like no package clash
(ConTeXt), add more easy font (XeTeX), etc.

 Regards
 Marcelo



  

¡Sé un mejor ambientalista!
Encontrá consejos para cuidar el lugar donde vivimos.   
http://ar.yahoo.com/promos/mejorambientalista.html


Re: question about XeTex, ConTeXt and others

2007-08-12 Thread Marcelo Acuña
  Hello,
I have linux (opensuse 10.2) and I want to
 know:
  
  1) if I can install other distros of Tex like
 XeTeX,
  Tex Live, ConTeXt, etc., instead Latex and to use
 this
  with Lyx.
  
  2) If I get a gain with this, like no package
 clash
  (ConTeXt), add more easy font (XeTeX), etc.
  
   Regards
   Marcelo
  
 
 Hi!
 
 I'm certainly no expert on this, but I'll try to
 answer (and I'd be 
 happy to hear better explanations from people who
 know more):
 
 As far as I understand, there are a few different
 levels: there's the 
 tex distribution (tetex, texlive, ...); there are
 different sets of 
 macros built around tex (latex, context); and
 finally, there are 
 different tex engines, which provide extensions to
 official tex 
 (etex, xetex). These different engines are often
 also aware of the macro 
 packages such as latex (elatex, xelatex).
 Specifically, xetex is meant 
 to extend tex with true Unicode support, and also
 provides font handling 
 which allows the usage of TrueType and OpenType
 fonts.
 
 The various distributions provide different
 combinations of engines and 
 macro sets. For example, texlive provides both latex
 (which appears to 
 actually be elatex?) and xelatex (and maybe more).
 
 LyX works with LaTeX. I have used lyx with tetex in
 the past, and 
 currently am using it with texlive, and both worked
 without any 
 problems. But in both cases, it's the *latex* that
 I've used with LyX

 I am interested in XeTeX because it promise easy
font handling which allows the usage of TrueType and
OpenType fonts. Add new fonts for Latex and Lyx is
very dificult for me. I don´t understand instrucction
for it. For me instruction look like a hot hell.
 XeTeX work with Lyx?
 Thanks
 Marcelo



  

¡Sé un mejor ambientalista!
Encontrá consejos para cuidar el lugar donde vivimos.   
http://ar.yahoo.com/promos/mejorambientalista.html


Re: question about XeTex, ConTeXt and others

2007-08-14 Thread Marcelo Acuña
 On Aug 12, 2007, at 11:12 AM, Marcelo Acuña wrote:
 
   I am interested in XeTeX because it promise easy
  font handling which allows the usage of TrueType
 and
  OpenType fonts.
 
 It delivers too.
 
  Add new fonts for Latex and Lyx is
  very dificult for me. I don´t understand
 instrucction
  for it. For me instruction look like a hot hell.
 
 It's not that bad, once one wraps one's mind around
 what needs to be  
 done and why. XeTeX is a much better option though
 as I alluded to in  
 my TUG2003 paper:
 

http://www.tug.org/TUGboat/Articles/tb24-2/tb77adams.pdf
 
 There've been some articles on using LyX w/ xetex in
 TUGboat if  
 memory serves.
 
   XeTeX work with Lyx?
 
 W/ xelatex, yes.
 
 You do need to be careful of which packages are used
 (babel in  
 particular is awkward), but for the most part, xetex
 is a drop-in  
 replacement for tex, and xelatex is a
 straight-forward usage of LaTeX.
 
 Here's a page w/ specific instructions:
 
 http://wiki.lyx.org/Mac/XeTeX
 
 (which need to be up-dated re: LyX handling UTF8 if
 I understand the  
 new features of LyX v1.5)
 
 William

 Thanks, I will search for xelatex.
 Marcelo



  

Los referentes más importantes en compra/venta de autos se juntaron: Demotores 
y Yahoo!
Ahora comprar o vender tu auto es más fácil. ¡Probalo!   
http://ar.autos.yahoo.com/


Re: question about XeTex, ConTeXt and others

2007-08-14 Thread Marcelo Acuña
  Hello,
I have linux (opensuse 10.2) and I want to
 know:
 
  1) if I can install other distros of Tex like
 XeTeX,
  Tex Live, ConTeXt, etc., instead Latex and to use
 this
  with Lyx.
 
  2) If I get a gain with this, like no package
 clash
  (ConTeXt), add more easy font (XeTeX), etc.

 I have now tested lyx-1.5 with xetex.  It works,
 with a small
 amount of ERT and preamble commands.
 Have a look at http://wiki.lyx.org/LyX/XeTeX
 for instructions a sample document with font changes
 and a wide range of unicode characters.
 (symbols, latin, greek, russian, chinese)
 
 Helge Hafting
 
 Thanks. I will try to install it.
 Marcelo


  

¡Sé un mejor fotógrafo!
Perfeccioná tu técnica y encontrá las mejores fotos.   
http://ar.yahoo.com/promos/mejorfotografo.html


Re: question about XeTex, ConTeXt and others

2007-08-14 Thread Marcelo Acuña
 
   XeTeX work with Lyx?
 
 W/ xelatex, yes.
 

 How I can get xelatex?
 I can´t see any package with this name in CTAN.

 Marcelo


  

¡Sé un mejor fotógrafo!
Perfeccioná tu técnica y encontrá las mejores fotos.   
http://ar.yahoo.com/promos/mejorfotografo.html


Re: question about XeTex, ConTeXt and others

2007-08-15 Thread Marcelo Acuña
   How I can get xelatex?
   I can´t see any package with this name in CTAN.
 
 It's not a package, but a binary format of the latex
 macros processed  
 by XeTeX which is loaded by xetex.
 
 http://scripts.sil.org/xetex

 This site give to me rpm´s for suse (I have opensuse
10.2) that no work at all.

 
 or
 

http://www.fsci.fuk.kindai.ac.jp/kakuto/win32-ptex/web2c75-e.html
 
 will allow you to download and install xetex which
 will include xelatex.
 
 William
 

 Thanks. I will try with last site.
 Marcelo



  Perfeccioná tu técnica y encontrá las mejores fotos.  
 
http://ar.yahoo.com/promos/mejorfotografo.html


I can´t understand what happened with my f onts

2007-08-21 Thread Marcelo Acuña
Hello,
 I want to make a demo of Lyx for a friend but now I
can´t get that font change.
 I remember that in the past when I change font in
menu from Times to Bookman or other font I can see in
DVI or PDF a change in look and that number of doc
pages change, and lines per page, and words per line,
etc.
 Now, only with Concrete Roman I can see that change.
 Any idea of what happened? I think that I make a
mistake in my linux in any form, but I can´t
understand what.
 Regards
 Marcelo



  

¡Sé un mejor ambientalista!
Encontrá consejos para cuidar el lugar donde vivimos en  
http://ar.yahoo.com/promos/mejorambientalista.html 


Re: [announce] completely revised LyX UserGuide - request for testing

2007-08-21 Thread Marcelo Acuña
 Hello LyXers,
 
 I'm proud to announce a completely revised LyX
 UserGuide. The current UserGuide was the last time 
 comletely revised for LyX 1.2. In the meantime LyX
 has got many new features that are currently not 
 mentioned in the UserGuide or only partly described.
[...]

http://wiki.lyx.org/LyX/DocumentationDevelopment#Userguide
 
 best regards
 Uwe
 
 I download from wiki.lyx.org page Userguide and
Customization docs.
 Customization compile Ok but have several lines that
run out of margin.
 Userguide no compile. I get Undefinid control
sequence message.
 Regards
 Marcelo


  

¡Sé un mejor fotógrafo!
Perfeccioná tu técnica y encontrá las mejores fotos. Visitá 
http://ar.yahoo.com/promos/mejorfotografo.html


Re: [announce] completely revised LyX UserGuide - request for testing

2007-08-21 Thread Marcelo Acuña
   I download from wiki.lyx.org page Userguide and
  Customization docs.
   Customization compile Ok but have several lines
 that
  run out of margin.
 
 I removed the Customization document from this page
 as this file is outdated.
 
   Userguide no compile. I get Undefinid control
  sequence message.
 
 I need a more precise info, like a screenshot with
 the error message and at which position it 
 appears in the document.
 
 thanks and regards
 Uwe
 
 I get equal error with DVI and PDF view. Error
appears at the start of guide. I will try to send more
precise info.
 Regards
 Marcelo



  

¡Sé un mejor fotógrafo!
Perfeccioná tu técnica y encontrá las mejores fotos. Visitá 
http://ar.yahoo.com/promos/mejorfotografo.html


Re: question about XeTex, ConTeXt and others

2007-08-21 Thread Marcelo Acuña
   How I can get xelatex?
   I can´t see any package with this name in CTAN.
 
  It's not a package, but a binary format of the
 latex
  macros processed
  by XeTeX which is loaded by xetex.
 
  http://scripts.sil.org/xetex
 
   This site give to me rpm´s for suse (I have
 opensuse
  10.2) that no work at all.
 
 I'm afraid my usage of Linux is pretty limited.
 
 Have you tried using svn to d/l the source and
 compile that?
 
 Yes. I download from xetex site rpm with bin and with
sources. None work.
 Regards
 Marcelo



  

¡Sé un mejor besador!
Compartí todo lo que sabés sobre besos en 
http://ar.yahoo.com/promos/mejorbesador.html


Re: question about XeTex, ConTeXt and others

2007-08-22 Thread Marcelo Acuña
  I download from xetex site rpm with bin and with
  sources. None work.
 
 In that case, I'd suggest joining the xetex mailing
 list:
 
 http://tug.org/mailman/listinfo/xetex
 
 Or you could try TeXlive which now includes xetex.
 
 William
 
  Thanks William


  Los referentes más importantes en compra/ venta de autos se juntaron:
Demotores y Yahoo!
Ahora comprar o vender tu auto es más fácil. Vistá ar.autos.yahoo.com/


Re: justification vs. 'ragged right' in the user interface?

2007-08-26 Thread Marcelo Acuña
 [...] and was wondering if it was
 possible to 
 set user preferences so that the screen one is
 working on is not 
 justified on the right, but rather ragged.  
 [...]  But on the screen we
 do not look at
 hypenated or texified material, so there is a lot of
 expanding and 
 contracting between lines - just the loathesome
 phenomenon Tex 
 gets past. [...]
 I would prefer then to see a 
 ragged right document in the user interface, if it
 is possible.
 [...]
 Michael 
 University of Pittsburgh,
 Pittsburgh PA
 practical.wisdom at gmail
 
 
 I am in accordance with this too.
 Regards
 Marcelo



  

¡Sé un mejor fotógrafo!
Perfeccioná tu técnica y encontrá las mejores fotos. Visitá 
http://ar.yahoo.com/promos/mejorfotografo.html


Re: Rotating text

2007-09-04 Thread Marcelo Acuña
 See from reading some archived mail that I can
 rotate tables. What  
 about single lines  blocks of text?

 You can rotate text.
 Marcelo



  

¡Sé un mejor fotógrafo!
Perfeccioná tu técnica y encontrá las mejores fotos. Visitá 
http://ar.yahoo.com/promos/mejorfotografo.html


Re: An issue about headers and footers

2007-09-28 Thread Marcelo Acuña
 My question: I'd like to know if there is some way
 of getting a personal
 header and a personal footer too in the same page. 
 ...
 Daniel
 
 P.S. - BTW, How do you say correctly...? page
 heading or header? In
 Spanish, my mother tongue, it's just
 encabezamiento.
 
 
 Package titlesec, from Spanish Javier Bezos, make
headers and footers, and more
 
 Marcelo
 (from Argentina)


  Las últimas noticias sobre el Mundial de Rugby 2007 están en Yahoo! 
Deportes. ¡Conocelas!
http://ar.sports.yahoo.com/mundialderugby


Re: Date and Time in Header

2007-10-03 Thread Marcelo Acuña
 Is there an easy way to add the date and time to the
 header of each page?

 You can try with \today command in your header
definition.
 Marcelo



  Los referentes más importantes en compra/ venta de autos se juntaron:
Demotores y Yahoo!
Ahora comprar o vender tu auto es más fácil. Vistá ar.autos.yahoo.com/


Re: using Section andsubsection titles withing text

2007-10-03 Thread Marcelo Acuña
 I've looked around, but I cannot see how to use the
 Section and Subsection 
 titles as the Frame title for a Beamer presentation.
 Any ideas?

 I don´t know what is Beamer but with titlesec package
you can get several kinds of titles for chapter,
section, subsection, etc., included framed titles.
 Marcelo



  Seguí de cerca a la Selección Argentina de Rugby en el Mundial de Francia 
2007.
http://ar.sports.yahoo.com/mundialderugby


Re: tek capacity exceeded input stack

2007-10-05 Thread Marcelo Acuña
  Just on the verge of seeing my work almost done
 and I get this error
  message. No google, no lyx wiki help either.
  It says Tek capacity exceeded [input stack size =
 1500].
  It happens when I insert a page break. I have
 several in the file, but
  not over 20 of them. Also the file is  100K in
 size. Remove the
  break, all fine. Put it in, bang!
 
  I hope there's a quick fix.

 some years ago I got this. And the quick fix was to
 enlarge the
 tex capacity. Tex has some config files where I
 increased
 various capacities 10 times, and then it worked
 well.
 

 Helge, Uwe:
 I get this error when I have bigfoot package in
preamble and \pagenumbering{roman} in frontmatter.
 I was forced to use \pagenumbering{Roman}.
 Do you have any idea for a workaround for this?

 Regards
 Marcelo



  Los referentes más importantes en compra/ venta de autos se juntaron:
Demotores y Yahoo!
Ahora comprar o vender tu auto es más fácil. Vistá ar.autos.yahoo.com/


Re: configure default paragraph alignment

2007-10-12 Thread Marcelo Acuña

--- Richard Heck [EMAIL PROTECTED] escribió:
 Check their documentation.) Changing
 the display in LyX 
 is a matter of editing the layout file, in which
 alignment is controlled 
 by the Align directive. If you're using, say,
 book.cls, then copy 
 book.layout to your local LyX directory (where it is
 is 
 system-dependent), open it, and then add to the end
 of the file:
 Style Standard
 Align Left
 End
 This will override the usual declaration. If you
 want this also for 
 other paragraph types, you'll need to add
 corresponding declarations for 
 the other paragraphs. But again: Changing this in
 the layout file won't 
 change it in the output; these are different beasts.
 
 Richard

 Excuse me Richard,
 You said that I can change align in Lyx screen?

 Regards
 Marcelo



  Los referentes más importantes en compra/ venta de autos se juntaron:
Demotores y Yahoo!
Ahora comprar o vender tu auto es más fácil. Vistá ar.autos.yahoo.com/


I have a problem with language

2007-10-12 Thread Marcelo Acuña
Hello,
 When I try to get a solution (before Ignacio's
letter) for page numbering in roman instead Roman I
changed language from Spanish to American in Document
 Config  Language.
 I can see that roman problem was solved but now I
have several titles like Index and Contents in English
instead Spanish, and I lost hyphenation in Spanish.
 Then I return to Spanish language but American
remains. Now I have all text underlined, and I can't
compile without errors. I have Spanish in Document 
Config  Language and Preferences but if I see Latex
Source I have [american, spanish] in my srcbook.
 I can't get out American any more (perhaps we
have a deep political lesson here ;-)
 How I can get Spanish only?

 Regards
 Marcelo


  Los referentes más importantes en compra/ venta de autos se juntaron:
Demotores y Yahoo!
Ahora comprar o vender tu auto es más fácil. Vistá ar.autos.yahoo.com/


Re: configure default paragraph alignment

2007-10-13 Thread Marcelo Acuña
  Excuse me Richard,
   You said that I can change align in Lyx screen?

 Yes, you can change the way the alignment appears on
 the screen in LyX 
 by editing the layout files, which you'll find in
 (e.g.) 
 /usr/share/lyx/layouts/. Copy these to your local
 LyX directory (e.g., 
 /home/marcelo/.lyx/layouts/) and so as you wish. You
 may want to change 
 the filename to something else, and change the first
 line of the layout 
 file, so your changes appear as a new choice in
 DocumentSettings rather 
 than over-writing an old one. See the Customization
 manual for the details.
 
 rh
 
 
 Work Ok! Thanks Richard!
 Marcelo


  

Yahoo! Noticias
Leé la columna de El Chavo Fucks y encontrá una visión distinta de las 
Elecciones Presidenciales 2007 en:
http://ar.news.yahoo.com/elecciones2007/opinion/1979/pinginos-empetrolados


Re: I have a problem with language

2007-10-13 Thread Marcelo Acuña
  Hello,
   When I try to get a solution (before
 Ignacio's
  letter) for page numbering in roman instead Roman
 I
  changed language from Spanish to American in
 Document
   Config  Language.
   I can see that roman problem was solved but
 now I
  have several titles like Index and Contents in
 English
  instead Spanish, and I lost hyphenation in
 Spanish.
   Then I return to Spanish language but
 American
  remains. Now I have all text underlined, and I
 can't
  compile without errors. I have Spanish in Document
 
  Config  Language and Preferences but if I see
 Latex
  Source I have [american, spanish] in my srcbook.
   I can't get out American any more (perhaps we
  have a deep political lesson here ;-)
   How I can get Spanish only?
 
   Regards
   Marcelo
 
 
 Try to mark all. Then Edit - Text style -
 Customized... and then  
 set Language to Reset.
 
 /Anders

 Work! At first no work, because text inside Opt Short
Title was no changed, but when I noticed this problem
I changed one by one.
 Thanks
 Marcelo



  Las últimas noticias sobre el Mundial de Rugby 2007 están en Yahoo! 
Deportes. ¡Conocelas!
http://ar.sports.yahoo.com/mundialderugby


Re: configure default paragraph alignment

2007-10-13 Thread Marcelo Acuña
  Excuse me Richard,
   You said that I can change align in Lyx screen?

 Yes, you can change the way the alignment appears on
 the screen in LyX 
 by editing the layout files, which you'll find in
 (e.g.) 
 /usr/share/lyx/layouts/. Copy these to your local
 LyX directory (e.g., 
 /home/marcelo/.lyx/layouts/) and so as you wish. You
 may want to change 
 the filename to something else, and change the first
 line of the layout 
 file, so your changes appear as a new choice in
 DocumentSettings rather 
 than over-writing an old one. See the Customization
 manual for the details.
 
 rh
 
 
 Little problem, I get desired look in Lyx screen but
now I can't compile without error.
 I not noticed this before because another problem,
but now I solved that problem and I found that I have
an end flushleft problem with this layout
 Any idea?
 Marcelo



  Seguí de cerca a la Selección Argentina de Rugby en el Mundial de Francia 
2007.
http://ar.sports.yahoo.com/mundialderugby


problem with footnote in quote

2007-10-22 Thread Marcelo Acuña
Hello,
  When I put a footnote in a paragraph with quotes
I have a problem: a quote mark appears superposed over
the footnote number in footnote.
  This occurs even with an empty preamble.
  How I can avoid it?
  Thanks
 Marcelo


  Seguí de cerca a la Selección Argentina de Rugby en el Mundial de Francia 
2007.
http://ar.sports.yahoo.com/mundialderugby


problem with momoir

2007-10-27 Thread Marcelo Acuña
hello,
 I can't import the memoir user guide, memoir.tex.
 I have a tex2lyx error.
 I want to shift to memoir from koma-script and I
want to study this style.
 How I can import this file?
 Thanks
   Marcelo



  

Yahoo! Noticias
Todo lo que tenés que saber sobre Elecciones Presidenciales 2007 encontralo en 
Yahoo! Noticias.
http://ar.news.yahoo.com/elecciones2007/


Re: Howto bold small caps with CM or LM fonts [solved]

2007-10-27 Thread Marcelo Acuña
 Hello everyone,
 
 My question is just that: Is it possible to have the
 text displayed
 using the _Roman or Sans Serif_ Family and
 using the *Bold* Series and
 using the *Small Caps* shape
 when using the high quality Computer Modern or Latin
 Modern fonts? And
 of course, preferably within Lyx..
 
 Some searching on the Internet revealed me that this
 is a known
 problem. This is one nice document on the shapes and
 series contained
 in the CM and LM fonts [1] (apparently, outdated). I
 also found this
 workaround, but it seems quite complex for me [2]. I
 also found a
 ConTeXt module, Bold small caps [3], but am quite
 ignorant how can
 it be used within Lyx.
 
 However, the answer to this problem is the cm-super
 package [4]. This
 is a more recent version of the Computer Modern
 font, that includes a
 wider selection of fonts. So, you either install it
 manually or switch
 from an ancient tex distribution (e.g. tetex) to
 TexLive-2007 (if
 you're on Gentoo, first check the Wiki for
 instructions and then
 emerge).
 
 [1]

http://www.tug.org/pracjourn/2006-1/robertson/robertson.pdf
 [2] http://wiki.contextgarden.net/Pseudo_Small_Caps
 [3] http://modules.contextgarden.net/cmscbf
 [4]

http://www.ctan.org/tex-archive/help/Catalogue/entries/cm-super.html
 
 Regards,
 Liviu
 
 Thanks for the news!
 Fonts are a problem for me.
 Marcelo



  Los referentes más importantes en compra/ venta de autos se juntaron:
Demotores y Yahoo!
Ahora comprar o vender tu auto es más fácil. Vistá ar.autos.yahoo.com/


Re: problem with footnote in quote

2007-10-27 Thread Marcelo Acuña
 Hello,
   When I put a footnote inside a paragraph with
 quotes
 I have a problem: a quote mark appears superposed
 over
 the footnote number in footnote.
   This occurs even with an empty preamble.
   How I can avoid it?
   Thanks

 blah, blah, blah\footnote{note} blah, blah, blah
  Then, at the footnote, a quote mark apperas
superposed on the footnote number.
  This only occurs with Spanish. When I select all
text and put it in English language, problem no
happen.
   Hos I can solve this problem?
   Marcelo

 


  Los referentes más importantes en compra/ venta de autos se juntaron:
Demotores y Yahoo!
Ahora comprar o vender tu auto es más fácil. Vistá ar.autos.yahoo.com/


diff within Lyx and OpenOffice with styles

2007-11-02 Thread Marcelo Acuña
hello,
  a question rised in a free soft forum. I
propposed latex/lyx and another person question:
 Why lyx/latex and not open office with styles?
 What I said about it?
 
 Marcelo



  

Yahoo! Noticias
Todo lo que tenés que saber sobre Elecciones Presidenciales 2007 encontralo en 
Yahoo! Noticias.
http://ar.news.yahoo.com/elecciones2007/


suddenly, vpageref produces error

2009-11-02 Thread Marcelo Acuña
Hello,
from one day to the next run latex make an error in a vpageref.
Message say that I must replace this reference (in page page) by page for 
stop Latex running forever.
If I do I replace, the error disappears and latex works well.
I took the backup from the previous day and this error does not happen. 
What happens?


Marcelo Acuña
 visitá mi sitio web http://www.aleph-uno.com.ar 
==


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


question about multiple files for a book

2010-01-08 Thread Marcelo Acuña
Hello,
 I have a 35 words book and I want to know what I win and that I lose if I 
change one file to multiple files?
 I am thinking to make the change due to the delays in writing the file.
 I can see that count words (tool) with multiple files not offer the total sum 
of the book.
 And that the orthographic correction does not continue throughout all the book.
What other things I will find?

Marcelo Acuña
 visitá mi sitio web http://www.aleph-uno.com.ar 
==


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: question about multiple files for a book

2010-01-08 Thread Marcelo Acuña
 I'm working with a long document in
 multiple files, and I can tell you 
 that most things do work very well:
 
 * Labels from any file may be used everywhere
 * You only need to include the bibliography once,
 etc.
 
 About ortography, I guess one of the points of having
 multiple files is being able to do this kind of
 comprobations part by part; I agree with 
 you that word count is a problem, though.
 
 Manolo
 
 Perhaps a new feature is needed in the words counter.
 Like two totals, one for the whole project.
 Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


question about family fonts

2010-01-18 Thread Marcelo Acuña
hello,
 If I choose Times Roman for roman font, what font I must to choose for sans 
serif font If I want to obtain an aesthetically coherent aspect?
 The same for Bookman font.
 Regards

Marcelo Acuña
 visitá mi sitio web http://www.aleph-uno.com.ar 
==


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: question about family fonts

2010-01-20 Thread Marcelo Acuña
  If I choose Times Roman for roman font, what
 font I must to choose for sans serif font If I want to
 obtain an aesthetically coherent aspect?
 
 Times is a font designed for newspapers (New York Times).
 Its glyphs are therefore thinner with less space between
 them. When you want to write a book, I could therefore not
 recommend Times as font.

I am using two columns in the book, therefore I am interested exactly in that: 
glyphs thinner with less space between.
 
 To get aesthetically coherent aspect for all 3 font
 types, the best is to use the corresponding Latin Modern
 font.

Yes, but encounter that font is of too thin outlines. I believe that it brings 
problems at the time of going to the press.
 
   The same for Bookman font.

 regards Uwe

Regards
Marcelo
 


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: question about family fonts

2010-01-22 Thread Marcelo Acuña
   If I choose Times Roman for roman font,
 what font I must to choose for sans serif font If I
 want to obtain an aesthetically coherent aspect?
 ...
 
 There is no definitive answer to this question, as there is
 no Times Sans. It depends on what you are after.
 
 The most used choice is a downscaled Helvetica. Although
 not necessarily
 aesthetically pleasing, it will go almost unnoticed (like
 Times for serif) because this is what people expect.
 
  I am using two columns in the book, therefore I am
 interested exactly
  in that: glyphs thinner with less space between.
 
 OK. 
 The next thing to consider is, whether the sans serif
 should match
 or stand out. In the first case, a semi-serif (like
 Ivona) might be
 advisable, in the latter a contrasting shape with maybe
 even different
 grey value like Avant Gard (or the TeX Gyre variant
 Adventor).
 

Thanks Guenter, but, lamentably for me, to include fonts to the Lyx is an 
unattainable art.
Marcelo


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: in Koma script book: how to put pages before the title page

2010-01-26 Thread Marcelo Acuña
 Thanks for the reply, Waluyo. I had managed to do this: but
 I am unable
 to put more than one line before the title without getting
 a compile
 error (No title found).
 
 what I can't do, is to put several (in fact 5) pages before
 my title-
 which is a requirement I have. Some of these pages are
 blank, and some
 contain things like cataloguing, keywords and copyright
 information that
 I am required to put there. However- and this is my
 problem- all must be
 contained in the page count, and all must come before the
 title page.

I decided to do aside all regarding the pages of the title in a file.
 This one has in the preamble:
\title{}
\date{}

Of that way I can do what wants. Then, I export this to Latex. In the main file 
I include that file. 
Regards
Marcelo


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: question about family fonts

2010-01-28 Thread Marcelo Acuña
 Three simple steps:
 
 * Open the document in LyX and set
 DocumentSettingsFonts to [Default].
 
 * find a font in the font catalogue (http://www.tug.dk/FontCatalogue/)
 
 * Copy the Usage line(s) to DocumentSettingsLaTeX
 preamble
 
 
 This assumes that the font in question is installed in your
 system.
 Installing LaTeX fonts might be simple or not, depending on
 your LaTeX
 distribution and the particular font. 
 (Ask again, if necessary, giving OS, LaTeX disto and
 font.)
 
Thanks Günter.
I have Debian Lenny with Tex-Live.
I chose Libertine.
I download the zip file from CTAN and put files in dir tree and run texhash.
I put in preamble the Usage lines.
I get a blank document with pdflatex.
With DVI I get a document without accented letters and several problems. (It 
shines quite ugly.)

Marcelo 



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: question about family fonts

2010-01-31 Thread Marcelo Acuña
  I have Debian Lenny with Tex-Live.
  I chose Libertine.
 
  I download the zip file from CTAN and put files in dir
 tree and run texhash.
 
 For TeX font installing under Debian, see:
    file:/usr/share/doc/tex-common/TeX-on-Debian.html/ch4.html#s-sec-font-installation
 I hope this helps.

 Thanks Günter! It work ok!
Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: linux-libertine fonts

2010-01-31 Thread Marcelo Acuña
 I have installed the
 ttf-linux-libertine (4.4.1-4)
 family of fonts
 under Debian (using synaptics)
 texhash and reconfigure of LyX
 but can't get it under
 Documentsettingsfontsserif etc
 
 what am I missing?

 You must see in the font catalogue (http://www.tug.dk/FontCatalogue/) en then 
copy the Usage lines to Document  Settings  LaTeX preamble.
Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


How I can add a new button to the tool bar?

2010-01-31 Thread Marcelo Acuña
Hello,
I need to make many changes in the size of the letters, and also to put bold or 
normal, in texts in which I must emphasize certain parts.
 It would help me much to have buttons such as those of emphasized and noum.
 How I can add them to the tool bar?
Regards
Marcelo


Marcelo Acuña visitá mi sitio web http://www.aleph-uno.com.ar 
==


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: How I can add a new button to the tool bar?

2010-02-04 Thread Marcelo Acuña
  I need to make many changes in the size of the
 letters, and also to put bold or normal, in texts in which I
 must emphasize certain parts.
    It would help me much to have buttons
 such as those of emphasized and noum.
    How I can add them to the tool bar?
 
 Toggling bold can be done withe the shortcut Ctrl+B. The
 toolbar button named Font (with the small arrow below) can
 be used to apply changes multiple times. It takes the last
 settings of the text style dialog. So when you e.g. have to
 make 50 words bold, italic, green, highlight one word and
 use the text style dialog to apply the changes.l For all
 further words, highlight them and press the Font button.
 
 In case this method is not what you need, you can add
 toolbar buttons by creating PNG-images (size 24x24 Pixels or
 smaller). Name the image by the LyX-function it stands for
 (e.g. font-bold.png). In the text file stdtoolbars.inc
 add the toolbar button where you like it.
 Finally reconfigure LyX.

 Thanks Uwe, Olivier!
 I could put all the buttons who I need since the system to apply the last 
style was not to me useful.
 The unique problem that I could not solve is to have icons adapted for those 
buttons, since, I don´t know in which directory I must put them and whereupon 
name so that it takes them to Lyx.
 Regards.
Marcelo


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: How I can add a new button to the tool bar?

2010-02-04 Thread Marcelo Acuña
   The unique problem that I could not solve is to
 have
   icons adapted for those buttons, since, I don´t
 know in which
   directory I must put them and whereupon name so
 that it
   takes them to Lyx.
 
 You only need to replace the existing icons in the LyX
 installation subfolder lib/images with the ones of
 Olivier's Zip-package.
 Then restart LyX and that's it.
 
 regards Uwe

 lib/images, Ok, but, in /home/marcelo or /usr/share?
 I put buttons for language Spanish and English, this are new icons, What names 
I must put to them to these icons?
Marcelo


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: How I can add a new button to the tool bar?

2010-02-10 Thread Marcelo Acuña
   lib/images, Ok, but, in /home/marcelo or
 /usr/share?
 
 In /home/marcelo/.lyx/images
 
 (maybe the .lyx is something else). The files there
 override the ones
 from /usr/share/lyx/images).
 
 JMarc

This worked very well. Thank you very much.
Marcelo


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: Changing Default Heading Typeface in KOMA-Script Documents

2010-02-12 Thread Marcelo Acuña
   I thought that I had saved
 instructions for changing the typeface for
 headings in KOMA-Script documents from san-serif to the
 default serif font.
 My search of my e-mail archive does not turn up this
 command. I also haven't
 seen an example in the KOMA-Script users guide.
 
   A clue on how to specify this in the document's
 preamble will be
 appreciated.

 I did that with titlesec package.
Marcelo


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: a few chapter*s between TOC and chapter 1 (NOT part of TOC)???

2010-02-18 Thread Marcelo Acuña
 The sequence is the TOC followed by a
 tex code box containing:
 \mainmatter
 \pagenumbering{roman}
 
 Then a few short chapter*(s) That are not part of the
 numbered chapters.
 And it is not desired for them to be labeled as contents
 in the output 
 
 And finally  Chapter 1...
 
 How can I stop output from inserting the word contents
 into the
 the page header of the chapter*{s} without relocating them
 to before the TOC, nor after chapter 1???

I believe that the unique form to avoid the bug is to redefine the header of 
the page by means of an ERT after the TOC.
Marcelo


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


<    1   2   3   4   5   6   7   8   9   10   >