Line spacing in List of Figures

2023-10-10 Thread Les Denham
All,

I have a rather abstruse problem which may not have a solution, but I
would appreciate any suggestions.

I am typesetting a novel with LyX, using the Memoir Class (I am very
familiar with it), but I have come across an unusual problem. Most
novels do not have figures, but this one does. I do want a List of
Figures, but I don't want the figures numbered.

I can achieve this by removing the caption from each float and replacing
it with: 
\legend{picture name} 
\addcontentsline{lof}{figure}{picture name}

This gives the "picture name" as the caption, and in the List of
Figures at the left end of the line, with a dotted leader to the
correct page number.

The remaining problem is that the line spacing in the List of Figures
is smaller if there is more than one figure in a chapter. I would like
to have uniform line spacing in the List of Figures, regardless of
chapter breaks.

Does anyone know how to do this?

Les

-- 
Les Denham
Blizzards and Broken Grousers [typeset using LyX]
https://seg.org/shop/products/detail/237626086
-- 
lyx-users mailing list
lyx-users@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-users


xhtml export from Lyx: List of figures

2019-11-28 Thread Wolfgang Engelmann
the xhtml export from Lyx leads to a list of figures which shows the 
whole content of the legends. I would like to have here only the short 
title, but the long title in the legends. What would be the best way to 
achieve this (98 figures!).


Wolfgang

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


Re: List of Figures

2017-03-15 Thread CarLaTeX
2017-03-15 4:42 GMT+01:00 Steve Burnham :

>
>
> On Mon, Mar 13, 2017 at 4:10 AM CarLaTeX  wrote:
>
>
> 2017-03-13 8:27 GMT+01:00 Guenter Milde :
>
> On 2017-03-12, Steve Burnham wrote:
> > On Sat, Mar 11, 2017 at 10:35 PM CarLaTeX  wrote:
> >> Il 12 Mar 2017 4:05 AM, "Steve Burnham"  ha scritto:
>
> >> I'm having a hard time figuring an error out LyX gives on compilation.
> I'm
> >> trying to include a list of figures in my document. One document based
> on
> >> the same template (custom university thesis template) but this document
> >> throws the following error:
>
> >> Contents.
>
> >> ! Undefined control sequence.
>
> >> l.117 \listoffigures
>
> ...
>
> > I was trying to avoid the minimal example since I have to use a
> > dropbox link because of all of the custom class and layout files.
>
> We still ask to provide a minimal example. It is far more easy for you
> than for anyone else (downloading and experimenting with uncommon stuff)
> and has to be done anyway to get to the core of the problem.
>
> Günter
>
>
> Sorry, I did "reply" instead of "reply to all":
>
> --
> The culprits are these commented lines in your uuthesis.cls:
>
> %\newif\iflistoffigures
> ...
> %\listoffigurestrue
> ...
> %
> %\def\listoffigures{
> %  \iflistoffigures
> %\newpage
> %\thispagestyle{empty}
> %\addcontentsline{toc}{chapter}{LIST OF FIGURES}
> %\mainheading{LIST OF FIGURES}\vskip 3pt
> %\ifnoisy \typeout{List of Figures.} \fi
> %\@starttoc{lof}
> %  \else
> %\ifnoisy \typeout{No list of figures.} \fi
> %  \fi
> %}
>
> If you leave out all the "%", you'll get your LoF.
>
> However, I think you have to ask who provided you the uuthesis.cls, maybe
> they have commented those lines because they don't want LoFs in that kind
> of thesis.
>
> Good luck for your graduation!
>
> Carla
> -
>
> P.S. = However, Günter is right, I you had done a MWE, you would probably
> have found the problem by yourself!
>
>
> Thank you all that did it.
>
> Funny thing is once I started uncommenting things I realized that I was
> the one who commented it out several years ago when I was doing my master's
> thesis. The rule is if you have more than 25 figures then there is no list
> of figures which I find silly. I have more than 25 for my dissertation but
> for my own personal copy I want the list. I swore I had removed the
> functionality but thought I made changes in the preamble. After being
> unable to fix it I figured it must be something else and emailed out. So
> thanks again, it feels great to be finished!
>
> -Steve
>

I'm happy to hear you've solved your problem.
The rule is very silly, indeed!
The LoF is useful when you have a lot of figures, not on the contrary!
Have a good day!

Carla


Re: List of Figures

2017-03-14 Thread Steve Burnham
On Mon, Mar 13, 2017 at 4:10 AM CarLaTeX  wrote:


2017-03-13 8:27 GMT+01:00 Guenter Milde :

On 2017-03-12, Steve Burnham wrote:
> On Sat, Mar 11, 2017 at 10:35 PM CarLaTeX  wrote:
>> Il 12 Mar 2017 4:05 AM, "Steve Burnham"  ha scritto:

>> I'm having a hard time figuring an error out LyX gives on compilation.
I'm
>> trying to include a list of figures in my document. One document based on
>> the same template (custom university thesis template) but this document
>> throws the following error:

>> Contents.

>> ! Undefined control sequence.

>> l.117 \listoffigures

...

> I was trying to avoid the minimal example since I have to use a
> dropbox link because of all of the custom class and layout files.

We still ask to provide a minimal example. It is far more easy for you
than for anyone else (downloading and experimenting with uncommon stuff)
and has to be done anyway to get to the core of the problem.

Günter


Sorry, I did "reply" instead of "reply to all":

--
The culprits are these commented lines in your uuthesis.cls:

%\newif\iflistoffigures
...
%\listoffigurestrue
...
%
%\def\listoffigures{
%  \iflistoffigures
%\newpage
%\thispagestyle{empty}
%\addcontentsline{toc}{chapter}{LIST OF FIGURES}
%\mainheading{LIST OF FIGURES}\vskip 3pt
%    \ifnoisy \typeout{List of Figures.} \fi
%\@starttoc{lof}
%  \else
%\ifnoisy \typeout{No list of figures.} \fi
%  \fi
%}

If you leave out all the "%", you'll get your LoF.

However, I think you have to ask who provided you the uuthesis.cls, maybe
they have commented those lines because they don't want LoFs in that kind
of thesis.

Good luck for your graduation!

Carla
-

P.S. = However, Günter is right, I you had done a MWE, you would probably
have found the problem by yourself!


Thank you all that did it.

Funny thing is once I started uncommenting things I realized that I was the
one who commented it out several years ago when I was doing my master's
thesis. The rule is if you have more than 25 figures then there is no list
of figures which I find silly. I have more than 25 for my dissertation but
for my own personal copy I want the list. I swore I had removed the
functionality but thought I made changes in the preamble. After being
unable to fix it I figured it must be something else and emailed out. So
thanks again, it feels great to be finished!

-Steve


Re: List of Figures

2017-03-13 Thread CarLaTeX
2017-03-13 8:27 GMT+01:00 Guenter Milde :

> On 2017-03-12, Steve Burnham wrote:
> > On Sat, Mar 11, 2017 at 10:35 PM CarLaTeX  wrote:
> >> Il 12 Mar 2017 4:05 AM, "Steve Burnham"  ha scritto:
>
> >> I'm having a hard time figuring an error out LyX gives on compilation.
> I'm
> >> trying to include a list of figures in my document. One document based
> on
> >> the same template (custom university thesis template) but this document
> >> throws the following error:
>
> >> Contents.
>
> >> ! Undefined control sequence.
>
> >> l.117 \listoffigures
>
> ...
>
> > I was trying to avoid the minimal example since I have to use a
> > dropbox link because of all of the custom class and layout files.
>
> We still ask to provide a minimal example. It is far more easy for you
> than for anyone else (downloading and experimenting with uncommon stuff)
> and has to be done anyway to get to the core of the problem.
>
> Günter
>
>
Sorry, I did "reply" instead of "reply to all":

--
The culprits are these commented lines in your uuthesis.cls:

%\newif\iflistoffigures
...
%\listoffigurestrue
...
%
%\def\listoffigures{
%  \iflistoffigures
%\newpage
%\thispagestyle{empty}
%\addcontentsline{toc}{chapter}{LIST OF FIGURES}
%\mainheading{LIST OF FIGURES}\vskip 3pt
%\ifnoisy \typeout{List of Figures.} \fi
%\@starttoc{lof}
%  \else
%\ifnoisy \typeout{No list of figures.} \fi
%  \fi
%}

If you leave out all the "%", you'll get your LoF.

However, I think you have to ask who provided you the uuthesis.cls, maybe
they have commented those lines because they don't want LoFs in that kind
of thesis.

Good luck for your graduation!

Carla
-

P.S. = However, Günter is right, I you had done a MWE, you would probably
have found the problem by yourself!


Re: List of Figures

2017-03-13 Thread Guenter Milde
On 2017-03-12, Steve Burnham wrote:
> On Sat, Mar 11, 2017 at 10:35 PM CarLaTeX  wrote:
>> Il 12 Mar 2017 4:05 AM, "Steve Burnham"  ha scritto:

>> I'm having a hard time figuring an error out LyX gives on compilation. I'm
>> trying to include a list of figures in my document. One document based on
>> the same template (custom university thesis template) but this document
>> throws the following error:

>> Contents.

>> ! Undefined control sequence.

>> l.117 \listoffigures

...

> I was trying to avoid the minimal example since I have to use a
> dropbox link because of all of the custom class and layout files.

We still ask to provide a minimal example. It is far more easy for you
than for anyone else (downloading and experimenting with uncommon stuff)
and has to be done anyway to get to the core of the problem.

Günter



Re: List of Figures

2017-03-12 Thread Steve Burnham
On Sat, Mar 11, 2017 at 10:35 PM CarLaTeX  wrote:

