Re: line out of margin

2015-03-02 Thread Gordon Cooper
Hi Eduardo.

  In,  DocumentSettingsPDF Properties, on the Hyperlinks Tab,
you could check 'Break Links over Lines' box. 

Gordon
Tauranga N.Z.




Re: List of Figures to Toc

2015-03-02 Thread Johannes Böttcher

Hi,

add to your preamble, from a previous mail i know that you are using a 
KOMA class.


KOMAoption{listof}{totoc}

best regards

On 02.03.2015 21:47, Aline Gautrein wrote:

Hey guys,

I am stil trying to resolve my contents problem:

I now try to use

\addcontentsline{toc}{chapter}{\listoftables}\markboth{}{}
\addcontentsline{toc}{chapter}{\listoffigures}\markboth{}{}

etc...

Now I get the error message:

TeX capacity exceeded, sorry [input stack size=5000].
\addcontentsline{toc}{chapter}{\listoftables}

\markboth{}{}

If you really absolutely need more capacity,

you can ask a wizard to enlarge me.


What can I do?


Greetings!

NewUser



Reference Problem Redux

2015-03-02 Thread William Hanson
Dear All,
Last summer Stefano Franchi did something for me that I was unable do.  He
created a tex file out of a lyx file and a bib file.  I'm in the same bind
again.  The problem, then and now, is that when I try to create a tex file
of my LyX document, the resulting tex file does not contain the References
that are in the original LyX document.  (All the references are from
BiBtex.  Following Stefano's instructions, I have the document itself (a
lyx file) and my Bibtex database (a bib file) in the same folder--under My
Documents in Windows 7).

When I use LyX to create a tex file (by selecting  File - Export - LaTeX
(plain)),  I get an error message saying that the filename ... can cause
troubles when running the exported file through LaTeX and opening the
resulting DVI.  If I ignore this warning and press on, I get another error
message that says, There are spaces in the paths to your BibTeX database.
BibTeX will be unable to find them.  (The only space in the path in
question is between My and Documents in My Documents.  I've tried
closing this space by renaming My Documents in Windows 7 as
MyDocuments, but it doesn't help.  I still get the same two error
messages.)  If I ignore this second warning and continue I get a tex file
of the document itself but without any of the references.

What should I do?

Bill


Re: KOMA Skript

2015-03-02 Thread Johannes Böttcher

Hi Aline,

the following example patches package `nomencl` to use the commands 
available with KOMA-script. Please test the example in it presented way, 
then implement it in LyX.


You can find more information about KOMA-script in the manual.

Please keep the list in cc.


Johannes


% 8 %%
\documentclass[listof=totoc]{scrbook}
\usepackage{etoolbox}
\usepackage{nomencl}
\makenomenclature
%\tracingpatches%for debugging
%\patchcmd{\thenomenclature}{\chapter*}{\addchap*}{}{}
%removes any preset header, no toc-entry
\patchcmd{\thenomenclature}{\chapter*}{\addchap}{}{}
%sets headers and toc entry
\usepackage{scrlayer-scrpage}
\ihead*{\leftmark}%for debugging visualization
\usepackage{blindtext}
\begin{document}
\tableofcontents
\listoftables
\listoffigures
\printnomenclature

\chapter{Aline}
\nomenclature{h}{Ein Buchstabe}
\captionof{figure}{Beschriftung}
\captionof{table}{andere Beschriftung}
\blindtext[2]
\end{document}
% 8 %%

On 02.03.2015 21:05, Aline Gautrein wrote:

Hi Johannes,

thanks for the quick answer.
I have already generated bot: the List of Tables, as well as the List of
Abbrevations. They are both in the table of contents. I used :

\renewcommand{\nomname}{}
\addcontentsline{toc}{chapter}{}

If I use this command, the header of the List of Abbrevations is List of
Tables

If I use

\addchap{}

I will get an empty page just with the chapter title and then a new page
with the chapter title and the corresponding list.

Do you have any idea?

Thanks a lot!
Aline

Am 2. März 2015 um 20:41 schrieb Johannes Böttcher 
johannesbottc...@gmail.com:


Hi,

How can you clear the header when issuing an unnumbered chapter/section?

The generic way would be to use `\markboth{}{}`. Depending on how you are
generating the List of Abbreviations, you could use `\addchap*` (or
`\addsec*` for scrartcl) which is the correct way with KOMA script. If you,
by any chance, want to have a numbered list, use `\addchap` (`\addsec`).


Best regards
Johannes

PS: Please note, this is an english speaking list.


On 02.03.2015 19:52, Aline Gautrein wrote:


Hallo liebe Lyx-User,

ich schreibe gerade eine Abschlussarbeit mit Lyx.
Ich schreibe mit KOMA Skript.
Ich habe an den Anfang des Dokumentes Listen für Abbildungen, Tabellen
usw.
gesetzt.
Im Ausgabedokument steht im Seitenkopf, wo man sich gerade befindet, also
zB.: List of Figures oder List of Tables.


Jetzt mein Problem:
Nach der List of Tables folgt noch List of Abbrevations.
Das Problem: Alle Seiten der List of Abbrevations sind mit List of
Tables überschriftet.
Weiß jemand, welchen Trenner ich einfügen kann, dass dies nicht mehr
auftritt?
Sowas wie

\endcommand

oder so?

Danke und Grüße
NewUSER






Re: Beamer: adding a frame before another frame (but not after another frame)