> Il 12 Mar 2017 4:05 AM, "Steve Burnham"  ha scritto:
>
> I'm having a hard time figuring an error out LyX gives on compilation. I'm
> trying to include a list of figures in my document. One document based on
> the same template (custom university thesis template) but this document
> throws the following error:
>
> Contents.
>
> ! Undefined control sequence.
>
> l.117 \listoffigures
>
> The control sequence at the end of the top line
>
> of your error message was never \def'ed. If you have
>
> misspelled it (e.g., `\hobx'), type `I' and the correct
>
> spelling (e.g., `I\hbox'). Otherwise just continue,
>
> and I'll forget about whatever was undefined.
>
>
> The \tableofcontents and \listoftables works just fine but \listoffigures
> won't cooperate. Thanks for any insight,
>
>
> -Steve
>
>
> Look at this answer on TeX.SE:
> http://tex.stackexchange.com/a/201505/101651.
>
> If it doesn't solve your problem, I think we need more info (that is,
> could you try to create a minimal example that reproduce the error and
> attach the file to your post?).
>
> Bye!
> Carla
>

I wish it had been that simple. I thought I had seen that package so was
excited. I was trying to avoid the minimal example since I have to use a
dropbox link because of all of the custom class and layout files. Here is a
dropbox link though with a zip file containing all the necessary stuff. You
can comment out "\listoffigures" in the ERT at the beginning of the
document and it compiles just fine but when uncommented it breaks.

https://www.dropbox.com/s/1njle770rqlexmm/table_of_figures.zip?dl=0

-Steve


Re: List of Figures

2017-03-11 Thread CarLaTeX
Il 12 Mar 2017 4:05 AM, "Steve Burnham"  ha scritto:

I'm having a hard time figuring an error out LyX gives on compilation. I'm
trying to include a list of figures in my document. One document based on
the same template (custom university thesis template) but this document
throws the following error:

Contents.

! Undefined control sequence.

l.117 \listoffigures

The control sequence at the end of the top line

of your error message was never \def'ed. If you have

misspelled it (e.g., `\hobx'), type `I' and the correct

spelling (e.g., `I\hbox'). Otherwise just continue,

and I'll forget about whatever was undefined.


The \tableofcontents and \listoftables works just fine but \listoffigures
won't cooperate. Thanks for any insight,


-Steve


Look at this answer on TeX.SE: http://tex.stackexchange.com/a/201505/101651.

If it doesn't solve your problem, I think we need more info (that is, could
you try to create a minimal example that reproduce the error and attach the
file to your post?).

Bye!
Carla


List of Figures

2017-03-11 Thread Steve Burnham
I'm having a hard time figuring an error out LyX gives on compilation. I'm
trying to include a list of figures in my document. One document based on
the same template (custom university thesis template) but this document
throws the following error:

Contents.

! Undefined control sequence.

l.117 \listoffigures

The control sequence at the end of the top line

of your error message was never \def'ed. If you have

misspelled it (e.g., `\hobx'), type `I' and the correct

spelling (e.g., `I\hbox'). Otherwise just continue,

and I'll forget about whatever was undefined.


The \tableofcontents and \listoftables works just fine but \listoffigures
won't cooperate. Thanks for any insight,


-Steve


Re: how to show 'list of Figures' in toc

2015-07-17 Thread Michael Berger

On 07/17/2015 08:09 PM, William Seager wrote:

On Friday, July 17, 2015 19:56 Michael Berger wrote:

my document is of the Class KOMA-script article.
I want the 'List of Figures' appear in the TOC.
How can that be accomplished?

add "list of figures" from insert menu and then
ERT "\addcontentsline{toc}{chapter}{List of Figures}"

all the best,

Thanks William and Jürgen!
Michael


Re: how to show 'list of Figures' in toc

2015-07-17 Thread Jürgen Spitzmüller
Am Freitag 17 Juli 2015, 19:56:04 schrieb Michael Berger:
> Dear friends of LyX,
> my document is of the Class KOMA-script article.
> I want the 'List of Figures' appear in the TOC.
> How can that be accomplished?

With KOMA, just add listof=totoc to Document > Settings > Class Options.

Jürgen


Re: how to show 'list of Figures' in toc

2015-07-17 Thread William Seager
On Friday, July 17, 2015 19:56 Michael Berger wrote:
> my document is of the Class KOMA-script article.
> I want the 'List of Figures' appear in the TOC.
> How can that be accomplished?

add "list of figures" from insert menu and then
ERT "\addcontentsline{toc}{chapter}{List of Figures}"

all the best,
-- 
William Seager
University of Toronto Scarborough
http://www.utsc.utoronto.ca/~seager


how to show 'list of Figures' in toc

2015-07-17 Thread Michael Berger

Dear friends of LyX,
my document is of the Class KOMA-script article.
I want the 'List of Figures' appear in the TOC.
How can that be accomplished?


Michael Berger, Dipl. Ing.
Im Borngrund 7a
D-35606 Solms
id...@online.de
Fon: +49 6442 706509
Fax: 032121247536
Linux member


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: 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



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: list of figures and table overlapping with title

2013-08-26 Thread Wolfgang Engelmann
Am Saturday, 24. August 2013, 21:39:40 schrieb luke jones:
> Hi guys
> 
> I'm using Lyx for my PhD thesis. Unfortunately I do not know how to use
> Latex, but I have been very happy with Lyx.
> 
> When I generate the PDF output, in the list of figures and tables when I
> get to
> 
> 5.5.10
> 5.5.11
> 
> then the 0 overlaps with the first letter of the title of the table or
> figure.
had the same problem once. See

http://comments.gmane.org/gmane.editors.lyx.general/78633
for the solution, which says

add in the preamble some of this:


%more space between figurenumber and text in toc
\usepackage{tocloft}
%\addtolength{\cftlotnumwidth}{1em}
%%\addtolength{\cftlotnumwidth}{2em}
%\addtolength{\cftlofnumwidth}{1em}
%%\addtolength{\cftlofnumwidth}{2em}
%\addtolength{\cftsubsecnumwidth}{0.3em}
\addtolength{\cftsubsecnumwidth}{0.5em}
%\addtolength{\cftsecnumwidth}{0.3em}
\addtolength{\cftsecnumwidth}{0.5em}
%\addtolength{\cftchapnumwidth}{1em}
\addtolength{\cftchapnumwidth}{2em}
\addtolength{\cftfignumwidth}{1em}


you might need to increase the numbers

> 
> I have been reading online about changing Latex codes but I don't know
> how to do this.
> 
> Is there an easy way to get round this problem?
> 
> If not, could you advise me how to change the code "for dummys"!
> 
> Thanks in advance
> 
> LJ


-- 
-
Wolfgang Engelmann
Schlossgartenstrasse 22
D-72070 Tübingen
Tel 07071 68325


list of figures and table overlapping with title

2013-08-24 Thread luke jones
Hi guys

I'm using Lyx for my PhD thesis. Unfortunately I do not know how to use Latex, 
but I have been very happy with Lyx.

When I generate the PDF output, in the list of figures and tables when I get 
to 

5.5.10
5.5.11

then the 0 overlaps with the first letter of the title of the table or figure.

I have been reading online about changing Latex codes but I don't know how to 
do this.

Is there an easy way to get round this problem?

If not, could you advise me how to change the code "for dummys"!

Thanks in advance

LJ





Re: changing fixed names 'Contents', 'List of Figures', etc.

2012-05-29 Thread Guenter Milde
On 2012-05-29, Steve Litt wrote:
> On Tue, 29 May 2012 00:03:08 + (UTC), ddiedrichs said:

>> I cannot change the default strings 'Contents', 'List of Figures',
>> etc. that are generated as titles of these sections.  I have tried
>> putting in the preamble commands of the type:

>> \renewcommand{\contentsname}{Table of Contents}

>> But nothing works.  I am typing in English without the babel package.

Are you sure you do not use the babel packge? LyX uses it by default. 
What does the View>Source window show when you tick the "show complete
source" box? (You can also export your example to LaTeX and play with
it.)

I am asking, because the minimal LaTeX example

  \documentclass[english]{article}
  % \usepackage{babel}
  
  \renewcommand{\contentsname}{Table of Contents} 
  
  \begin{document}
  
  \tableofcontents
  \section{test the best}
  
  \end{document}

works as you expect (showing "Table of Contents" as contents heading in
the output).

> I reproduced your symptom in an article based document, putting
> \renewcommand{\contentsname}{Table of Contents} in the document
> preamble, as you would expect it should be. Like you, my document
> continued to print the table of contents title as "Contents". So then I
> exported to LaTeX, fooled around with it, and discovered it works only
> if \renewcommand{\contentsname}{Table of Contents} is in the document
> itself, not the document header.

The usual trick in these cases is \AtBeginDocument. Indeed, replacing
renaming \renewcommand{\contentsname}{Table of Contents} with:

 \AtBeginDocument{\renewcommand{\contentsname}{Table of Contents}}

works also with babel as expected.

> So I went back into LyX, removed \renewcommand{\contentsname}{Table of
> Contents} from the document preamble, and put it in an ERT before the
> Table of Contents, and it did the right thing.

No need for ERT with \AtBeginDocument.

Günter



Re: changing fixed names 'Contents', 'List of Figures', etc.

2012-05-28 Thread Richard Heck

On 05/28/2012 08:03 PM, ddiedrichs wrote:

Steve Litt  troubleshooters.com>  writes:


On Mon, 28 May 2012 23:11:41 + (UTC), ddiedrichs said:

it's an article

Context???



I cannot change the default strings 'Contents', 'List of Figures', etc. that
are generated as titles of these sections.  I have tried putting in the preamble
commands of the type:

\renewcommand{\contentsname}{Table of Contents}

But nothing works.  I am typing in English without the babel package.

The problem is likely that babel IS being loaded by LyX. I see the same 
problem, unless I disable the language package under Document> Settings> 
Language.


I'm not sure why we load babel after the user preamble. This seems 
wrong, for this reason.


Richard



Re: changing fixed names 'Contents', 'List of Figures', etc.

2012-05-28 Thread Steve Litt
On Tue, 29 May 2012 00:03:08 + (UTC), ddiedrichs said:
> Steve Litt  troubleshooters.com> writes:
> 
> > 
> > On Mon, 28 May 2012 23:11:41 + (UTC), ddiedrichs said:
> > > it's an article
> > 
> > Context???
> > 
> > 
> I cannot change the default strings 'Contents', 'List of Figures',
> etc. that are generated as titles of these sections.  I have tried
> putting in the preamble commands of the type:
> 
> \renewcommand{\contentsname}{Table of Contents}
> 
> But nothing works.  I am typing in English without the babel package.


Hi ddiedrichs,

I reproduced your symptom in an article based document, putting
\renewcommand{\contentsname}{Table of Contents} in the document
preamble, as you would expect it should be. Like you, my document
continued to print the table of contents title as "Contents". So then I
exported to LaTeX, fooled around with it, and discovered it works only
if \renewcommand{\contentsname}{Table of Contents} is in the document
itself, not the document header.

So I went back into LyX, removed \renewcommand{\contentsname}{Table of
Contents} from the document preamble, and put it in an ERT before the
Table of Contents, and it did the right thing.

I'm attaching a 1.8K example LyX file that properly changes the
contents name.

If this solves your problem, please reply and mark the subject as
 so others who follow you know what to do. I found this to be
very surprising behavior.

Thanks

SteveT

Steve Litt*  http://www.troubleshooters.com/
  *  http://twitter.com/stevelitt
Troubleshooting Training  *  Human Performance



test.lyx
Description: application/lyx


Re: changing fixed names 'Contents', 'List of Figures', etc.

2012-05-28 Thread ddiedrichs
Steve Litt  troubleshooters.com> writes:

> 
> On Mon, 28 May 2012 23:11:41 + (UTC), ddiedrichs said:
> > it's an article
> 
> Context???
> 
> 
I cannot change the default strings 'Contents', 'List of Figures', etc. that 
are generated as titles of these sections.  I have tried putting in the preamble
commands of the type:

\renewcommand{\contentsname}{Table of Contents}

But nothing works.  I am typing in English without the babel package.






Re: changing fixed names 'Contents', 'List of Figures', etc.

2012-05-28 Thread Steve Litt
On Mon, 28 May 2012 23:11:41 + (UTC), ddiedrichs said:
> it's an article

Context???


Re: changing fixed names 'Contents', 'List of Figures', etc.

2012-05-28 Thread ddiedrichs
it's an article






Re: changing fixed names 'Contents', 'List of Figures', etc.

2012-05-28 Thread Richard Heck

On 05/28/2012 04:35 PM, ddiedrichs wrote:

I cannot change the default strings 'Contents', 'List of Figures', etc. that are
generated as titles of these sections.  I have tried putting in the preamble
commands of the type:

\renewcommand{\contentsname}{Table of Contents}

But nothing works.  I am typing in English without the babel package.


What's the document class?

rh



changing fixed names 'Contents', 'List of Figures', etc.

2012-05-28 Thread ddiedrichs
I cannot change the default strings 'Contents', 'List of Figures', etc. that are
generated as titles of these sections.  I have tried putting in the preamble
commands of the type:

\renewcommand{\contentsname}{Table of Contents}

But nothing works.  I am typing in English without the babel package.



Re: Spacing Within List of Figures and List of Tables

2011-11-08 Thread Rich Shepard

On Tue, 8 Nov 2011, Liviu Andronic wrote:


It seems to be be part of TL.


  It's suppoed to be, but perhaps the Slackware packager didn't specify
including the entire scheme.


then try doing it manually


  I always manually installed LaTeX packages when runing tetex. I did so now
with tocloft, but reading the doc told me it would take me a while to figure
out just how to use it properly. So, in the interest of saving time I just
added two protected spaces before each table and figure caption and that did
the trick.

  Perhaps some day I'll have the time to learn tocloft.

Thanks, Liviu,

Rich


Re: Spacing Within List of Figures and List of Tables

2011-11-08 Thread Liviu Andronic
On Tue, Nov 8, 2011 at 10:25 PM, Rich Shepard  wrote:
>> - see if 'tocloft' can do anything for you
>
>  It should. However, ... I need a pointer to installing it:
>
> [root@salmo ~]# tlmgr install tocloft
> /usr/share/texmf/bin/tlmgr: open(/usr/share/tlpkg/texlive.tlpdb) failed: No
> such file or directory at /usr/share/tlpkg/TeXLive/TLPDB.pm line 327.
>
>  I have texlive-20110705 installed here.
>
It seems to be be part of TL [1]. If installing via tlmgr doesn't work
then try doing it manually as suggested in Help > Customization > 5.1

Regards
Liviu

[1] http://ctan.org/pkg/tocloft


Re: Spacing Within List of Figures and List of Tables

2011-11-08 Thread Rich Shepard

On Tue, 8 Nov 2011, Liviu Andronic wrote:


I don't know what's wrong, though I'm wondering whether it has
anything to do with their spanning over two lines.


Liviu,

  I don't know how being multilined can affect the spacing between the
numbers and the first letter of the top line for each one. Something changed
and apparently had unintended consequences with figure and table listings.


Two suggestions:
- see if 'tocloft' can do anything for you


  It should. However, ... I need a pointer to installing it:

[root@salmo ~]# tlmgr install tocloft
/usr/share/texmf/bin/tlmgr: open(/usr/share/tlpkg/texlive.tlpdb) failed: No
such file or directory at /usr/share/tlpkg/TeXLive/TLPDB.pm line 327.

  I have texlive-20110705 installed here.

Thanks,

Rich



Re: Spacing Within List of Figures and List of Tables

2011-11-08 Thread Liviu Andronic
On Tue, Nov 8, 2011 at 9:51 PM, Rich Shepard  wrote:
> On Tue, 8 Nov 2011, Rich Shepard wrote:
>
>>  The numbers and captions in the List of Figures and List of Tables have
>> no
>> spaces between them and the caption text.
>
>  See attached .pdf files.
>
I don't know what's wrong, though I'm wondering whether it has
anything to do with their spanning over two lines. Two suggestions:
- see if 'tocloft' can do anything for you
- this would be an ugly hack, but you could always add a couple of
protected spaces (ctrl+space in LyX or ~ in LaTeX) in front of your
captions.

Regards
Liviu


Re: Spacing Within List of Figures and List of Tables

2011-11-08 Thread Rich Shepard

On Tue, 8 Nov 2011, Rich Shepard wrote:


 The numbers and captions in the List of Figures and List of Tables have no
spaces between them and the caption text.


  See attached .pdf files.

Rich

figure-list.pdf
Description: Adobe PDF document


table-list.pdf
Description: Adobe PDF document


Spacing Within List of Figures and List of Tables

2011-11-08 Thread Rich Shepard

  I don't see an entry in TLC2 for this, but think that I faced this problem
in the past and solved it somehow. But, I can't find a document with the
solution so I ask you folks for a clue stick.

  The numbers and captions in the List of Figures and List of Tables have no
spaces between them and the caption text. I have a space between the label
and text in each caption but that does not seem to be sufficient. It must be
something simple that I'm missing but I am not seeing it.

Rich


Re: classicthesis spacing in list of figures

2011-10-13 Thread PhilipPirrip

On 10/11/2011 06:08 AM, PhilipPirrip wrote:

"Abbildung 1.10text" ->  is the second number two-digit, no space
between number and text
how can i change this?


You might be interested:
http://code.google.com/p/classicthesis/issues/detail?id=35



Re: classicthesis spacing in list of figures

2011-10-10 Thread PhilipPirrip

On 10/10/2011 02:08 PM, Thomas Hesse wrote:

After i change the language from englisch in german, the spacing in list of 
figure/Abbildungsverzeichnis is not enough.
example:

...

"Abbildung 1.10text"  ->  is the second number two-digit, no space between 
number and text
how can i change this?


http://www.latex-community.org/forum/viewtopic.php?f=5&t=817 and 
searching through classicthesis.sty might help, for now at least.





p.s. how can i change in classicthesis the footnote? currently there is the 
date.



It's not even a footnote, in a sense that the text points to it. If you 
want to remove it, read the manual, there's an option to classicthesis.sty.
If you want to change it to something else, you'll have to change 
classicthesis.sty, or to override (or copy) the responsible command in 
the preamble.



Btw, I think that http://code.google.com/p/classicthesis/ should be more 
appropriate place for questions of such a kind.




classicthesis spacing in list of figures

2011-10-10 Thread Thomas Hesse
Hello.

After i change the language from englisch in german, the spacing in list of 
figure/Abbildungsverzeichnis is not enough.
example:
"Figure 1.1 text"   ->ok
"Abbildung 1.1 text"->only one space, but ok
"Abbildung 1.10text"-> is the second number two-digit, no space between 
number and text

how can i change this?
p.s. how can i change in classicthesis the footnote? currently there is the 
date.

many thx!

Re: list of figures

2011-05-26 Thread Julien Rioux

On 26/05/2011 10:44 AM, Doc Doc wrote:



Hi,

I use the University of new south wales layout for my document

when I create the PDF file, I have a little problem with the list of
figures. the first letter of the caption appears above the number of the
  figure. Is thèse any way to avoid that?

I tried to use
\usepackage{tocloft}

\setlength{\cftfignumwidth}{3em}
with tocloft.sty installed but when I insert it in the preamble of the 
document, it generates many errors

is there any way to solve this problem?

thank you







This is pretty obscure black magic but it works. Put this in your preamble

\renewcommand*{\numberline}[1]{\hb@xt@2em{#1\hfil}}

and adjust the length (2em) as necessary.

See
http://tex.stackexchange.com/questions/11569/customize-spacing-between-section-number-and-its-caption

--
Julien


RE: list of figures

2011-05-26 Thread Doc Doc

Hi
Thank you for your answer
the layout and the example file are in 
http://www.thesis-template.com/archives/58

Raùf







Date: Thu, 26 May 2011 12:24:59 -0400
From: rgh...@comcast.net
To: raouf_tem...@hotmail.com
CC: lyx-users@lists.lyx.org
Subject: Re: list of figures



  



  
  
On 05/26/2011 10:44 AM, Doc Doc wrote:

  
  

  Hi,

  I use the University of new south wales layout for my document

  when I create the PDF file, I have a little problem with the list
  of figures. the first letter of the caption appears above the
  number of the figure. Is thèse any way to avoid that?

  

  I tried to use 

  \usepackage{tocloft}

  \setlength{\cftfignumwidth}{3em}

  with tocloft.sty installed but when I insert it in the preamble of
  the document, it generates many errors

  

  is there any way to solve this problem?

  


Can you please post a short example file? You may also need to
include the layout and the cls file, since most of us will not have
them.



Richard


  

Re: list of figures

2011-05-26 Thread Richard Heck
On 05/26/2011 10:44 AM, Doc Doc wrote:
>
> Hi,
> I use the University of new south wales layout for my document
> when I create the PDF file, I have a little problem with the list of
> figures. the first letter of the caption appears above the number of
> the figure. Is thèse any way to avoid that?
>
> I tried to use
> \usepackage{tocloft}
> \setlength{\cftfignumwidth}{3em}
> with tocloft.sty installed but when I insert it in the preamble of the
> document, it generates many errors
>
> is there any way to solve this problem?
>
Can you please post a short example file? You may also need to include
the layout and the cls file, since most of us will not have them.

Richard



Re: Figure numbers and the figure captions overlap in list of figures

2011-02-28 Thread Shivaramaiah, Nagaraj
Hi,

I found the solution...

tocloft doesn't work properly with some of the classes...

I used titletoc instead.. .

\usepackage{titletoc}

\dottedcontents{figure}[4.5em]{}{3em}{0.75em}

\dottedcontents{table}[4.5em]{}{3em}{0.75em}

it worked fine..

Nagaraj


Figure numbers and the figure captions overlap in list of figures

2011-02-27 Thread Shivaramaiah, Nagaraj
Dear all,

In my report, figures and tables are numbered in chapter.x format and I have
a problem with "list of figures" and "list of tables" that I include using
Insert->List/TOC->.

The problem is that for all the figures/tables that have more than one digit
after the decimal place (means from 10th figure or table), the captions and
the figure numbers overlap in "list of figures" and "list of tables". The
figures and tables that have single digit after the decimal place, are
perfectly fine. Also within the chapters at the place where figures/tables
appear, there is no problem.

Can anyone help to solve this please?

Nagaraj


Re: list of figures

2010-11-24 Thread katbeasty

I found the solution, in case anyone else needs it:

Add the following to the LaTex Preamble:

\usepackage{tocloft}

## adds the word Figure
\renewcommand{\cftfigpresnum}{Figure }

## adds white space
\renewcommand{\cftfignumwidth}{5em}


##same for tables
\renewcommand{\cfttabpresnum}{Table }
\renewcommand{\cfttabnumwidth}{5em} 
-- 
View this message in context: 
http://lyx.475766.n2.nabble.com/list-of-figures-tp475878p5770300.html
Sent from the LyX - Users mailing list archive at Nabble.com.


Re: list of figures

2010-11-24 Thread katbeasty

Hi Morgan, 

how do you add the word "Figure" before the figure number?

Thanks Katja
-- 
View this message in context: 
http://lyx.475766.n2.nabble.com/list-of-figures-tp475878p5770172.html
Sent from the LyX - Users mailing list archive at Nabble.com.


Re: Why is the heading of the Preface showing "List of figures" ?

2009-10-01 Thread Miguel Rubio-Roy
Sorry, I wrote "package" instead of "page style".

Anyway, you're right. I've tried using markboth straightaway, and it works!
I'll also take a look at chaptermark

Thanks a lot!

Miguel

2009/10/1 rgheck 

> On 10/01/2009 04:51 PM, Miguel Rubio-Roy wrote:
>
>> Hi rh,
>>   Thanks for you answer. I've read that markboth requires the use of
>> package
>> myheadings. I would rather prefer not to use any more packages. Isn't
>> there
>> any other solution?
>>
>>
>>
> It's normally used with the myheadings page style, not any special package.
> But it's a standard LaTeX command and can be used any time you like.
>
> Actually, assuming your class provides it, you should probably just use:
> \chaptermark{Your Title}. This calls \markboth or \markright, etc, as the
> case may be, and does whatever formatting is necessary.
>
> rh
>
>


Re: Why is the heading of the Preface showing "List of figures" ?

2009-10-01 Thread rgheck

On 10/01/2009 04:51 PM, Miguel Rubio-Roy wrote:

Hi rh,
   Thanks for you answer. I've read that markboth requires the use of package
myheadings. I would rather prefer not to use any more packages. Isn't there
any other solution?

   
It's normally used with the myheadings page style, not any special 
package. But it's a standard LaTeX command and can be used any time you 
like.


Actually, assuming your class provides it, you should probably just use: 
\chaptermark{Your Title}. This calls \markboth or \markright, etc, as 
the case may be, and does whatever formatting is necessary.


rh



Re: Why is the heading of the Preface showing "List of figures" ?

2009-10-01 Thread Miguel Rubio-Roy
Hi rh,
  Thanks for you answer. I've read that markboth requires the use of package
myheadings. I would rather prefer not to use any more packages. Isn't there
any other solution?

BTW, sorry by the slight off-topic of this thread (latex on a lyx list). I'm
writing my thesis with LyX, but after finding this problem I've started to
reduce code and go back to latex to try to isolate the problem.

Thanks

Miguel

2009/10/1 rgheck 

> On 10/01/2009 03:42 PM, Miguel Rubio-Roy wrote:
>
>> Hi all,
>>  I've tried to isolate this problem I've found on a large tex file,
>> but I don't manage to find where the problem is.
>>
>>  What happens is the heading of the second page of the Preface shows
>> "List of figures", when it should be showing "Preface".
>>
>> You can find the pdf file generated on
>> http://groups.google.com/group/latexusersgroup/web/Thesis2.pdf
>> and the log file on
>> http://groups.google.com/group/latexusersgroup/web/Thesis2.log
>>
>>
>>
> I think the reason is that \chapter* does not reset the headings. You'll
> need to do that manually, using something like \markboth.
>
> rh
>
>
>
>   The tex file I'm compiling is:
>>
>> \documentclass[b5paper,english]{book}
>> \usepackage[T1]{fontenc}
>> \usepackage[latin1]{inputenc}
>>
>> \begin{document}
>>
>> \title{Lorem ipsum dolor sit amet, consectetur adipiscing elit}
>> \author{Lorem ipsum}
>>
>> \maketitle
>> \frontmatter
>> \listoffigures
>>
>> \chapter*{Preface}
>>
>> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed gravida
>> odio magna. Maecenas vestibulum sodales hendrerit. Maecenas est eros,
>> porttitor sed bibendum ut, hendrerit et purus. Etiam in tellus id ante
>> faucibus malesuada vulputate ac eros. Suspendisse a adipiscing nulla.
>> Suspendisse potenti. Cras nulla lectus, accumsan placerat ultrices
>> vel, cursus non magna. Fusce id dictum diam. Donec pulvinar accumsan
>> suscipit. Nunc at tellus a neque vulputate imperdiet. In non quam
>> dolor, sed malesuada leo. Nunc vitae augue sem. Suspendisse potenti.
>> Fusce vel magna lorem. Vivamus ut orci ac nisi aliquet aliquet et ac
>> nisi. Mauris non dui turpis, ac tincidunt tellus. Nulla facilisi. Nunc
>> dapibus enim eget turpis dapibus molestie nec at dolor. Suspendisse
>> non hendrerit felis.
>>
>> In ac massa ligula, eu volutpat nisi. Donec a orci ante. Vivamus ut
>> molestie ligula. Cras a nisl elit. Sed at neque non massa congue
>> porta. Cras sed neque venenatis lorem condimentum euismod. Cum sociis
>> natoque penatibus et magnis dis parturient montes, nascetur ridiculus
>> mus. Curabitur quis turpis ac diam fringilla sagittis. Aliquam
>> volutpat luctus odio, in pellentesque orci pellentesque nec. Quisque
>> porttitor, justo eget mattis tristique, urna nibh fringilla dolor, at
>> pretium elit purus semper risus. Morbi vehicula convallis mauris vel
>> scelerisque. Morbi vitae lacus elit, hendrerit tristique dui.
>> Curabitur imperdiet interdum quam, ac laoreet libero imperdiet eget.
>> Curabitur nec magna justo.
>>
>> Sed pharetra viverra est, vitae fermentum nisl aliquam imperdiet.
>> Etiam ut mauris risus. Aliquam laoreet interdum tellus, in tempor nunc
>> viverra sit amet. Etiam semper quam sit amet justo imperdiet bibendum
>> ac a arcu. Quisque condimentum risus vel arcu hendrerit et bibendum
>> massa egestas. Sed sit amet nulla non erat viverra mattis. Nulla
>> elementum porta sodales. Nulla lobortis adipiscing tellus, vitae
>> hendrerit neque pellentesque quis. Pellentesque habitant morbi
>> tristique senectus et netus et malesuada fames ac turpis egestas.
>> Curabitur lobortis venenatis laoreet. Quisque augue ante, condimentum
>> sit amet cursus imperdiet, iaculis in mauris. In ornare lacinia
>> convallis. Nulla tempor, quam quis semper laoreet, ipsum tortor mattis
>> lacus, non convallis felis augue quis turpis.
>>
>> Aliquam ante nulla, sagittis quis porta vel, sodales ut turpis. Duis
>> id magna sit amet velit tempor adipiscing ut egestas risus. Ut semper
>> velit a quam mattis eget rhoncus arcu cursus. Ut auctor, sapien
>> fringilla consectetur aliquet, libero ipsum luctus nibh, nec euismod
>> nulla sapien eget tortor. In dignissim placerat eros et lobortis.
>> Fusce blandit rhoncus pretium. Praesent venenatis malesuada mauris,
>> non dapibus libero pharetra condimentum. Etiam quis lacus at mi
>> consectetur mattis vel id diam. Duis ut mauris sed libero condimentum
>> sagittis. Mauris blandit nibh at neque rutrum 

Re: Why is the heading of the Preface showing "List of figures" ?

2009-10-01 Thread rgheck

On 10/01/2009 03:42 PM, Miguel Rubio-Roy wrote:

Hi all,
  I've tried to isolate this problem I've found on a large tex file,
but I don't manage to find where the problem is.

  What happens is the heading of the second page of the Preface shows
"List of figures", when it should be showing "Preface".

You can find the pdf file generated on
http://groups.google.com/group/latexusersgroup/web/Thesis2.pdf
and the log file on
http://groups.google.com/group/latexusersgroup/web/Thesis2.log

   
I think the reason is that \chapter* does not reset the headings. You'll 
need to do that manually, using something like \markboth.


rh



  The tex file I'm compiling is:

\documentclass[b5paper,english]{book}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}

\begin{document}

\title{Lorem ipsum dolor sit amet, consectetur adipiscing elit}
\author{Lorem ipsum}

\maketitle
\frontmatter
\listoffigures

\chapter*{Preface}

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed gravida
odio magna. Maecenas vestibulum sodales hendrerit. Maecenas est eros,
porttitor sed bibendum ut, hendrerit et purus. Etiam in tellus id ante
faucibus malesuada vulputate ac eros. Suspendisse a adipiscing nulla.
Suspendisse potenti. Cras nulla lectus, accumsan placerat ultrices
vel, cursus non magna. Fusce id dictum diam. Donec pulvinar accumsan
suscipit. Nunc at tellus a neque vulputate imperdiet. In non quam
dolor, sed malesuada leo. Nunc vitae augue sem. Suspendisse potenti.
Fusce vel magna lorem. Vivamus ut orci ac nisi aliquet aliquet et ac
nisi. Mauris non dui turpis, ac tincidunt tellus. Nulla facilisi. Nunc
dapibus enim eget turpis dapibus molestie nec at dolor. Suspendisse
non hendrerit felis.

In ac massa ligula, eu volutpat nisi. Donec a orci ante. Vivamus ut
molestie ligula. Cras a nisl elit. Sed at neque non massa congue
porta. Cras sed neque venenatis lorem condimentum euismod. Cum sociis
natoque penatibus et magnis dis parturient montes, nascetur ridiculus
mus. Curabitur quis turpis ac diam fringilla sagittis. Aliquam
volutpat luctus odio, in pellentesque orci pellentesque nec. Quisque
porttitor, justo eget mattis tristique, urna nibh fringilla dolor, at
pretium elit purus semper risus. Morbi vehicula convallis mauris vel
scelerisque. Morbi vitae lacus elit, hendrerit tristique dui.
Curabitur imperdiet interdum quam, ac laoreet libero imperdiet eget.
Curabitur nec magna justo.

Sed pharetra viverra est, vitae fermentum nisl aliquam imperdiet.
Etiam ut mauris risus. Aliquam laoreet interdum tellus, in tempor nunc
viverra sit amet. Etiam semper quam sit amet justo imperdiet bibendum
ac a arcu. Quisque condimentum risus vel arcu hendrerit et bibendum
massa egestas. Sed sit amet nulla non erat viverra mattis. Nulla
elementum porta sodales. Nulla lobortis adipiscing tellus, vitae
hendrerit neque pellentesque quis. Pellentesque habitant morbi
tristique senectus et netus et malesuada fames ac turpis egestas.
Curabitur lobortis venenatis laoreet. Quisque augue ante, condimentum
sit amet cursus imperdiet, iaculis in mauris. In ornare lacinia
convallis. Nulla tempor, quam quis semper laoreet, ipsum tortor mattis
lacus, non convallis felis augue quis turpis.

Aliquam ante nulla, sagittis quis porta vel, sodales ut turpis. Duis
id magna sit amet velit tempor adipiscing ut egestas risus. Ut semper
velit a quam mattis eget rhoncus arcu cursus. Ut auctor, sapien
fringilla consectetur aliquet, libero ipsum luctus nibh, nec euismod
nulla sapien eget tortor. In dignissim placerat eros et lobortis.
Fusce blandit rhoncus pretium. Praesent venenatis malesuada mauris,
non dapibus libero pharetra condimentum. Etiam quis lacus at mi
consectetur mattis vel id diam. Duis ut mauris sed libero condimentum
sagittis. Mauris blandit nibh at neque rutrum varius. Fusce sed leo
quis enim convallis iaculis vel ut lacus. Nulla porta interdum
euismod. Vivamus elementum, metus ac eleifend luctus, velit orci
commodo ipsum, eget faucibus arcu velit sed augue. Cras diam neque,
interdum porta eleifend at, dignissim eget augue.

Duis quis turpis mauris, nec viverra orci. Nam vitae lectus odio,
rutrum consequat lacus. Mauris sit amet mauris mi. Class aptent taciti
sociosqu ad litora torquent per conubia nostra, per inceptos
himenaeos. Vestibulum scelerisque enim vel metus posuere dapibus.
Class aptent taciti sociosqu ad litora torquent per conubia nostra,
per inceptos himenaeos. Nam rutrum interdum lectus vitae rhoncus.
Fusce ut velit nulla. Nullam porta sem eu est pulvinar a tincidunt
odio ultrices. Aliquam ut ipsum sem.

\part{State of the art}

\chapter{Nanoimprint}

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed gravida
odio magna. Maecenas vestibulum sodales hendrerit. Maecenas est eros,
porttitor sed bibendum ut, hendrerit et purus. Etiam in tellus id ante
faucibus malesuada vulputate ac eros. Suspendisse a adipiscing nulla.
Suspendisse potenti. Cras nulla lectus, accumsan placerat ultrice

Why is the heading of the Preface showing "List of figures" ?

2009-10-01 Thread Miguel Rubio-Roy
Hi all,
 I've tried to isolate this problem I've found on a large tex file,
but I don't manage to find where the problem is.

 What happens is the heading of the second page of the Preface shows
"List of figures", when it should be showing "Preface".

You can find the pdf file generated on
http://groups.google.com/group/latexusersgroup/web/Thesis2.pdf
and the log file on
http://groups.google.com/group/latexusersgroup/web/Thesis2.log

Thanks
Miguel


 The tex file I'm compiling is:

\documentclass[b5paper,english]{book}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}

\begin{document}

\title{Lorem ipsum dolor sit amet, consectetur adipiscing elit}
\author{Lorem ipsum}

\maketitle
\frontmatter
\listoffigures

\chapter*{Preface}

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed gravida
odio magna. Maecenas vestibulum sodales hendrerit. Maecenas est eros,
porttitor sed bibendum ut, hendrerit et purus. Etiam in tellus id ante
faucibus malesuada vulputate ac eros. Suspendisse a adipiscing nulla.
Suspendisse potenti. Cras nulla lectus, accumsan placerat ultrices
vel, cursus non magna. Fusce id dictum diam. Donec pulvinar accumsan
suscipit. Nunc at tellus a neque vulputate imperdiet. In non quam
dolor, sed malesuada leo. Nunc vitae augue sem. Suspendisse potenti.
Fusce vel magna lorem. Vivamus ut orci ac nisi aliquet aliquet et ac
nisi. Mauris non dui turpis, ac tincidunt tellus. Nulla facilisi. Nunc
dapibus enim eget turpis dapibus molestie nec at dolor. Suspendisse
non hendrerit felis.

In ac massa ligula, eu volutpat nisi. Donec a orci ante. Vivamus ut
molestie ligula. Cras a nisl elit. Sed at neque non massa congue
porta. Cras sed neque venenatis lorem condimentum euismod. Cum sociis
natoque penatibus et magnis dis parturient montes, nascetur ridiculus
mus. Curabitur quis turpis ac diam fringilla sagittis. Aliquam
volutpat luctus odio, in pellentesque orci pellentesque nec. Quisque
porttitor, justo eget mattis tristique, urna nibh fringilla dolor, at
pretium elit purus semper risus. Morbi vehicula convallis mauris vel
scelerisque. Morbi vitae lacus elit, hendrerit tristique dui.
Curabitur imperdiet interdum quam, ac laoreet libero imperdiet eget.
Curabitur nec magna justo.

Sed pharetra viverra est, vitae fermentum nisl aliquam imperdiet.
Etiam ut mauris risus. Aliquam laoreet interdum tellus, in tempor nunc
viverra sit amet. Etiam semper quam sit amet justo imperdiet bibendum
ac a arcu. Quisque condimentum risus vel arcu hendrerit et bibendum
massa egestas. Sed sit amet nulla non erat viverra mattis. Nulla
elementum porta sodales. Nulla lobortis adipiscing tellus, vitae
hendrerit neque pellentesque quis. Pellentesque habitant morbi
tristique senectus et netus et malesuada fames ac turpis egestas.
Curabitur lobortis venenatis laoreet. Quisque augue ante, condimentum
sit amet cursus imperdiet, iaculis in mauris. In ornare lacinia
convallis. Nulla tempor, quam quis semper laoreet, ipsum tortor mattis
lacus, non convallis felis augue quis turpis.

Aliquam ante nulla, sagittis quis porta vel, sodales ut turpis. Duis
id magna sit amet velit tempor adipiscing ut egestas risus. Ut semper
velit a quam mattis eget rhoncus arcu cursus. Ut auctor, sapien
fringilla consectetur aliquet, libero ipsum luctus nibh, nec euismod
nulla sapien eget tortor. In dignissim placerat eros et lobortis.
Fusce blandit rhoncus pretium. Praesent venenatis malesuada mauris,
non dapibus libero pharetra condimentum. Etiam quis lacus at mi
consectetur mattis vel id diam. Duis ut mauris sed libero condimentum
sagittis. Mauris blandit nibh at neque rutrum varius. Fusce sed leo
quis enim convallis iaculis vel ut lacus. Nulla porta interdum
euismod. Vivamus elementum, metus ac eleifend luctus, velit orci
commodo ipsum, eget faucibus arcu velit sed augue. Cras diam neque,
interdum porta eleifend at, dignissim eget augue.

Duis quis turpis mauris, nec viverra orci. Nam vitae lectus odio,
rutrum consequat lacus. Mauris sit amet mauris mi. Class aptent taciti
sociosqu ad litora torquent per conubia nostra, per inceptos
himenaeos. Vestibulum scelerisque enim vel metus posuere dapibus.
Class aptent taciti sociosqu ad litora torquent per conubia nostra,
per inceptos himenaeos. Nam rutrum interdum lectus vitae rhoncus.
Fusce ut velit nulla. Nullam porta sem eu est pulvinar a tincidunt
odio ultrices. Aliquam ut ipsum sem.

\part{State of the art}

\chapter{Nanoimprint}

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed gravida
odio magna. Maecenas vestibulum sodales hendrerit. Maecenas est eros,
porttitor sed bibendum ut, hendrerit et purus. Etiam in tellus id ante
faucibus malesuada vulputate ac eros. Suspendisse a adipiscing nulla.
Suspendisse potenti. Cras nulla lectus, accumsan placerat ultrices
vel, cursus non magna. Fusce id dictum diam. Donec pulvinar accumsan
suscipit. Nunc at tellus a neque vulputate imperdiet. In non quam
dolor, sed malesuada leo. Nunc vitae augue sem. Su

list of figures off the page

2009-09-09 Thread Evan Mason
Hi,

I am using book koma-script.  When I compile my document with pdflatex
everything is fine, but with dvipdfm or ps2pdf the list of figures and
tables are not correct.  They don't wrap, so that each caption just goes off
the page.

I can't be the only one this happens to, but haven't found any other post on
this.

Any help much appreciated,

Evan


Re: Manage Table of Contest, list of figures, list tables etc

2009-05-08 Thread Kamran SHAFQAT

Adrian Diaz wrote:

Friend of Lyx

i have lix 1.6.2 and I would like to manage others  Styles of :

Table of Contest.
list of figures.
list tables etc.

besides i would like to have the control of font, size etc.

Could you tell me how i can set others styles?


Regards  Adrián



 Regards  Adrían

  
I think the tocloft package will allow you to do that have a look at its 
documentation


http://www.ctan.org/tex-archive/macros/latex/contrib/tocloft/tocloft.pdf

regards,
Kamran




Manage Table of Contest, list of figures, list tables etc

2009-05-07 Thread Adrian Diaz
Friend of Lyx

i have lix 1.6.2 and I would like to manage others  Styles of :

Table of Contest.
list of figures.
list tables etc.

besides i would like to have the control of font, size etc.

Could you tell me how i can set others styles?


Regards  Adrián



 Regards  Adrían


Re: Inserting the List of Figures and List of Tables INTO the TOC

2009-04-25 Thread Florian Rubach

Luca De Marini schrieb:

Hallo everyone, very quick question: how do I have the List of Figures and
List of Tables appear INTO the TOC? I just need an entry in the TOC like:

Chapter x: page2
Chapter y: page10
List of Figures: page 50
List of Tables: page 54

Something like that because my teacher wants me to put the TOC on the
beginning of the document and the lists on the bottom of it, and he wants
the lists to appear in the TOC too of course. I was sure tehre was an
automatic way to do it but at the end I noticed that it was possible only to
put the bibliography page in the TOC, not the page where the lists are..
Please help me, I know this must be a simple solution but I'm not finding it
in the documentation :)
Bye

Luca D.M.
  


Add "\addcontentsline{toc}{section}{\listfigurename}" in ERT right in 
front of your list of figures and 
"\addcontentsline{toc}{section}{\listtablename}" right in front of your 
list of tables.
If you want the lists to appear like subsections in the TOC you need to 
replace both "section" by "subsection".


Regards, Florian


Inserting the List of Figures and List of Tables INTO the TOC

2009-04-25 Thread Luca De Marini
Hallo everyone, very quick question: how do I have the List of Figures and
List of Tables appear INTO the TOC? I just need an entry in the TOC like:

Chapter x: page2
Chapter y: page10
List of Figures: page 50
List of Tables: page 54

Something like that because my teacher wants me to put the TOC on the
beginning of the document and the lists on the bottom of it, and he wants
the lists to appear in the TOC too of course. I was sure tehre was an
automatic way to do it but at the end I noticed that it was possible only to
put the bibliography page in the TOC, not the page where the lists are..
Please help me, I know this must be a simple solution but I'm not finding it
in the documentation :)
Bye

Luca D.M.


Re: list of figures

2009-04-13 Thread Niko Schwarz
solved!
i added this to the pre-amble:

\renewcommand...@figure{\@tocline{0}{3pt plus2pt}{0pt}{2.5em}{}}

On Tue, Apr 14, 2009 at 7:59 AM, Niko Schwarz
wrote:

> ohh, i forgot, it also says "LaTeX Error: Command \...@figure already
> defined."
> niko
>
>
> On Tue, Apr 14, 2009 at 7:58 AM, Niko Schwarz  > wrote:
>
>> hmm. then i get this error message:
>>
>> @figur...@dottedtocline{1}{1.5em}{2.3em}}
>>
>>  Your command was ignored.
>>
>> Type I   to replace it with another command,
>>
>> or  to continue without it.
>>
>>
>> niko
>>
>> On Mon, Apr 13, 2009 at 11:45 PM, Uwe Stöhr  wrote:
>>
>>> Niko Schwarz schrieb:
>>>
>>>  in my list of figures, the numbers of the figures are standing much too
>>>> close to the captions of the figures! what can i do?
>>>>
>>>
>>> Add this command to your document preamble:
>>>
>>> \newcommand...@figure{\@dottedtocline{1}{1.5em}{2.3em}}
>>>
>>> (http://texnik.dante.de/cgi-bin/mainFAQ.cgi?file=tocloft/TOC#label)
>>>
>>> regards Uwe
>>>
>>
>>
>


Re: list of figures

2009-04-13 Thread Niko Schwarz
ohh, i forgot, it also says "LaTeX Error: Command \...@figure already
defined."
niko

On Tue, Apr 14, 2009 at 7:58 AM, Niko Schwarz
wrote:

> hmm. then i get this error message:
>
> @figur...@dottedtocline{1}{1.5em}{2.3em}}
>
>  Your command was ignored.
>
> Type I   to replace it with another command,
>
> or  to continue without it.
>
>
> niko
>
> On Mon, Apr 13, 2009 at 11:45 PM, Uwe Stöhr  wrote:
>
>> Niko Schwarz schrieb:
>>
>>  in my list of figures, the numbers of the figures are standing much too
>>> close to the captions of the figures! what can i do?
>>>
>>
>> Add this command to your document preamble:
>>
>> \newcommand...@figure{\@dottedtocline{1}{1.5em}{2.3em}}
>>
>> (http://texnik.dante.de/cgi-bin/mainFAQ.cgi?file=tocloft/TOC#label)
>>
>> regards Uwe
>>
>
>


Re: list of figures

2009-04-13 Thread Niko Schwarz
hmm. then i get this error message:

@figur...@dottedtocline{1}{1.5em}{2.3em}}

 Your command was ignored.

Type I   to replace it with another command,

or  to continue without it.


niko

On Mon, Apr 13, 2009 at 11:45 PM, Uwe Stöhr  wrote:

> Niko Schwarz schrieb:
>
>  in my list of figures, the numbers of the figures are standing much too
>> close to the captions of the figures! what can i do?
>>
>
> Add this command to your document preamble:
>
> \newcommand...@figure{\@dottedtocline{1}{1.5em}{2.3em}}
>
> (http://texnik.dante.de/cgi-bin/mainFAQ.cgi?file=tocloft/TOC#label)
>
> regards Uwe
>


Re: list of figures

2009-04-13 Thread Uwe Stöhr

Niko Schwarz schrieb:


in my list of figures, the numbers of the figures are standing much too
close to the captions of the figures! what can i do?


Add this command to your document preamble:

\newcommand...@figure{\@dottedtocline{1}{1.5em}{2.3em}}

(http://texnik.dante.de/cgi-bin/mainFAQ.cgi?file=tocloft/TOC#label)

regards Uwe


list of figures

2009-04-13 Thread Niko Schwarz
Hello!
in my list of figures, the numbers of the figures are standing much too
close to the captions of the figures! what can i do?

niko


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

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

It worked to insert the following in the Preamble:

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

Thanks again!!
Regards!!!
Carina

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

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




Re: A question regarding List of figures

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

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

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


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

Re: A question regarding List of figures

2009-02-02 Thread Vincent van Ravesteijn

Carina Gaviglio schreef:

Hello,
I have a question.

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

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

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

I hope someone could advise me.

Thanks!!
Carina

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


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


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


Vincent




A question regarding List of figures

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

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

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

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

I hope someone could advise me.

Thanks!!
Carina





Re: BibTex Numbering of List of Figures

2009-01-23 Thread Jürgen Spitzmüller
Mehrdad wrote:
> Now I want the Reference numbering to start in the actual text body and not
> in my List of figures, which comes prior.any ideas?

Use Insert>Short Title in the figure captions to insert a caption for the LOF 
without the citation references.

Jürgen


BibTex Numbering of List of Figures

2009-01-21 Thread Mehrdad
 

 Hallo to all

 

 I am currently writing my thesis with lyx and am running in tones of
formatting problems.before I get started with all the other stuff, my first
urgent question is following: 

 

I have the list of figures after the Table of content, and since there are
figures which are taken out of publication, bibtex starts indexing them with
[1],[2] etc. 

 

Now I want the Reference numbering to start in the actual text body and not
in my List of figures, which comes prior.any ideas? 

 

 

PLEASE HELP!!!

 

Thanks. 



Re: bibliography numbering and list of figures (containing references)

2008-11-21 Thread Richard Heck

Sophie Vandenbussche wrote:


Sophie Vandenbussche a écrit :

Hello again,

I have a second question...

For my bibliography, I use the following options: 
\usepackage[square,sort&compress]{natbib}
I obtain exactly what I look for, but I have one little problem 
(maybe not linked to this choice...):


When I insert a list of figures at the beginning of my document, the 
numbering of the references starts in the legends of the figure... I 
would like that this numbering starts in the text, and that in the 
legends of the figures, the numbers for the references are the ones 
that they would have at the place where the figure is inserted. I 
don't know if this explanation is understandable...


Could you help me?


Mmmm... I "auto-reply" to myself... Actually this does not allways 
happen:!!! Sometimes it is like I want it and sometimes not... and I 
don't understand what I do for obtaining the two situations... Anyway, 
as long as sometimes I obtain what I want (with the hope that on the 
last day I will not only obtain what I don't want :D)


I think this probably has to do with how many LaTeX runs you've done. 
Hard to be sure.


Anyway, I think all you need to do is to use the misnamed "Insert>Short 
Title" at the beginning of your caption. Then enter the same thing, but 
without the reference. Or you can enter something different. What you 
enter is what will appear in the TOC.


rh



Re: bibliography numbering and list of figures (containing references)

2008-11-21 Thread Sophie Vandenbussche


Sophie Vandenbussche a écrit :

Hello again,

I have a second question...

For my bibliography, I use the following options: 
\usepackage[square,sort&compress]{natbib}
I obtain exactly what I look for, but I have one little problem (maybe 
not linked to this choice...):


When I insert a list of figures at the beginning of my document, the 
numbering of the references starts in the legends of the figure... I 
would like that this numbering starts in the text, and that in the 
legends of the figures, the numbers for the references are the ones 
that they would have at the place where the figure is inserted. I 
don't know if this explanation is understandable...


Could you help me? Thanks :D

Sophie


Mmmm... I "auto-reply" to myself... Actually this does not allways 
happen:!!! Sometimes it is like I want it and sometimes not... and I 
don't understand what I do for obtaining the two situations... Anyway, 
as long as sometimes I obtain what I want (with the hope that on the 
last day I will not only obtain what I don't want :D)


bibliography numbering and list of figures (containing references)

2008-11-21 Thread Sophie Vandenbussche

Hello again,

I have a second question...

For my bibliography, I use the following options: 
\usepackage[square,sort&compress]{natbib}
I obtain exactly what I look for, but I have one little problem (maybe 
not linked to this choice...):


When I insert a list of figures at the beginning of my document, the 
numbering of the references starts in the legends of the figure... I 
would like that this numbering starts in the text, and that in the 
legends of the figures, the numbers for the references are the ones that 
they would have at the place where the figure is inserted. I don't know 
if this explanation is understandable...


Could you help me? Thanks :D

Sophie


Re: Short description for List of Figures

2008-11-10 Thread Paul A. Rubin

Daniel Joshua Stark wrote:


In the "List of Figures" for a thesis I am writing, it displays the 
entire caption for each figure.  I know in LaTeX, one can use 
\caption[short]{long} where short will be displayed in the List of 
Figures while long will be the actual caption at the figure.  Is there a 
way to do this with Lyx 1.5.6 on Mac OS X besides resorting to ERT code?




Put the cursor in the caption box and click Insert -> Short Title, then 
fill in the short form.


/Paul



Short description for List of Figures

2008-11-10 Thread Daniel Joshua Stark

Dear All,

In the "List of Figures" for a thesis I am writing, it displays the  
entire caption for each figure.  I know in LaTeX, one can use  
\caption[short]{long} where short will be displayed in the List of  
Figures while long will be the actual caption at the figure.  Is there  
a way to do this with Lyx 1.5.6 on Mac OS X besides resorting to ERT  
code?


Thank you,

Daniel Stark
Graduate Student
Rice University, MS-61
Physics and Astronomy
Dell Butcher Hall 100
1900 Rice Blvd., Ent. 20
Houston TX 77005
USA

Ph: +1-713-348-3126
Fx:  +1-713-348-2603

In physics, you don't have to go around making trouble for yourself -  
nature does it for you. - Frank Wilczek
I think physicists are the Peter Pans of the human race. They never  
grow up and they keep their curiosity. - Isidor Isaac Rabi




list of figures/table

2008-10-22 Thread Davide Cappetti
Hello everybody!

I'm answering myself if in Lyx is possible to modify the list of
figures/table as follow. Normally you have

List of Figures

1 bla bla
2 bla bla

instead I would to have

List of Figures

Figure 1 bla bla bla
Figure 2 bla bla bla

and the same for the list of tables. I know that it is worst but I've to
respect a specific format to write down my reports...

Thanks a lot!
/davide


List of figures with child documents

2008-09-05 Thread Nicolás

Hi!

I have a document with several child documents included. The list of figures generated by the \listoffigues command does not include 
the figures inside the child documents. Is there any way to make those figures be included? Thanks!


Cheers,
Nicolás


Customizing List of Figures

2008-07-01 Thread Waluyo Adi Siswanto
I am preparing a report using book(KOMA script) class.
After the Title page, I write 
   TOC  (insert - list/TOC - Table of Contents)
   List of Figures (insert -list/TOC - List of Figures)
also I put another list (List of Examples), by writing ERT
   \renewcommand\listfigurename{List of Examples}
   \listoffigures


In the chapter text, I write Example 1.1... Example 1.2...etc
by writing ERT
\setcounter{example}{1}


\subsection*{Example \arabic{chapter}.\arabic{example}}
\addcontentsline{lof}{subsection}{Example
arabic{chapter}.\arabic{example}}

\addtocounter{example}{1}
\subsection*{Example \arabic{chapter}.\arabic{example}}
\addcontentsline{lof}{subsection}{Example
arabic{chapter}.\arabic{example}}

But the result,..Example #.# always under List of Figures. Actually what
I want, Example #.# under the List of Examples.

I am just stuck, hoping LyX people suggest ideas.

Thx../Adi





Re: figure-number in list of figures

2008-04-04 Thread Uwe Stöhr

Bob Lounsbury schrieb:

On Fri, Apr 4, 2008 at 9:50 AM, Wolfgang Engelmann

Hi,
 how can I increase the distance between the figure-number and the figure
 legend in the list of figures?

 example:
 9.9 legend 1 is ok
 9.10 legend  is ok
 10.10legend 2 here I would like a space


The tocloft package will do this. I'm sure there are other ways.


Look here for details, but the tocloft package is indeed the easiest way:
http://www.dante.de/faq/de-tex-faq/html/makros3.html#3

regards Uwe


Re: figure-number in list of figures

2008-04-04 Thread Bob Lounsbury
On Fri, Apr 4, 2008 at 9:50 AM, Wolfgang Engelmann
<[EMAIL PROTECTED]> wrote:
> Hi,
>  how can I increase the distance between the figure-number and the figure
>  legend in the list of figures?
>
>  example:
>  9.9 legend 1 is ok
>  9.10 legend  is ok
>  10.10legend 2 here I would like a space
>
>  Wolfgang
>

The tocloft package will do this. I'm sure there are other ways.

Cheers,
/Bob


figure-number in list of figures

2008-04-04 Thread Wolfgang Engelmann
Hi,
how can I increase the distance between the figure-number and the figure 
legend in the list of figures?

example:
9.9 legend 1 is ok
9.10 legend  is ok
10.10legend 2 here I would like a space

Wolfgang


Re: List of Figures Enumeration subsectionwise

2008-03-15 Thread Bob Lounsbury
On Sat, Mar 15, 2008 at 10:31 AM, Kane Kano <[EMAIL PROTECTED]> wrote:
> Hallo everbody,
>
>  I have justed genarated my list of figures but I am not satisfied with the 
> way of enumarating my figures. It counts every figure like 1, 2, 3... etc.
>
>  Does anyone know how I could adjust the numbering of figures to my Lyx 
> document?  For example if I have inserted 3 figures in subsection 1.3, they 
> should be counted like
>
>  Figure 1.3.1
>  Figure 1.3.2
>  Figure 1.3.3
>
>  Thanks a lot
>
>  Kane


You just need to put '\numberwithin{figure}{subsection}' in your
preamble and set Document->Settings->Math Options to 'Use AMS math
package'. The same can be done for tables 'table' and equations
'equation'.

Cheers,
/Bob


List of Figures Enumeration subsectionwise

2008-03-15 Thread Kane Kano
Hallo everbody, 

I have justed genarated my list of figures but I am not satisfied with the way 
of enumarating my figures. It counts every figure like 1, 2, 3... etc. 

Does anyone know how I could adjust the numbering of figures to my Lyx 
document?  For example if I have inserted 3 figures in subsection 1.3, they 
should be counted like

Figure 1.3.1
Figure 1.3.2
Figure 1.3.3

Thanks a lot

Kane




  Lesen Sie Ihre E-Mails jetzt einfach von unterwegs.
www.yahoo.de/go

Re: Help with List of Figures

2008-02-01 Thread Uwe Stöhr

Adrian Peter schrieb:


I am trying to create a list-of-figures page for a multi-part report.
However, when I insert a 'List of Figures' the entire figure caption is
being displayed on the list-of-figures page.  I only want the title of the
figure caption displayed followed by the page number.


Then you have to add short titles to the image captions (LyX menu Insert->Short 
Title).
The content of the short title is then shown in the list of figures.

regards Uwe


Help with List of Figures

2008-02-01 Thread Adrian Peter
Hi,

 

I am trying to create a list-of-figures page for a multi-part report.
However, when I insert a 'List of Figures' the entire figure caption is
being displayed on the list-of-figures page.  I only want the title of the
figure caption displayed followed by the page number.  Can anyone tell me
what I'm doing wrong?  Thank you in advance.

 

(I'm running lyx 1.5.2 on Vista)

 

Adrian

 



Re: 1.5.3: list of figures

2007-12-31 Thread Jürgen Spitzmüller
Wolfgang Engelmann wrote:
> If I go to navigate > list of figures, I get the figures up to 184, but not
> more (there are in my case around 450). Is there a way of shifting the
> figure list so that the remaining figure captions can be seen and selected?

With such a huge list, it's probably handier to use Document->Outliner to 
navigate to the figures.

Jürgen


1.5.3: list of figures

2007-12-31 Thread Wolfgang Engelmann
Thanks to Sven Hoexter´s Debian package I was able to switch from 1.4.5 to 
1.5.3 without any problems. 
I had this small inconvenience already with the older version and thought it 
might have been gone in the new one. It is, however, not gone.

If I go to navigate > list of figures, I get the figures up to 184, but not 
more (there are in my case around 450). Is there a way of shifting the figure 
list so that the remaining figure captions can be seen and selected? If not, 
would it be a large amount of work for the developers (thanks again for all 
their work!!) to use smaller distances between the lines so that at least 
twice as many figure legends could be displayed?

Wolfgang


Re: list of figures

2007-11-04 Thread Nicolás

Morgan Silverman wrote:

Hello,
I have figured out how to add the word Figure before the figure number 
that is automatically displayed in the list of figures. I would like to 
put a space between Figure and the number, so it looks like Figure 1.2. 
Right now it looks like Figure1.2 with no space. Does anyone know how to 
add this space? Thanks.

-Morgan Silverman



I guess you can add a protected space (Insert->Formatting) after "Figure"


list of figures

2007-11-03 Thread Morgan Silverman

Hello,
I have figured out how to add the word Figure before the figure  
number that is automatically displayed in the list of figures. I  
would like to put a space between Figure and the number, so it looks  
like Figure 1.2. Right now it looks like Figure1.2 with no space.  
Does anyone know how to add this space? Thanks.

-Morgan Silverman


Re: List of Figures - Shorter Text

2007-08-10 Thread Tim Michelsen



\caption[Short Text for List]{Long Text for Figure}.

How can I model the first part [] in Lyx?

Go with your cursor in the caption then do:
> Insert -> Short Title (Kurztitel) -> type the short one

Thant's it! Applies also for tables -- just any caption.



List of Figures - Shorter Text

2007-08-10 Thread Fritz Bein

Hi,

I would like to have a shorter text in the list of figures than the text  
in the description of the figure. In Latex I can write it as


\caption[Short Text for List]{Long Text for Figure}.

How can I model the first part [] in Lyx?

Thanks for your help,
Fritz




Re: List of Figures Mibehaves?

2007-08-06 Thread Uwe Stöhr

Roy Schestowitz schrieb:


I am using LyX 1.3.5 to produce this and I have no idea what else to
check. Any thoughts/advice?


The only advice I can give is to update to a newer LyX version. I can recommend the new LyX 1.5.1 
release but when you want to keep working with LyX 1.3.x you should at least update to LyX 1.3.7. 
(Windows installer for this version is available here:

 
https://developer.berlios.de/project/showfiles.php?group_id=5117&release_id=13213
 (version 1.1) )

regards Uwe


List of Figures Mibehaves?

2007-08-06 Thread Roy Schestowitz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

It has been years since I last posted here, but I have a question to
ask. When producing a List of Figures, suddenly I am faced with a
problem that I never had before (and one hour of stubborn attempts
could not resolve either). The text which comes from captions does not
get wrapped and the entire text on the page is shifted about an inch
to the the right. The text is spilled outside the page borders, as well.

I am using LyX 1.3.5 to produce this and I have no idea what else to
check. Any thoughts/advice?

Many thanks,


Roy

- --
~~ Best of wishes

Roy S. Schestowitz
http://Schestowitz.com  |  GNU/Linux  | PGP-Key: 0x74572E8E
http://othellomaster.com >> GPL-licensed 3-D Othello
http://iuron.com >> proposing an Open Source, non-profit search engine
Open Source journalism contributer @ http://newassignment.net
Freelance writer @ http://itmanagement.earthweb.com/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFGtt6LU4xAY3RXLo4RAuXDAKCqJe4AqxsxGvpOG6UQQFRlUZEqhgCfad62
4eFNL5pfqpiF+I7HCiBm3xk=
=gEN9
-END PGP SIGNATURE-



Backref and list of figures

2007-06-25 Thread LB

Hello

When I use backref, the back references at the end of bibliography lines 
point not only to the citations inside the text but also to citations in the 
captions listed in the LOF.


This does not seem correct as the references in the text are no longer 
sequential since the LOF precedes the text.  Has anybody else notice this 
behaviour? Is there a way of changing this?


Thank you
Leo 





Re: Different fonts in Figure title, List of Figures

2007-05-31 Thread Uwe Stöhr

Rockoff, David schrieb:


I am writing a report in LyX, and would like to have my figure/float titles in 
bold in the body of the report, but non-bold in the List of Figures.
What is the easiest way to accomplish this?


Use the LaTeX-package "caption". An explanation about this is given in the EmbeddedObjects manual 
which is included to LyX 1.4.4 or available here:


http://wiki.lyx.org/LyX/DocumentationDevelopment#EmbeddedObjects

regards Uwe


Different fonts in Figure title, List of Figures

2007-05-31 Thread Rockoff, David


I am writing a report in LyX, and would like to have my figure/float titles in 
bold in the body of the report, but non-bold in the List of Figures.
What is the easiest way to accomplish this?  

I have had some success with the Insert Short Title command (putting the short 
title in non-bold, and the regular title in bold).  But this does not allow me 
to have the words "Figure #" in bold in the report body.

Any thoughts?

TIA,
-Dave 




Re: custom list of figures possible?

2007-05-08 Thread Bob Lounsbury

Holger Blank wrote:

Hello,

I'm currently writing a document with figures that have long captions. 
So the list of figures becomes very unsightly.
Is there a feature to specify short captions which appear in the list 
of figures?

If not, what would be the best trick to get this?

I'm currently using Lyx version 1.3.7. Ubuntu doesnt show me a newer 
version.


TIA,
Holger


In LyX 1.4.4 & 1.5.0beta2 it's Insert -> Short Title. I don't remember 
if it's the same menu option in 1.3.7, but nonetheless you should be 
able to find the Short Title option somewhere. This will give you what 
you're looking for :-) .


Bob


custom list of figures possible?

2007-05-08 Thread Holger Blank

Hello,

I'm currently writing a document with figures that have long captions. 
So the list of figures becomes very unsightly.
Is there a feature to specify short captions which appear in the list 
of figures?

If not, what would be the best trick to get this?

I'm currently using Lyx version 1.3.7. Ubuntu doesnt show me a newer version.

TIA,
Holger



Re: list of figures [was: "Multi-Boxed-Table" Float?]

2007-04-18 Thread Sam Lewis
Juergen Spitzmueller <[EMAIL PROTECTED]> writes:
 
> Insert->Short Title

Excellent - thanks!

Cheers, Sam





Re: list of figures [was: "Multi-Boxed-Table" Float?]

2007-04-18 Thread Juergen Spitzmueller
Sam Lewis wrote:

> Another question, if I may: I use rather long captions for these "box"
> floats. When I then insert list of figures, it overruns the list page. Is
> there a way to have a (short) summary that appears in the list of figures?

Insert->Short Title

Jürgen




list of figures [was: "Multi-Boxed-Table" Float?]

2007-04-18 Thread Sam Lewis
Helge Hafting <[EMAIL PROTECTED]> writes:

[]
> The only difference between "figure" floats and "table" floats is the
> captions they get - and the former may be listed in the "list of figures"
> while the latter may be listed in the "list of tables".  They don't 

Thanks! I somehow received lost of latex errors on these nestled boxes (which
complied fine outside), but didn't when I put them in a float. After removing a
long string of some special formatting, which I simplified, it then worked
*within* the float.



Another question, if I may: I use rather long captions for these "box" floats.
When I then insert list of figures, it overruns the list page. Is there a way to
have a (short) summary that appears in the list of figures?

Cheers, Sam



List of Figures (2nd edition)

2006-04-07 Thread tceglare
hello,

now i have short titles in my list of figures. but i have one more question:

how can i change the way of numbering the figures?

for example:

not(!) 1.1, 1.2, 1.3, ..., 2.1, 2.2, ...

but: 1, 2, 3, 4, ...
or A, B, C, D, ...

i am using document class book-komascript.

regards,

tc



Re: List of Figures

2006-04-04 Thread Wolfgang Engelmann
Am Montag, 3. April 2006 22:57 schrieb [EMAIL PROTECTED]:
> hello,
>
> i have inserted a list of figures in my document (book-komascript). the
> problem is that the whole(!) description of the figures appears in the
> list. i want to appear just a short title of each figure.
>
> can anyone help me, please?

I guess you used >floats>figure and added the legend there after 
Figure#: blabla
Go with your cursor to Figure#: blabla
and select >shorttitle in the same dropdown column where you selected floats

a red framed field marked OPT opens, where you can insert your short title 
(easiest: cut and paste your legend and shorten it afterward)

Wolfgang


Re: List of Figures

2006-04-04 Thread tceglare
Thank you very much - it works!

> Hi
>
> Click: Insert - short title
> and then write a shorter title after the title of the figure. In the TOC
> the short title is displayed. Also works for section titles etc. and
> works is both TOC and headers etc.
>
> Regards
> Christiaan
>
>
>
>
> [EMAIL PROTECTED] wrote:
>>hello,
>>
>>i have inserted a list of figures in my document (book-komascript). the
>>problem is that the whole(!) description of the figures appears in the
>>list. i want to appear just a short title of each figure.
>>
>>can anyone help me, please?
>>
>>cu,
>>
>>  tc
>>
>>
>
>



Re: List of Figures

2006-04-03 Thread christiaan johannes pauw
Hi

Click: Insert - short title
and then write a shorter title after the title of the figure. In the TOC
the short title is displayed. Also works for section titles etc. and
works is both TOC and headers etc.

Regards
Christiaan




[EMAIL PROTECTED] wrote:
>hello,
>
>i have inserted a list of figures in my document (book-komascript). the
>problem is that the whole(!) description of the figures appears in the
>list. i want to appear just a short title of each figure.
>
>can anyone help me, please?
>
>cu,
>
>  tc
>
>  


List of Figures

2006-04-03 Thread tceglare
hello,

i have inserted a list of figures in my document (book-komascript). the
problem is that the whole(!) description of the figures appears in the
list. i want to appear just a short title of each figure.

can anyone help me, please?

cu,

  tc


  1   2   >