2015-03-02 Thread Paul A . Rubin
Scott Kostyshak skostysh at lyx.org writes:

 OK. Do you have any thoughts (don't worry if not) on the idea of
 start a new frame regardless of the context? Currently I do the
 following:
 
 command-alternatives environment-split outer; environment-split; layout Frame
 

FWIW, I did the following (which I think I found somewhere either on the
wiki or on this list, but I no longer recall).

1. In ~/.lyx/commands/default.def, I added the command

\define newframe command-sequence paragraph-break inverse ;
depth-decrement ; depth-decrement ; depth-decrement ; depth-decrement ;
layout Frame ; inset-dissolve ; environment-split

I don't recall whether I had to create default.def or not. That's the entire
contents of the file.

2. In Tools  Preferences...  Editing  Shortcuts, for my default bind file
(cua), I bound Ctrl+Alt+Return to call newframe (and unbound it from
whatever it was previously bound to). It ended up under System and
Miscellaneous; not sure why, don't care.

In the macro, I did four depth decrements on the assumption that I would
never be any deeper than four levels in. Extra decrements don't hurt; LyX
just ignores them. That's my clumsy workaround to make it work from any depth.

Paul




Re: List of Figures to Toc

2015-03-02 Thread Michael Berger

On 03/02/2015 09:47 PM, Aline Gautrein wrote:

Hey guys,

I am stil trying to resolve my contents problem:

I now try to use

\addcontentsline{toc}{chapter}{\listoftables}\markboth{}{}
\addcontentsline{toc}{chapter}{\listoffigures}\markboth{}{}

etc...

Now I get the error message:

TeX capacity exceeded, sorry [input stack size=5000].
\addcontentsline{toc}{chapter}{\listoftables}

\markboth{}{}

If you really absolutely need more capacity,

you can ask a wizard to enlarge me.


What can I do?


Greetings!

NewUser



Hi Aline,
Try \addcontentsline{toc}{chapter}{listoftables}\markboth{}{}
i.e. remove the backslash preceding listoftables.
It works here.
Michael

PS:
Perhaps the screenshot is more explanatory,
Michael



Re: List of Figures to Toc

2015-03-02 Thread Michael Berger

On 03/02/2015 09:47 PM, Aline Gautrein wrote:

Hey guys,

I am stil trying to resolve my contents problem:

I now try to use

\addcontentsline{toc}{chapter}{\listoftables}\markboth{}{}
\addcontentsline{toc}{chapter}{\listoffigures}\markboth{}{}

etc...

Now I get the error message:

TeX capacity exceeded, sorry [input stack size=5000].
\addcontentsline{toc}{chapter}{\listoftables}

\markboth{}{}

If you really absolutely need more capacity,

you can ask a wizard to enlarge me.


What can I do?


Greetings!

NewUser



Hi Aline,
Try \addcontentsline{toc}{chapter}{listoftables}\markboth{}{}
i.e. remove the backslash preceding listoftables.
It works here.
Michael


Re: Change horizontal spaces in lists without extra package

2015-03-02 Thread Guenter Milde
On 2015-03-02, Csikos Bela wrote:

 [-- Type: text/plain, Encoding:  --]

 Hello:

 I would like to change the spaces between text and beginning/ending of
 lists, as well as between list items.

 Based on http://en.wikibooks.org/wiki/LaTeX/List_Structures I modified
 list spacing values, but it has only partial effect. The space betweens
 items has changed, but the space between text and list hasn't
 disappeared. I would like to decrease the space between text and list
 beginning/ending to exactly one linespace. 

 I don't want to use enumitem or any other extra package to approach
 this.

 How can I?

You have to read a book about TeX/LaTeX and how lists are structured and
which parameters you can change and how.

Then, try with a test.tex example document.

Then, transfer the knowledge to LyX: you will need to insert preamble
code in DocumentSettingsuser-preamble and code in the document in ERT (raw
LaTeX inserts).


All this is done for you by the LaTeX package authors and LyX module authors.
So it is easier to use a package.

Günter



List of Figures to Toc

2015-03-02 Thread Aline Gautrein
Hey guys,

I am stil trying to resolve my contents problem:

I now try to use

\addcontentsline{toc}{chapter}{\listoftables}\markboth{}{}
\addcontentsline{toc}{chapter}{\listoffigures}\markboth{}{}

etc...

Now I get the error message:

TeX capacity exceeded, sorry [input stack size=5000].
\addcontentsline{toc}{chapter}{\listoftables}

\markboth{}{}

If you really absolutely need more capacity,

you can ask a wizard to enlarge me.


What can I do?


Greetings!

NewUser


Pyxplot in LyX

2015-03-02 Thread Wolfgang Engelmann
Animated by the discussion on Pgfplots in Lyx I wonder whether it is 
also possible to do the same with figures produced by Pyxplot:

http://pyxplot.org.uk/
I have many (~thousand) figures produced with it, and I personal think 
it is easier to learn and use as is TikZ. I guess what one needs is 
something adequate to \usepackage{pgfplots}, namely 
\usepackage{pyxplot}. But I don't know what the former does and how 
difficult it is to produce it.
The advantage would be that the script of the pyxplot figures will be 
storred in the lyx file and that the text of the figures has the same 
latex format and size as the document text.

Wolfgang


Re: Beamer: adding a frame before another frame (but not after another frame)

2015-03-02 Thread Jürgen Spitzmüller
2015-03-01 22:07 GMT+01:00 Scott Kostyshak:

 Sometimes I find it difficult to add a frame in beamer. The following
 is an example. Open examples/beamer.lyx. What is the easiest way to
 add a frame before the frame Purpose of the Beamer class ?

 I've found two ways:

 1. Place the cursor to the left of Default Overlay Specifications,
 press return, enter the title of the new frame, then press alt + p,
 return, then press the delete key, then put my cursor back up to the
 new frame.

 2. Place the cursor to the right of the Section title (Purposes),
 then press return, then run separator-insert, then press left, then
 press return, then insert a frame.

 Does anyone know an easier way?


Not by default. FWIW, I find this cumbersome myself.

You could extend environment-split accordingly (environment-split above and
environment-split outer-above), which should not be too hard. I also think
this would deserve a menu entry.

Jürgen



 I think the reason this is difficult is that LyX cannot know whether I
 want a new frame, or I want to continue the frame above/below.

 Scott



Question regarding the correction mode of LyX

2015-03-02 Thread Harold Mouras
Dear LyX users,
I have question regarding the correction mode of Lyx. In a document, I used
this correction mode and I would like to export my LyX document in a word
document in which I could see my LyX corrections under word corrections ?
Is that possible ?
Thank you very much in advance,
Best regards,
Harold Mouras
-- 
*Harold Mouras*
*Professeur des Universités*
*Psychophysiologie, Neurosciences *
*Responsable des Enseignements de Neuroscience de Licence
https://sites.google.com/site/hmouras/enseignement/upjv/psychologie *
-
UFR SHSP | Département de Psychologie
EA 7273 - Centre de Recherche en Psychologie | Research Center in Psychology
Université de Picardie Jules Verne | Jules Verne Picardy University
Chemin du Thil | 80 025 Amiens Cedex 1
Phone: +33 (6) 51 52 04 29 | Mail: harold.mou...@u-picardie.fr
https://sites.google.com/site/hmouras
-


RollApp

2015-03-02 Thread Francesco Menoncin

Dear LyXers,

does anyone know whether there exists a project to add LyX to the 
RollApp list?

https://www.rollapp.com/

Thanks,

Francesco

--
---
Francesco Menoncin
Associate Professor
University of Brescia
Department of Economics and Management
E-mail: francesco.menon...@unibs.it
Tel. 0039-0302988806
Fax. 0039-0302988836
https://sites.google.com/site/francescomenoncin/
http://www.eco.unibs.it/~menoncin/


--
Informativa sulla Privacy: http://www.unibs.it/node/8155


Re: Question regarding the correction mode of LyX

2015-03-02 Thread Richard Heck

On 03/02/2015 10:27 AM, Harold Mouras wrote:

Dear LyX users,
I have question regarding the correction mode of Lyx. In a document, I 
used this correction mode and I would like to export my LyX document 
in a word document in which I could see my LyX corrections under word 
corrections ? Is that possible ?


Do you mean change tracking? so LyX shows what you've deleted and added? 
If so, I have no idea if this is possible. It depends entirely upon 
whether whatever LaTeX -- Word program you are using to do the export. 
But I'd suspect that oolatex would support this.


Richard



Re: line out of margin

2015-03-02 Thread Liviu Andronic
On Mon, Mar 2, 2015 at 5:47 PM, Eduardo Bologna ebolo...@gmail.com wrote:

 Hi list, I´m using Lyx 2.1.2 in windows 7, my document is article
 (standar). I´ve adjusted margins to 2.5cm.

 Everything goes OK, but when it finds URLs, it does not make a separation,
 and the line continues beyond the margin, and it cuts off.

 For example, this is what I write in lyx:



 (vídeo 9, 10, 11 y 12 relaciones entre variables, disponibles en: 
 http://.
 s, http://.6k, http://._0 y http://
 ..g



 And this is what I get in pdf:


 [image: Imágenes integradas 1]



 I can put enter to regulate in Lyx the length of the line, but I expect
 it automatically done as it happens with all the other lines in the
 document.




Try Insert  Hyperlink or URL.

Liviu



 Thank you very much






-- 
Do you think you know what math is?
http://www.ideasroadshow.com/issues/ian-stewart-2013-08-02
Or what it means to be intelligent?
http://www.ideasroadshow.com/issues/john-duncan-2013-08-30
Think again:
http://www.ideasroadshow.com/library


line out of margin

2015-03-02 Thread Eduardo Bologna
Hi list, I´m using Lyx 2.1.2 in windows 7, my document is article
(standar). I´ve adjusted margins to 2.5cm.

Everything goes OK, but when it finds URLs, it does not make a separation,
and the line continues beyond the margin, and it cuts off.

For example, this is what I write in lyx:



(vídeo 9, 10, 11 y 12 relaciones entre variables, disponibles en:
http://.
s, http://.6k, http://._0 y http://
..g



And this is what I get in pdf:


[image: Imágenes integradas 1]



I can put enter to regulate in Lyx the length of the line, but I expect
it automatically done as it happens with all the other lines in the
document.



Thank you very much


Change horizontal spaces in lists without extra package

2015-03-02 Thread Csikos Bela
Hello:

I would like to change the spaces between text and beginning/ending of lists, 
as well as between list items.

Based on http://en.wikibooks.org/wiki/LaTeX/List_Structures I modified list 
spacing values, but it has only partial effect. The space betweens items has 
changed, but the space between text and list hasn't disappeared. I would like 
to decrease the space between text and list beginning/ending to exactly one 
linespace. 

I don't want to use enumitem or any other extra package to approach this.

How can I?
Why doesn't the setting in my example's preamble have effect?

I attach an example lyx file and a pdf output.

Thanks,

bcsikos

list-example.lyx
Description: Binary data


list-example.pdf
Description: Adobe PDF document


KOMA Skript

2015-03-02 Thread Aline Gautrein
Hallo liebe Lyx-User,

ich schreibe gerade eine Abschlussarbeit mit Lyx.
Ich schreibe mit KOMA Skript.
Ich habe an den Anfang des Dokumentes Listen für Abbildungen, Tabellen usw.
gesetzt.
Im Ausgabedokument steht im Seitenkopf, wo man sich gerade befindet, also
zB.: List of Figures oder List of Tables.


Jetzt mein Problem:
Nach der List of Tables folgt noch List of Abbrevations.
Das Problem: Alle Seiten der List of Abbrevations sind mit List of
Tables überschriftet.
Weiß jemand, welchen Trenner ich einfügen kann, dass dies nicht mehr
auftritt?
Sowas wie

\endcommand

oder so?

Danke und Grüße
NewUSER


Re: line out of margin

2015-03-02 Thread William Seager
On Monday, March 02, 2015 16:47:26 Eduardo Bologna wrote:
 
 Everything goes OK, but when it finds URLs, it does not make a separation,
 and the line continues beyond the margin, and it cuts off.

you could try in the preamble 

\usepackage[hyphens]{url}

-- 
William Seager
University of Toronto Scarborough
www.utsc.utoronto.ca/~seager

Nature is nowhere inaccessible and 
everywhere unfathomable T. Huxley


Re: Beamer: adding a frame before another frame (but not after another frame)

2015-03-02 Thread Scott Kostyshak
On Mon, Mar 2, 2015 at 6:16 AM, Jürgen Spitzmüller sp...@lyx.org wrote:
 2015-03-01 22:07 GMT+01:00 Scott Kostyshak:

 Sometimes I find it difficult to add a frame in beamer. The following
 is an example. Open examples/beamer.lyx. What is the easiest way to
 add a frame before the frame Purpose of the Beamer class ?

 I've found two ways:

 1. Place the cursor to the left of Default Overlay Specifications,
 press return, enter the title of the new frame, then press alt + p,
 return, then press the delete key, then put my cursor back up to the
 new frame.

 2. Place the cursor to the right of the Section title (Purposes),
 then press return, then run separator-insert, then press left, then
 press return, then insert a frame.

 Does anyone know an easier way?


 Not by default. FWIW, I find this cumbersome myself.

 You could extend environment-split accordingly (environment-split above and
 environment-split outer-above), which should not be too hard. I also think
 this would deserve a menu entry.

 Jürgen



 I think the reason this is difficult is that LyX cannot know whether I
 want a new frame, or I want to continue the frame above/below.

OK. Do you have any thoughts (don't worry if not) on the idea of
start a new frame regardless of the context? Currently I do the
following:

command-alternatives environment-split outer; environment-split; layout Frame

Scott


Pyxplot in LyX

2015-03-02 Thread Wolfgang Engelmann
Animated by the discussion on Pgfplots in Lyx I wonder whether it is 
also possible to do the same with figures produced by Pyxplot:

http://pyxplot.org.uk/
I have many (~thousand) figures produced with it, and I personal think 
it is easier to learn and use as is TikZ. I guess what one needs is 
something adequate to \usepackage{pgfplots}, namely 
\usepackage{pyxplot}. But I don't know what the former does and how 
difficult it is to produce it.
The advantage would be that the script of the pyxplot figures will be 
storred in the lyx file and that the text of the figures has the same 
latex format and size as the document text.

Wolfgang


Re: Beamer: adding a frame before another frame (but not after another frame)

2015-03-02 Thread Jürgen Spitzmüller
2015-03-01 22:07 GMT+01:00 Scott Kostyshak:

 Sometimes I find it difficult to add a frame in beamer. The following
 is an example. Open examples/beamer.lyx. What is the easiest way to
 add a frame before the frame Purpose of the Beamer class ?

 I've found two ways:

 1. Place the cursor to the left of Default Overlay Specifications,
 press return, enter the title of the new frame, then press alt + p,
 return, then press the delete key, then put my cursor back up to the
 new frame.

 2. Place the cursor to the right of the Section title (Purposes),
 then press return, then run separator-insert, then press left, then
 press return, then insert a frame.

 Does anyone know an easier way?


Not by default. FWIW, I find this cumbersome myself.

You could extend environment-split accordingly (environment-split above and
environment-split outer-above), which should not be too hard. I also think
this would deserve a menu entry.

Jürgen



 I think the reason this is difficult is that LyX cannot know whether I
 want a new frame, or I want to continue the frame above/below.

 Scott



Question regarding the correction mode of LyX

2015-03-02 Thread Harold Mouras
Dear LyX users,
I have question regarding the correction mode of Lyx. In a document, I used
this correction mode and I would like to export my LyX document in a word
document in which I could see my LyX corrections under word corrections ?
Is that possible ?
Thank you very much in advance,
Best regards,
Harold Mouras
-- 
*Harold Mouras*
*Professeur des Universités*
*Psychophysiologie, Neurosciences *
*Responsable des Enseignements de Neuroscience de Licence
https://sites.google.com/site/hmouras/enseignement/upjv/psychologie *
-
UFR SHSP | Département de Psychologie
EA 7273 - Centre de Recherche en Psychologie | Research Center in Psychology
Université de Picardie Jules Verne | Jules Verne Picardy University
Chemin du Thil | 80 025 Amiens Cedex 1
Phone: +33 (6) 51 52 04 29 | Mail: harold.mou...@u-picardie.fr
https://sites.google.com/site/hmouras
-


RollApp

2015-03-02 Thread Francesco Menoncin

Dear LyXers,

does anyone know whether there exists a project to add LyX to the 
RollApp list?

https://www.rollapp.com/

Thanks,

Francesco

--
---
Francesco Menoncin
Associate Professor
University of Brescia
Department of Economics and Management
E-mail: francesco.menon...@unibs.it
Tel. 0039-0302988806
Fax. 0039-0302988836
https://sites.google.com/site/francescomenoncin/
http://www.eco.unibs.it/~menoncin/


--
Informativa sulla Privacy: http://www.unibs.it/node/8155


line out of margin

2015-03-02 Thread Eduardo Bologna
Hi list, I´m using Lyx 2.1.2 in windows 7, my document is article
(standar). I´ve adjusted margins to 2.5cm.

Everything goes OK, but when it finds URLs, it does not make a separation,
and the line continues beyond the margin, and it cuts off.

For example, this is what I write in lyx:



(vídeo 9, 10, 11 y 12 relaciones entre variables, disponibles en:
http://.
s, http://.6k, http://._0 y http://
..g



And this is what I get in pdf:


[image: Imágenes integradas 1]



I can put enter to regulate in Lyx the length of the line, but I expect
it automatically done as it happens with all the other lines in the
document.



Thank you very much


Re: line out of margin

2015-03-02 Thread Liviu Andronic
On Mon, Mar 2, 2015 at 5:47 PM, Eduardo Bologna ebolo...@gmail.com wrote:

 Hi list, I´m using Lyx 2.1.2 in windows 7, my document is article
 (standar). I´ve adjusted margins to 2.5cm.

 Everything goes OK, but when it finds URLs, it does not make a separation,
 and the line continues beyond the margin, and it cuts off.

 For example, this is what I write in lyx:



 (vídeo 9, 10, 11 y 12 relaciones entre variables, disponibles en: 
 http://.
 s, http://.6k, http://._0 y http://
 ..g



 And this is what I get in pdf:


 [image: Imágenes integradas 1]



 I can put enter to regulate in Lyx the length of the line, but I expect
 it automatically done as it happens with all the other lines in the
 document.




Try Insert  Hyperlink or URL.

Liviu



 Thank you very much






-- 
Do you think you know what math is?
http://www.ideasroadshow.com/issues/ian-stewart-2013-08-02
Or what it means to be intelligent?
http://www.ideasroadshow.com/issues/john-duncan-2013-08-30
Think again:
http://www.ideasroadshow.com/library


Re: Question regarding the correction mode of LyX

2015-03-02 Thread Richard Heck

On 03/02/2015 10:27 AM, Harold Mouras wrote:

Dear LyX users,
I have question regarding the correction mode of Lyx. In a document, I 
used this correction mode and I would like to export my LyX document 
in a word document in which I could see my LyX corrections under word 
corrections ? Is that possible ?


Do you mean change tracking? so LyX shows what you've deleted and added? 
If so, I have no idea if this is possible. It depends entirely upon 
whether whatever LaTeX -- Word program you are using to do the export. 
But I'd suspect that oolatex would support this.


Richard



Change horizontal spaces in lists without extra package

2015-03-02 Thread Csikos Bela
Hello:

I would like to change the spaces between text and beginning/ending of lists, 
as well as between list items.

Based on http://en.wikibooks.org/wiki/LaTeX/List_Structures I modified list 
spacing values, but it has only partial effect. The space betweens items has 
changed, but the space between text and list hasn't disappeared. I would like 
to decrease the space between text and list beginning/ending to exactly one 
linespace. 

I don't want to use enumitem or any other extra package to approach this.

How can I?
Why doesn't the setting in my example's preamble have effect?

I attach an example lyx file and a pdf output.

Thanks,

bcsikos

list-example.lyx
Description: Binary data


list-example.pdf
Description: Adobe PDF document


KOMA Skript

2015-03-02 Thread Aline Gautrein
Hallo liebe Lyx-User,

ich schreibe gerade eine Abschlussarbeit mit Lyx.
Ich schreibe mit KOMA Skript.
Ich habe an den Anfang des Dokumentes Listen für Abbildungen, Tabellen usw.
gesetzt.
Im Ausgabedokument steht im Seitenkopf, wo man sich gerade befindet, also
zB.: List of Figures oder List of Tables.


Jetzt mein Problem:
Nach der List of Tables folgt noch List of Abbrevations.
Das Problem: Alle Seiten der List of Abbrevations sind mit List of
Tables überschriftet.
Weiß jemand, welchen Trenner ich einfügen kann, dass dies nicht mehr
auftritt?
Sowas wie

\endcommand

oder so?

Danke und Grüße
NewUSER


Re: Beamer: adding a frame before another frame (but not after another frame)

2015-03-02 Thread Scott Kostyshak
On Mon, Mar 2, 2015 at 6:16 AM, Jürgen Spitzmüller sp...@lyx.org wrote:
 2015-03-01 22:07 GMT+01:00 Scott Kostyshak:

 Sometimes I find it difficult to add a frame in beamer. The following
 is an example. Open examples/beamer.lyx. What is the easiest way to
 add a frame before the frame Purpose of the Beamer class ?

 I've found two ways:

 1. Place the cursor to the left of Default Overlay Specifications,
 press return, enter the title of the new frame, then press alt + p,
 return, then press the delete key, then put my cursor back up to the
 new frame.

 2. Place the cursor to the right of the Section title (Purposes),
 then press return, then run separator-insert, then press left, then
 press return, then insert a frame.

 Does anyone know an easier way?


 Not by default. FWIW, I find this cumbersome myself.

 You could extend environment-split accordingly (environment-split above and
 environment-split outer-above), which should not be too hard. I also think
 this would deserve a menu entry.

 Jürgen



 I think the reason this is difficult is that LyX cannot know whether I
 want a new frame, or I want to continue the frame above/below.

OK. Do you have any thoughts (don't worry if not) on the idea of
start a new frame regardless of the context? Currently I do the
following:

command-alternatives environment-split outer; environment-split; layout Frame

Scott


Re: line out of margin

2015-03-02 Thread William Seager
On Monday, March 02, 2015 16:47:26 Eduardo Bologna wrote:
 
 Everything goes OK, but when it finds URLs, it does not make a separation,
 and the line continues beyond the margin, and it cuts off.

you could try in the preamble 

\usepackage[hyphens]{url}

-- 
William Seager
University of Toronto Scarborough
www.utsc.utoronto.ca/~seager

Nature is nowhere inaccessible and 
everywhere unfathomable T. Huxley


List of Figures to Toc

2015-03-02 Thread Aline Gautrein
Hey guys,

I am stil trying to resolve my contents problem:

I now try to use

\addcontentsline{toc}{chapter}{\listoftables}\markboth{}{}
\addcontentsline{toc}{chapter}{\listoffigures}\markboth{}{}

etc...

Now I get the error message:

TeX capacity exceeded, sorry [input stack size=5000].
\addcontentsline{toc}{chapter}{\listoftables}

\markboth{}{}

If you really absolutely need more capacity,

you can ask a wizard to enlarge me.


What can I do?


Greetings!

NewUser


Re: KOMA Skript

2015-03-02 Thread Johannes Böttcher

Hi Aline,

the following example patches package `nomencl` to use the commands 
available with KOMA-script. Please test the example in it presented way, 
then implement it in LyX.


You can find more information about KOMA-script in the manual.

Please keep the list in cc.


Johannes


% 8 %%
\documentclass[listof=totoc]{scrbook}
\usepackage{etoolbox}
\usepackage{nomencl}
\makenomenclature
%\tracingpatches%for debugging
%\patchcmd{\thenomenclature}{\chapter*}{\addchap*}{}{}
%removes any preset header, no toc-entry
\patchcmd{\thenomenclature}{\chapter*}{\addchap}{}{}
%sets headers and toc entry
\usepackage{scrlayer-scrpage}
\ihead*{\leftmark}%for debugging visualization
\usepackage{blindtext}
\begin{document}
\tableofcontents
\listoftables
\listoffigures
\printnomenclature

\chapter{Aline}
\nomenclature{h}{Ein Buchstabe}
\captionof{figure}{Beschriftung}
\captionof{table}{andere Beschriftung}
\blindtext[2]
\end{document}
% 8 %%

On 02.03.2015 21:05, Aline Gautrein wrote:

Hi Johannes,

thanks for the quick answer.
I have already generated bot: the List of Tables, as well as the List of
Abbrevations. They are both in the table of contents. I used :

\renewcommand{\nomname}{}
\addcontentsline{toc}{chapter}{}

If I use this command, the header of the List of Abbrevations is List of
Tables

If I use

\addchap{}

I will get an empty page just with the chapter title and then a new page
with the chapter title and the corresponding list.

Do you have any idea?

Thanks a lot!
Aline

Am 2. März 2015 um 20:41 schrieb Johannes Böttcher 
johannesbottc...@gmail.com:


Hi,

How can you clear the header when issuing an unnumbered chapter/section?

The generic way would be to use `\markboth{}{}`. Depending on how you are
generating the List of Abbreviations, you could use `\addchap*` (or
`\addsec*` for scrartcl) which is the correct way with KOMA script. If you,
by any chance, want to have a numbered list, use `\addchap` (`\addsec`).


Best regards
Johannes

PS: Please note, this is an english speaking list.


On 02.03.2015 19:52, Aline Gautrein wrote:


Hallo liebe Lyx-User,

ich schreibe gerade eine Abschlussarbeit mit Lyx.
Ich schreibe mit KOMA Skript.
Ich habe an den Anfang des Dokumentes Listen für Abbildungen, Tabellen
usw.
gesetzt.
Im Ausgabedokument steht im Seitenkopf, wo man sich gerade befindet, also
zB.: List of Figures oder List of Tables.


Jetzt mein Problem:
Nach der List of Tables folgt noch List of Abbrevations.
Das Problem: Alle Seiten der List of Abbrevations sind mit List of
Tables überschriftet.
Weiß jemand, welchen Trenner ich einfügen kann, dass dies nicht mehr
auftritt?
Sowas wie

\endcommand

oder so?

Danke und Grüße
NewUSER






Re: List of Figures to Toc

2015-03-02 Thread Johannes Böttcher

Hi,

add to your preamble, from a previous mail i know that you are using a 
KOMA class.


KOMAoption{listof}{totoc}

best regards

On 02.03.2015 21:47, Aline Gautrein wrote:

Hey guys,

I am stil trying to resolve my contents problem:

I now try to use

\addcontentsline{toc}{chapter}{\listoftables}\markboth{}{}
\addcontentsline{toc}{chapter}{\listoffigures}\markboth{}{}

etc...

Now I get the error message:

TeX capacity exceeded, sorry [input stack size=5000].
\addcontentsline{toc}{chapter}{\listoftables}

\markboth{}{}

If you really absolutely need more capacity,

you can ask a wizard to enlarge me.


What can I do?


Greetings!

NewUser



Re: line out of margin

2015-03-02 Thread Gordon Cooper
Hi Eduardo.

  In,  DocumentSettingsPDF Properties, on the Hyperlinks Tab,
you could check 'Break Links over Lines' box. 

Gordon
Tauranga N.Z.




Reference Problem Redux

2015-03-02 Thread William Hanson
Dear All,
Last summer Stefano Franchi did something for me that I was unable do.  He
created a tex file out of a lyx file and a bib file.  I'm in the same bind
again.  The problem, then and now, is that when I try to create a tex file
of my LyX document, the resulting tex file does not contain the References
that are in the original LyX document.  (All the references are from
BiBtex.  Following Stefano's instructions, I have the document itself (a
lyx file) and my Bibtex database (a bib file) in the same folder--under My
Documents in Windows 7).

When I use LyX to create a tex file (by selecting  File - Export - LaTeX
(plain)),  I get an error message saying that the filename ... can cause
troubles when running the exported file through LaTeX and opening the
resulting DVI.  If I ignore this warning and press on, I get another error
message that says, There are spaces in the paths to your BibTeX database.
BibTeX will be unable to find them.  (The only space in the path in
question is between My and Documents in My Documents.  I've tried
closing this space by renaming My Documents in Windows 7 as
MyDocuments, but it doesn't help.  I still get the same two error
messages.)  If I ignore this second warning and continue I get a tex file
of the document itself but without any of the references.

What should I do?

Bill


Re: Beamer: adding a frame before another frame (but not after another frame)

2015-03-02 Thread Paul A . Rubin
Scott Kostyshak skostysh at lyx.org writes:

 OK. Do you have any thoughts (don't worry if not) on the idea of
 start a new frame regardless of the context? Currently I do the
 following:
 
 command-alternatives environment-split outer; environment-split; layout Frame
 

FWIW, I did the following (which I think I found somewhere either on the
wiki or on this list, but I no longer recall).

1. In ~/.lyx/commands/default.def, I added the command

\define newframe command-sequence paragraph-break inverse ;
depth-decrement ; depth-decrement ; depth-decrement ; depth-decrement ;
layout Frame ; inset-dissolve ; environment-split

I don't recall whether I had to create default.def or not. That's the entire
contents of the file.

2. In Tools  Preferences...  Editing  Shortcuts, for my default bind file
(cua), I bound Ctrl+Alt+Return to call newframe (and unbound it from
whatever it was previously bound to). It ended up under System and
Miscellaneous; not sure why, don't care.

In the macro, I did four depth decrements on the assumption that I would
never be any deeper than four levels in. Extra decrements don't hurt; LyX
just ignores them. That's my clumsy workaround to make it work from any depth.

Paul




Re: List of Figures to Toc

2015-03-02 Thread Michael Berger

On 03/02/2015 09:47 PM, Aline Gautrein wrote:

Hey guys,

I am stil trying to resolve my contents problem:

I now try to use

\addcontentsline{toc}{chapter}{\listoftables}\markboth{}{}
\addcontentsline{toc}{chapter}{\listoffigures}\markboth{}{}

etc...

Now I get the error message:

TeX capacity exceeded, sorry [input stack size=5000].
\addcontentsline{toc}{chapter}{\listoftables}

\markboth{}{}

If you really absolutely need more capacity,

you can ask a wizard to enlarge me.


What can I do?


Greetings!

NewUser



Hi Aline,
Try \addcontentsline{toc}{chapter}{listoftables}\markboth{}{}
i.e. remove the backslash preceding listoftables.
It works here.
Michael


Re: List of Figures to Toc

2015-03-02 Thread Michael Berger

On 03/02/2015 09:47 PM, Aline Gautrein wrote:

Hey guys,

I am stil trying to resolve my contents problem:

I now try to use

\addcontentsline{toc}{chapter}{\listoftables}\markboth{}{}
\addcontentsline{toc}{chapter}{\listoffigures}\markboth{}{}

etc...

Now I get the error message:

TeX capacity exceeded, sorry [input stack size=5000].
\addcontentsline{toc}{chapter}{\listoftables}

\markboth{}{}

If you really absolutely need more capacity,

you can ask a wizard to enlarge me.


What can I do?


Greetings!

NewUser



Hi Aline,
Try \addcontentsline{toc}{chapter}{listoftables}\markboth{}{}
i.e. remove the backslash preceding listoftables.
It works here.
Michael

PS:
Perhaps the screenshot is more explanatory,
Michael



Re: Change horizontal spaces in lists without extra package

2015-03-02 Thread Guenter Milde
On 2015-03-02, Csikos Bela wrote:

 [-- Type: text/plain, Encoding:  --]

 Hello:

 I would like to change the spaces between text and beginning/ending of
 lists, as well as between list items.

 Based on http://en.wikibooks.org/wiki/LaTeX/List_Structures I modified
 list spacing values, but it has only partial effect. The space betweens
 items has changed, but the space between text and list hasn't
 disappeared. I would like to decrease the space between text and list
 beginning/ending to exactly one linespace. 

 I don't want to use enumitem or any other extra package to approach
 this.

 How can I?

You have to read a book about TeX/LaTeX and how lists are structured and
which parameters you can change and how.

Then, try with a test.tex example document.

Then, transfer the knowledge to LyX: you will need to insert preamble
code in DocumentSettingsuser-preamble and code in the document in ERT (raw
LaTeX inserts).


All this is done for you by the LaTeX package authors and LyX module authors.
So it is easier to use a package.

Günter



Pyxplot in LyX

2015-03-02 Thread Wolfgang Engelmann
Animated by the discussion on Pgfplots in Lyx I wonder whether it is 
also possible to do the same with figures produced by Pyxplot:

http://pyxplot.org.uk/
I have many (~thousand) figures produced with it, and I personal think 
it is easier to learn and use as is TikZ. I guess what one needs is 
something adequate to \usepackage{pgfplots}, namely 
\usepackage{pyxplot}. But I don't know what the former does and how 
difficult it is to produce it.
The advantage would be that the script of the pyxplot figures will be 
storred in the lyx file and that the text of the figures has the same 
latex format and size as the document text.

Wolfgang


Re: Beamer: adding a frame before another frame (but not after another frame)

2015-03-02 Thread Jürgen Spitzmüller
2015-03-01 22:07 GMT+01:00 Scott Kostyshak:

> Sometimes I find it difficult to add a frame in beamer. The following
> is an example. Open examples/beamer.lyx. What is the easiest way to
> add a frame before the frame "Purpose of the Beamer class" ?
>
> I've found two ways:
>
> 1. Place the cursor to the left of "Default Overlay Specifications",
> press return, enter the title of the new frame, then press alt + p,
> return, then press the delete key, then put my cursor back up to the
> new frame.
>
> 2. Place the cursor to the right of the Section title ("Purposes"),
> then press return, then run "separator-insert", then press left, then
> press return, then insert a frame.
>
> Does anyone know an easier way?
>

Not by default. FWIW, I find this cumbersome myself.

You could extend environment-split accordingly (environment-split above and
environment-split outer-above), which should not be too hard. I also think
this would deserve a menu entry.

Jürgen


>
> I think the reason this is difficult is that LyX cannot know whether I
> want a new frame, or I want to continue the frame above/below.
>
> Scott
>


Question regarding the correction mode of LyX

2015-03-02 Thread Harold Mouras
Dear LyX users,
I have question regarding the correction mode of Lyx. In a document, I used
this correction mode and I would like to export my LyX document in a word
document in which I could see my LyX corrections under word corrections ?
Is that possible ?
Thank you very much in advance,
Best regards,
Harold Mouras
-- 
*Harold Mouras*
*Professeur des Universités*
*Psychophysiologie, Neurosciences *
*Responsable des Enseignements de Neuroscience de Licence
 *
-
UFR SHSP | Département de Psychologie
EA 7273 - Centre de Recherche en Psychologie | Research Center in Psychology
Université de Picardie Jules Verne | Jules Verne Picardy University
Chemin du Thil | 80 025 Amiens Cedex 1
Phone: +33 (6) 51 52 04 29 | Mail: harold.mou...@u-picardie.fr
https://sites.google.com/site/hmouras
-


RollApp

2015-03-02 Thread Francesco Menoncin

Dear LyXers,

does anyone know whether there exists a project to add LyX to the 
"RollApp" list?

https://www.rollapp.com/

Thanks,

Francesco

--
---
Francesco Menoncin
Associate Professor
University of Brescia
Department of Economics and Management
E-mail: francesco.menon...@unibs.it
Tel. 0039-0302988806
Fax. 0039-0302988836
https://sites.google.com/site/francescomenoncin/
http://www.eco.unibs.it/~menoncin/


--
Informativa sulla Privacy: http://www.unibs.it/node/8155


line out of margin

2015-03-02 Thread Eduardo Bologna
Hi list, I´m using Lyx 2.1.2 in windows 7, my document is article
(standar). I´ve adjusted margins to 2.5cm.

Everything goes OK, but when it finds URLs, it does not make a separation,
and the line continues beyond the margin, and it cuts off.

For example, this is what I write in lyx:



(vídeo 9, 10, 11 y 12 relaciones entre variables, disponibles en:
http://.
s, http://.6k, http://._0 y http://
..g



And this is what I get in pdf:


[image: Imágenes integradas 1]



I can put "enter" to regulate in Lyx the length of the line, but I expect
it automatically done as it happens with all the other lines in the
document.



Thank you very much


Re: line out of margin

2015-03-02 Thread Liviu Andronic
On Mon, Mar 2, 2015 at 5:47 PM, Eduardo Bologna  wrote:

> Hi list, I´m using Lyx 2.1.2 in windows 7, my document is article
> (standar). I´ve adjusted margins to 2.5cm.
>
> Everything goes OK, but when it finds URLs, it does not make a separation,
> and the line continues beyond the margin, and it cuts off.
>
> For example, this is what I write in lyx:
>
>
>
> (vídeo 9, 10, 11 y 12 relaciones entre variables, disponibles en: 
> http://.
> s, http://.6k, http://._0 y http://
> ..g
>
>
>
> And this is what I get in pdf:
>
>
> [image: Imágenes integradas 1]
>
>
>
> I can put "enter" to regulate in Lyx the length of the line, but I expect
> it automatically done as it happens with all the other lines in the
> document.
>
>
>

Try Insert > Hyperlink or URL.

Liviu



> Thank you very much
>
>
>



-- 
Do you think you know what math is?
http://www.ideasroadshow.com/issues/ian-stewart-2013-08-02
Or what it means to be intelligent?
http://www.ideasroadshow.com/issues/john-duncan-2013-08-30
Think again:
http://www.ideasroadshow.com/library


Re: Question regarding the correction mode of LyX

2015-03-02 Thread Richard Heck

On 03/02/2015 10:27 AM, Harold Mouras wrote:

Dear LyX users,
I have question regarding the correction mode of Lyx. In a document, I 
used this correction mode and I would like to export my LyX document 
in a word document in which I could see my LyX corrections under word 
corrections ? Is that possible ?


Do you mean change tracking? so LyX shows what you've deleted and added? 
If so, I have no idea if this is possible. It depends entirely upon 
whether whatever LaTeX --> Word program you are using to do the export. 
But I'd suspect that oolatex would support this.


Richard



Change horizontal spaces in lists without extra package

2015-03-02 Thread Csikos Bela
Hello:

I would like to change the spaces between text and beginning/ending of lists, 
as well as between list items.

Based on http://en.wikibooks.org/wiki/LaTeX/List_Structures I modified list 
spacing values, but it has only partial effect. The space betweens items has 
changed, but the space between text and list hasn't disappeared. I would like 
to decrease the space between text and list beginning/ending to exactly one 
linespace. 

I don't want to use enumitem or any other extra package to approach this.

How can I?
Why doesn't the setting in my example's preamble have effect?

I attach an example lyx file and a pdf output.

Thanks,

bcsikos

list-example.lyx
Description: Binary data


list-example.pdf
Description: Adobe PDF document


KOMA Skript

2015-03-02 Thread Aline Gautrein
Hallo liebe Lyx-User,

ich schreibe gerade eine Abschlussarbeit mit Lyx.
Ich schreibe mit KOMA Skript.
Ich habe an den Anfang des Dokumentes Listen für Abbildungen, Tabellen usw.
gesetzt.
Im Ausgabedokument steht im Seitenkopf, wo man sich gerade befindet, also
zB.: "List of Figures" oder "List of Tables".


Jetzt mein Problem:
Nach der "List of Tables" folgt noch "List of Abbrevations".
Das Problem: Alle Seiten der "List of Abbrevations" sind mit "List of
Tables" überschriftet.
Weiß jemand, welchen Trenner ich einfügen kann, dass dies nicht mehr
auftritt?
Sowas wie

\endcommand

oder so?

Danke und Grüße
NewUSER


Re: Beamer: adding a frame before another frame (but not after another frame)

2015-03-02 Thread Scott Kostyshak
On Mon, Mar 2, 2015 at 6:16 AM, Jürgen Spitzmüller  wrote:
> 2015-03-01 22:07 GMT+01:00 Scott Kostyshak:
>>
>> Sometimes I find it difficult to add a frame in beamer. The following
>> is an example. Open examples/beamer.lyx. What is the easiest way to
>> add a frame before the frame "Purpose of the Beamer class" ?
>>
>> I've found two ways:
>>
>> 1. Place the cursor to the left of "Default Overlay Specifications",
>> press return, enter the title of the new frame, then press alt + p,
>> return, then press the delete key, then put my cursor back up to the
>> new frame.
>>
>> 2. Place the cursor to the right of the Section title ("Purposes"),
>> then press return, then run "separator-insert", then press left, then
>> press return, then insert a frame.
>>
>> Does anyone know an easier way?
>
>
> Not by default. FWIW, I find this cumbersome myself.
>
> You could extend environment-split accordingly (environment-split above and
> environment-split outer-above), which should not be too hard. I also think
> this would deserve a menu entry.
>
> Jürgen
>
>>
>>
>> I think the reason this is difficult is that LyX cannot know whether I
>> want a new frame, or I want to continue the frame above/below.

OK. Do you have any thoughts (don't worry if not) on the idea of
"start a new frame regardless of the context"? Currently I do the
following:

command-alternatives environment-split outer; environment-split; layout Frame

Scott


Re: line out of margin

2015-03-02 Thread William Seager
On Monday, March 02, 2015 16:47:26 Eduardo Bologna wrote:
> 
> Everything goes OK, but when it finds URLs, it does not make a separation,
> and the line continues beyond the margin, and it cuts off.

you could try in the preamble 

\usepackage[hyphens]{url}

-- 
William Seager
University of Toronto Scarborough
www.utsc.utoronto.ca/~seager

"Nature is nowhere inaccessible and 
everywhere unfathomable" T. Huxley


List of Figures to Toc

2015-03-02 Thread Aline Gautrein
Hey guys,

I am stil trying to resolve my contents problem:

I now try to use

\addcontentsline{toc}{chapter}{\listoftables}\markboth{}{}
\addcontentsline{toc}{chapter}{\listoffigures}\markboth{}{}

etc...

Now I get the error message:

TeX capacity exceeded, sorry [input stack size=5000].
\addcontentsline{toc}{chapter}{\listoftables}

\markboth{}{}

If you really absolutely need more capacity,

you can ask a wizard to enlarge me.


What can I do?


Greetings!

NewUser


Re: KOMA Skript

2015-03-02 Thread Johannes Böttcher

Hi Aline,

the following example patches package `nomencl` to use the commands 
available with KOMA-script. Please test the example in it presented way, 
then implement it in LyX.


You can find more information about KOMA-script in the manual.

Please keep the list in cc.


Johannes


% >8 %%
\documentclass[listof=totoc]{scrbook}
\usepackage{etoolbox}
\usepackage{nomencl}
\makenomenclature
%\tracingpatches%for debugging
%\patchcmd{\thenomenclature}{\chapter*}{\addchap*}{}{}
%removes any preset header, no toc-entry
\patchcmd{\thenomenclature}{\chapter*}{\addchap}{}{}
%sets headers and toc entry
\usepackage{scrlayer-scrpage}
\ihead*{\leftmark}%for debugging visualization
\usepackage{blindtext}
\begin{document}
\tableofcontents
\listoftables
\listoffigures
\printnomenclature

\chapter{Aline}
\nomenclature{h}{Ein Buchstabe}
\captionof{figure}{Beschriftung}
\captionof{table}{andere Beschriftung}
\blindtext[2]
\end{document}
% >8 %%

On 02.03.2015 21:05, Aline Gautrein wrote:

Hi Johannes,

thanks for the quick answer.
I have already generated bot: the List of Tables, as well as the List of
Abbrevations. They are both in the table of contents. I used :

\renewcommand{\nomname}{}
\addcontentsline{toc}{chapter}{}

If I use this command, the header of the List of Abbrevations is "List of
Tables"

If I use

\addchap{}

I will get an empty page just with the chapter title and then a new page
with the chapter title and the corresponding list.

Do you have any idea?

Thanks a lot!
Aline

Am 2. März 2015 um 20:41 schrieb Johannes Böttcher <
johannesbottc...@gmail.com>:


Hi,

How can you clear the header when issuing an unnumbered chapter/section?

The generic way would be to use `\markboth{}{}`. Depending on how you are
generating the List of Abbreviations, you could use `\addchap*` (or
`\addsec*` for scrartcl) which is the correct way with KOMA script. If you,
by any chance, want to have a numbered list, use `\addchap` (`\addsec`).


Best regards
Johannes

PS: Please note, this is an english speaking list.


On 02.03.2015 19:52, Aline Gautrein wrote:


Hallo liebe Lyx-User,

ich schreibe gerade eine Abschlussarbeit mit Lyx.
Ich schreibe mit KOMA Skript.
Ich habe an den Anfang des Dokumentes Listen für Abbildungen, Tabellen
usw.
gesetzt.
Im Ausgabedokument steht im Seitenkopf, wo man sich gerade befindet, also
zB.: "List of Figures" oder "List of Tables".


Jetzt mein Problem:
Nach der "List of Tables" folgt noch "List of Abbrevations".
Das Problem: Alle Seiten der "List of Abbrevations" sind mit "List of
Tables" überschriftet.
Weiß jemand, welchen Trenner ich einfügen kann, dass dies nicht mehr
auftritt?
Sowas wie

\endcommand

oder so?

Danke und Grüße
NewUSER






Re: List of Figures to Toc

2015-03-02 Thread Johannes Böttcher

Hi,

add to your preamble, from a previous mail i know that you are using a 
KOMA class.


KOMAoption{listof}{totoc}

best regards

On 02.03.2015 21:47, Aline Gautrein wrote:

Hey guys,

I am stil trying to resolve my contents problem:

I now try to use

\addcontentsline{toc}{chapter}{\listoftables}\markboth{}{}
\addcontentsline{toc}{chapter}{\listoffigures}\markboth{}{}

etc...

Now I get the error message:

TeX capacity exceeded, sorry [input stack size=5000].
\addcontentsline{toc}{chapter}{\listoftables}

\markboth{}{}

If you really absolutely need more capacity,

you can ask a wizard to enlarge me.


What can I do?


Greetings!

NewUser



Re: line out of margin

2015-03-02 Thread Gordon Cooper
Hi Eduardo.

  In,  Document>Settings>PDF Properties, on the Hyperlinks Tab,
you could check 'Break Links over Lines' box. 

Gordon
Tauranga N.Z.




Reference Problem Redux

2015-03-02 Thread William Hanson
Dear All,
Last summer Stefano Franchi did something for me that I was unable do.  He
created a tex file out of a lyx file and a bib file.  I'm in the same bind
again.  The problem, then and now, is that when I try to create a tex file
of my LyX document, the resulting tex file does not contain the References
that are in the original LyX document.  (All the references are from
BiBtex.  Following Stefano's instructions, I have the document itself (a
lyx file) and my Bibtex database (a bib file) in the same folder--under My
Documents in Windows 7).

When I use LyX to create a tex file (by selecting  File -> Export -> LaTeX
(plain)),  I get an error message saying that the filename "... can cause
troubles when running the exported file through LaTeX and opening the
resulting DVI".  If I ignore this warning and press on, I get another error
message that says, "There are spaces in the paths to your BibTeX database.
BibTeX will be unable to find them".  (The only space in the path in
question is between "My" and "Documents" in "My Documents".  I've tried
closing this space by renaming "My Documents" in Windows 7 as
"MyDocuments", but it doesn't help.  I still get the same two error
messages.)  If I ignore this second warning and continue I get a tex file
of the document itself but without any of the references.

What should I do?

Bill


Re: Beamer: adding a frame before another frame (but not after another frame)

2015-03-02 Thread Paul A . Rubin
Scott Kostyshak  lyx.org> writes:

> OK. Do you have any thoughts (don't worry if not) on the idea of
> "start a new frame regardless of the context"? Currently I do the
> following:
> 
> command-alternatives environment-split outer; environment-split; layout Frame
> 

FWIW, I did the following (which I think I found somewhere either on the
wiki or on this list, but I no longer recall).

1. In ~/.lyx/commands/default.def, I added the command

\define "newframe" "command-sequence paragraph-break inverse ;
depth-decrement ; depth-decrement ; depth-decrement ; depth-decrement ;
layout Frame ; inset-dissolve ; environment-split"

I don't recall whether I had to create default.def or not. That's the entire
contents of the file.

2. In Tools > Preferences... > Editing > Shortcuts, for my default bind file
(cua), I bound Ctrl+Alt+Return to "call newframe" (and unbound it from
whatever it was previously bound to). It ended up under "System and
Miscellaneous"; not sure why, don't care.

In the macro, I did four depth decrements on the assumption that I would
never be any deeper than four levels in. Extra decrements don't hurt; LyX
just ignores them. That's my clumsy workaround to make it work from any depth.

Paul




Re: List of Figures to Toc

2015-03-02 Thread Michael Berger

On 03/02/2015 09:47 PM, Aline Gautrein wrote:

Hey guys,

I am stil trying to resolve my contents problem:

I now try to use

\addcontentsline{toc}{chapter}{\listoftables}\markboth{}{}
\addcontentsline{toc}{chapter}{\listoffigures}\markboth{}{}

etc...

Now I get the error message:

TeX capacity exceeded, sorry [input stack size=5000].
\addcontentsline{toc}{chapter}{\listoftables}

\markboth{}{}

If you really absolutely need more capacity,

you can ask a wizard to enlarge me.


What can I do?


Greetings!

NewUser



Hi Aline,
Try \addcontentsline{toc}{chapter}{listoftables}\markboth{}{}
i.e. remove the backslash preceding "listoftables".
It works here.
Michael


Re: List of Figures to Toc

2015-03-02 Thread Michael Berger

On 03/02/2015 09:47 PM, Aline Gautrein wrote:

Hey guys,

I am stil trying to resolve my contents problem:

I now try to use

\addcontentsline{toc}{chapter}{\listoftables}\markboth{}{}
\addcontentsline{toc}{chapter}{\listoffigures}\markboth{}{}

etc...

Now I get the error message:

TeX capacity exceeded, sorry [input stack size=5000].
\addcontentsline{toc}{chapter}{\listoftables}

\markboth{}{}

If you really absolutely need more capacity,

you can ask a wizard to enlarge me.


What can I do?


Greetings!

NewUser



Hi Aline,
Try \addcontentsline{toc}{chapter}{listoftables}\markboth{}{}
i.e. remove the backslash preceding "listoftables".
It works here.
Michael

PS:
Perhaps the screenshot is more explanatory,
Michael



Re: Change horizontal spaces in lists without extra package

2015-03-02 Thread Guenter Milde
On 2015-03-02, Csikos Bela wrote:

> [-- Type: text/plain, Encoding:  --]

> Hello:

> I would like to change the spaces between text and beginning/ending of
> lists, as well as between list items.

> Based on http://en.wikibooks.org/wiki/LaTeX/List_Structures I modified
> list spacing values, but it has only partial effect. The space betweens
> items has changed, but the space between text and list hasn't
> disappeared. I would like to decrease the space between text and list
> beginning/ending to exactly one linespace. 

> I don't want to use enumitem or any other extra package to approach
> this.

> How can I?

You have to read a book about TeX/LaTeX and how lists are structured and
which parameters you can change and how.

Then, try with a "test.tex" example document.

Then, transfer the knowledge to LyX: you will need to insert preamble
code in Document>Settings>user-preamble and code in the document in ERT (raw
LaTeX inserts).


All this is done for you by the LaTeX package authors and LyX module authors.
So it is easier to use a package.

Günter