Re: title environment defeating pagestyle

2002-01-04 Thread Herbert Voss



Jamie Faunt wrote:

 On Fri, 4 Jan 2002, Herbert Voss wrote:
 
 
Jamie Faunt wrote:


On Fri, 4 Jan 2002, Herbert Voss wrote:

Okay example attached.

ah, I see. For the title page put the command \thispagestyle{empty}

in front of your first textline.

 
 Ah-ha! Now that makes a difference -- even if it's ugly. I didn't get that
 it was in front of the first standard text line instead of the first line
 of the file.


with the (not seen) command \maketitle latex overwrites the
\thispagestyle-command.


 But now how do I get a \cfoot in there since now the added tex line
 defeats that?


for example: in preamble


\usepackage{fancyhdr}
\fancypagestyle{plain}{%
   \fancyhf{}
   \fancyfoot[C]{\bfseries my lovely footer}
   \renewcommand\headrulewidth{0pt}
   \renewcommand\footrulewidth{3pt}
}

Herbert


-- 
http://www.lyx.org/help/




Re: creating a tri-fold brochure

2002-01-04 Thread Herbert Voss



Jeremy C. Reed wrote:

 Can anyone share some hints or point me to some examples on how to do
 tri-fold brochures with LyX?
 
 I have tried the (LaTeX) multicol package for three columns, but I want to
 choose where it wraps (to the next column). I have read the multicol
 example and am still trying the examples.


\columnbreak in tex (red)

Herbert




-- 
http://www.lyx.org/help/




Re: Accented vowels

2002-01-04 Thread Herbert Voss

Jorge Balmaseda Era wrote:

 
 I recently started to use linux (Redhat) and LyX, so my experience on both
 is minimal. I would like to write accented vowel in Lyx (not in Latex
 code). I have spent a lot of time reading the manuals and I now know that
 is possible, but I don't know how to do it! Can any one of you Help me?


do you have the dead keys running?
is it not possible to write for example 'e and get é?

Herbert



-- 
http://www.lyx.org/help/




Re: title environment defeating pagestyle

2002-01-04 Thread Jamie Faunt

On Fri, 4 Jan 2002, Herbert Voss wrote:

 with the (not seen) command \maketitle latex overwrites the
 \thispagestyle-command.

Okay, I see.

  But now how do I get a \cfoot in there since now the added tex line
  defeats that?

 for example: in preamble

 \usepackage{fancyhdr}

I would figure not needed if defined in doc-pagestyle?

 \fancypagestyle{plain}{%
\fancyhf{}
\fancyfoot[C]{\bfseries my lovely footer}
\renewcommand\headrulewidth{0pt}
\renewcommand\footrulewidth{3pt}
 }

So I gather that the default footrulewidth for fancy is 0pt and this would
add the footruler. That's cool.

I've tried this now, and also re-read the fancy header section of extended
features. Your example works for me as long as there's a title. But if
there isn't a title, I see that the regular headers and footers start on
the first page. And \cfoot will replace the default page number after the
first page with a title, or from the first page without. OKay.

thanks very much for your help with this,
jamie faunt




http://musicalskills.com
_




Re: title environment defeating pagestyle

2002-01-04 Thread Herbert Voss

Jamie Faunt wrote:

 On Fri, 4 Jan 2002, Herbert Voss wrote:
 
\usepackage{fancyhdr}

 
 I would figure not needed if defined in doc-pagestyle?


right

 So I gather that the default footrulewidth for fancy is 0pt and this would
 add the footruler. That's cool.


the default depends to the used textclass, because some define
their own default. So it's secure to write it anyway in the
preamble.


 I've tried this now, and also re-read the fancy header section of extended
 features. Your example works for me as long as there's a title. But if
 there isn't a title, I see that the regular headers and footers start on
 the first page. And \cfoot will replace the default page number after the
 first page with a title, or from the first page without. OKay.

plain pagestyle is only for title/part/chapterpages. all others
have the default pagestyle which you can define with for example:

\cfoot{yippie}
\rfoot{\thepage}

Herbert


-- 
http://www.lyx.org/help/




Re: title environment defeating pagestyle

2002-01-04 Thread Jamie Faunt


very helpful -- thanks much!
jamie faunt


http://musicalskills.com
_




Re: KLyX -- am I missing something?

2002-01-04 Thread Robin Turner



Wayan wrote:

 On Wed, 2 Jan 2002, Herbert Voss wrote:

  no, only disadvantages when using klyx.

 Yes, but there is one feature in KLyX could not be found in LyX, i.e.
 Document Structure... I prefer use KLyX and then finishing with LyX, at
 least until LyX 1.1.6.

Yes, I enjoyed that feature when I was using KLyX.  On the bright side, LyX
1.2 should have a KDE version, so eventually there will be no difference
between LyX and KLyX.

Robin





Re: KLyX -- am I missing something?

2002-01-04 Thread Jean-Marc Lasgouttes

 Robin == Robin Turner [EMAIL PROTECTED] writes:

Robin Yes, I enjoyed that feature when I was using KLyX. On the
Robin bright side, LyX 1.2 should have a KDE version, so eventually
Robin there will be no difference between LyX and KLyX.

For the kde (actually qt2) version, you will have to wait for 1.3.0.
There have been little improvements on this fron for 1.2.0. Actually,
there have been a lot of improvement, but more in infrastructure of
GUI indepndence than in visible results.

Also, having this document manager is rather independent of having a
kde port.

JMarc





Re: KLyX -- am I missing something?

2002-01-04 Thread Robin Turner



Jean-Marc Lasgouttes wrote:



 For the kde (actually qt2) version, you will have to wait for 1.3.0.
 There have been little improvements on this fron for 1.2.0. Actually,
 there have been a lot of improvement, but more in infrastructure of
 GUI indepndence than in visible results.

1.3.0?  Wah - you mean I'm stuck with those ugly xforms widgets for
another year?  Looking at the GUI compatibility page, I thought the job
was near done.  Oh well.



 Also, having this document manager is rather independent of having a
 kde port.


True, but I would have thought it would make it easier to include if
anyone wanted it hard enough.

Robin




Re: Page numbers: start later \ pagestyle{empty}

2002-01-04 Thread Ben Luey

Maybe this is the same problem as in the pervious post, but adding (in ERT
red) thispagestyle{empty} before my title, after my title, before my
first section, after first section, before/after TOC, etc, does not get
rid of the page numbering on that page. Is there something I need in the
preamble to make this work?


Thanks,

Ben



On Fri, 4 Jan 2002, Herbert Voss wrote:



 Ben Luey wrote:

  I'm using lyx 12 cvs with the Article class, which does page numbering.
  Currently I have my abstract, a page break, my generated TOC, a page break
  and then my content, but the page numering starts with the abstract. I
  want to make the numbering start on page 3, (my content), ie after the
  TOC. Is there a good way to do this?
 
  I can use in the latex preamble:
 
  \setcounter{page}{-1}
 
  which gets the page numberings right, but displays -1 and 0 on the
  first two pages, which I want to supress.

 http://www.lyx.org/help/page/page.html#pagenumbers

 Herbert






figure cross-reference and caption

2002-01-04 Thread Ben Luey

Two probably basic questions -- I want to cross-reference my figures.
I'm using lyx 1.2 from cvs. I did insert float, then insert figure. The
lyx tutorial says to put a label at the end of the caption in the figure,
but since the caption is imbeded with the insert image (the caption is in
the dialog box) I don't know how to do that. I've tried putting a label
everywhere (before and after the image, highlight the float-figure, etc,
but the reference number is always ??.

Also, is there a good way to force a new line in my figure caption? Again
since the caption is in the dialog box, I can't use ctrl-enter, or
anything.

Thanks,

Ben




Re: figure cross-reference and caption

2002-01-04 Thread John Levon

, 2002 at 10:30:01AM -0600, Ben Luey wrote:

 Two probably basic questions -- I want to cross-reference my figures.
 I'm using lyx 1.2 from cvs. I did insert float, then insert figure. The
 lyx tutorial says to put a label at the end of the caption in the figure,
 but since the caption is imbeded with the insert image (the caption is in
 the dialog box) I don't know how to do that. I've tried putting a label
 everywhere (before and after the image, highlight the float-figure, etc,
 but the reference number is always ??.

After inserting the figure in the float, press return and change the environment
to Caption (right at the bottom of the combo box at the top left)

The dialog box caption is for sub figures ...

regards
john

-- 
Unless everyone else on earth is attending meetings I haven't been told
about.
- /. paranoia at its finest



Re: Page numbers: start later \ pagestyle{empty}

2002-01-04 Thread Herbert Voss



Ben Luey wrote:

 Maybe this is the same problem as in the pervious post, but adding (in ERT
 red) thispagestyle{empty} before my title, after my title, before my
 first section, after first section, before/after TOC, etc, does not get
 rid of the page numbering on that page. Is there something I need in the
 preamble to make this work?


give an example file


Herbert



-- 
http://www.lyx.org/help/




Euro symbol

2002-01-04 Thread Horst Jurkat



Hallo,
despite of several hints I was not successful to 
"post-install" the Euro symbolin my system for Lyx 1.1.6fix3 under SuSe 
7.2. Did anybody successfully install it under this configuration?



Re: title environment defeating pagestyle

2002-01-04 Thread Herbert Voss



Jamie Faunt wrote:

 On Fri, 4 Jan 2002, Herbert Voss wrote:
 
 
Jamie Faunt wrote:


On Fri, 4 Jan 2002, Herbert Voss wrote:

Okay example attached.

ah, I see. For the title page put the command \thispagestyle{empty}

in front of your first textline.

 
 Ah-ha! Now that makes a difference -- even if it's ugly. I didn't get that
 it was in front of the first standard text line instead of the first line
 of the file.


with the (not seen) command \maketitle latex overwrites the
\thispagestyle-command.


 But now how do I get a \cfoot in there since now the added tex line
 defeats that?


for example: in preamble


\usepackage{fancyhdr}
\fancypagestyle{plain}{%
   \fancyhf{}
   \fancyfoot[C]{\bfseries my lovely footer}
   \renewcommand\headrulewidth{0pt}
   \renewcommand\footrulewidth{3pt}
}

Herbert


-- 
http://www.lyx.org/help/




Re: creating a tri-fold brochure

2002-01-04 Thread Herbert Voss



Jeremy C. Reed wrote:

 Can anyone share some hints or point me to some examples on how to do
 tri-fold brochures with LyX?
 
 I have tried the (LaTeX) multicol package for three columns, but I want to
 choose where it wraps (to the next column). I have read the multicol
 example and am still trying the examples.


\columnbreak in tex (red)

Herbert




-- 
http://www.lyx.org/help/




Re: Accented vowels

2002-01-04 Thread Herbert Voss

Jorge Balmaseda Era wrote:

 
 I recently started to use linux (Redhat) and LyX, so my experience on both
 is minimal. I would like to write accented vowel in Lyx (not in Latex
 code). I have spent a lot of time reading the manuals and I now know that
 is possible, but I don't know how to do it! Can any one of you Help me?


do you have the dead keys running?
is it not possible to write for example 'e and get é?

Herbert



-- 
http://www.lyx.org/help/




Re: title environment defeating pagestyle

2002-01-04 Thread Jamie Faunt

On Fri, 4 Jan 2002, Herbert Voss wrote:

 with the (not seen) command \maketitle latex overwrites the
 \thispagestyle-command.

Okay, I see.

  But now how do I get a \cfoot in there since now the added tex line
  defeats that?

 for example: in preamble

 \usepackage{fancyhdr}

I would figure not needed if defined in doc-pagestyle?

 \fancypagestyle{plain}{%
\fancyhf{}
\fancyfoot[C]{\bfseries my lovely footer}
\renewcommand\headrulewidth{0pt}
\renewcommand\footrulewidth{3pt}
 }

So I gather that the default footrulewidth for fancy is 0pt and this would
add the footruler. That's cool.

I've tried this now, and also re-read the fancy header section of extended
features. Your example works for me as long as there's a title. But if
there isn't a title, I see that the regular headers and footers start on
the first page. And \cfoot will replace the default page number after the
first page with a title, or from the first page without. OKay.

thanks very much for your help with this,
jamie faunt




http://musicalskills.com
_




Re: title environment defeating pagestyle

2002-01-04 Thread Herbert Voss

Jamie Faunt wrote:

 On Fri, 4 Jan 2002, Herbert Voss wrote:
 
\usepackage{fancyhdr}

 
 I would figure not needed if defined in doc-pagestyle?


right

 So I gather that the default footrulewidth for fancy is 0pt and this would
 add the footruler. That's cool.


the default depends to the used textclass, because some define
their own default. So it's secure to write it anyway in the
preamble.


 I've tried this now, and also re-read the fancy header section of extended
 features. Your example works for me as long as there's a title. But if
 there isn't a title, I see that the regular headers and footers start on
 the first page. And \cfoot will replace the default page number after the
 first page with a title, or from the first page without. OKay.

plain pagestyle is only for title/part/chapterpages. all others
have the default pagestyle which you can define with for example:

\cfoot{yippie}
\rfoot{\thepage}

Herbert


-- 
http://www.lyx.org/help/




Re: title environment defeating pagestyle

2002-01-04 Thread Jamie Faunt


very helpful -- thanks much!
jamie faunt


http://musicalskills.com
_




Re: KLyX -- am I missing something?

2002-01-04 Thread Robin Turner



Wayan wrote:

 On Wed, 2 Jan 2002, Herbert Voss wrote:

  no, only disadvantages when using klyx.

 Yes, but there is one feature in KLyX could not be found in LyX, i.e.
 Document Structure... I prefer use KLyX and then finishing with LyX, at
 least until LyX 1.1.6.

Yes, I enjoyed that feature when I was using KLyX.  On the bright side, LyX
1.2 should have a KDE version, so eventually there will be no difference
between LyX and KLyX.

Robin





Re: KLyX -- am I missing something?

2002-01-04 Thread Jean-Marc Lasgouttes

 Robin == Robin Turner [EMAIL PROTECTED] writes:

Robin Yes, I enjoyed that feature when I was using KLyX. On the
Robin bright side, LyX 1.2 should have a KDE version, so eventually
Robin there will be no difference between LyX and KLyX.

For the kde (actually qt2) version, you will have to wait for 1.3.0.
There have been little improvements on this fron for 1.2.0. Actually,
there have been a lot of improvement, but more in infrastructure of
GUI indepndence than in visible results.

Also, having this document manager is rather independent of having a
kde port.

JMarc





Re: KLyX -- am I missing something?

2002-01-04 Thread Robin Turner



Jean-Marc Lasgouttes wrote:



 For the kde (actually qt2) version, you will have to wait for 1.3.0.
 There have been little improvements on this fron for 1.2.0. Actually,
 there have been a lot of improvement, but more in infrastructure of
 GUI indepndence than in visible results.

1.3.0?  Wah - you mean I'm stuck with those ugly xforms widgets for
another year?  Looking at the GUI compatibility page, I thought the job
was near done.  Oh well.



 Also, having this document manager is rather independent of having a
 kde port.


True, but I would have thought it would make it easier to include if
anyone wanted it hard enough.

Robin




Re: Page numbers: start later \ pagestyle{empty}

2002-01-04 Thread Ben Luey

Maybe this is the same problem as in the pervious post, but adding (in ERT
red) thispagestyle{empty} before my title, after my title, before my
first section, after first section, before/after TOC, etc, does not get
rid of the page numbering on that page. Is there something I need in the
preamble to make this work?


Thanks,

Ben



On Fri, 4 Jan 2002, Herbert Voss wrote:



 Ben Luey wrote:

  I'm using lyx 12 cvs with the Article class, which does page numbering.
  Currently I have my abstract, a page break, my generated TOC, a page break
  and then my content, but the page numering starts with the abstract. I
  want to make the numbering start on page 3, (my content), ie after the
  TOC. Is there a good way to do this?
 
  I can use in the latex preamble:
 
  \setcounter{page}{-1}
 
  which gets the page numberings right, but displays -1 and 0 on the
  first two pages, which I want to supress.

 http://www.lyx.org/help/page/page.html#pagenumbers

 Herbert






figure cross-reference and caption

2002-01-04 Thread Ben Luey

Two probably basic questions -- I want to cross-reference my figures.
I'm using lyx 1.2 from cvs. I did insert float, then insert figure. The
lyx tutorial says to put a label at the end of the caption in the figure,
but since the caption is imbeded with the insert image (the caption is in
the dialog box) I don't know how to do that. I've tried putting a label
everywhere (before and after the image, highlight the float-figure, etc,
but the reference number is always ??.

Also, is there a good way to force a new line in my figure caption? Again
since the caption is in the dialog box, I can't use ctrl-enter, or
anything.

Thanks,

Ben




Re: figure cross-reference and caption

2002-01-04 Thread John Levon

, 2002 at 10:30:01AM -0600, Ben Luey wrote:

 Two probably basic questions -- I want to cross-reference my figures.
 I'm using lyx 1.2 from cvs. I did insert float, then insert figure. The
 lyx tutorial says to put a label at the end of the caption in the figure,
 but since the caption is imbeded with the insert image (the caption is in
 the dialog box) I don't know how to do that. I've tried putting a label
 everywhere (before and after the image, highlight the float-figure, etc,
 but the reference number is always ??.

After inserting the figure in the float, press return and change the environment
to Caption (right at the bottom of the combo box at the top left)

The dialog box caption is for sub figures ...

regards
john

-- 
Unless everyone else on earth is attending meetings I haven't been told
about.
- /. paranoia at its finest



Re: Page numbers: start later \ pagestyle{empty}

2002-01-04 Thread Herbert Voss



Ben Luey wrote:

 Maybe this is the same problem as in the pervious post, but adding (in ERT
 red) thispagestyle{empty} before my title, after my title, before my
 first section, after first section, before/after TOC, etc, does not get
 rid of the page numbering on that page. Is there something I need in the
 preamble to make this work?


give an example file


Herbert



-- 
http://www.lyx.org/help/




Euro symbol

2002-01-04 Thread Horst Jurkat



Hallo,
despite of several hints I was not successful to 
"post-install" the Euro symbolin my system for Lyx 1.1.6fix3 under SuSe 
7.2. Did anybody successfully install it under this configuration?



Re: title environment defeating pagestyle

2002-01-04 Thread Herbert Voss



Jamie Faunt wrote:

> On Fri, 4 Jan 2002, Herbert Voss wrote:
> 
> 
>>Jamie Faunt wrote:
>>
>>
>>>On Fri, 4 Jan 2002, Herbert Voss wrote:
>>>
>>>Okay example attached.
>>>
>>ah, I see. For the title page put the command \thispagestyle{empty}
>>
>>in front of your first textline.
>>
> 
> Ah-ha! Now that makes a difference -- even if it's ugly. I didn't get that
> it was in front of the first standard text line instead of the first line
> of the file.


with the (not seen) command \maketitle latex overwrites the
\thispagestyle-command.


> But now how do I get a \cfoot in there since now the added tex line
> defeats that?


for example: in preamble


\usepackage{fancyhdr}
\fancypagestyle{plain}{%
   \fancyhf{}
   \fancyfoot[C]{\bfseries my lovely footer}
   \renewcommand\headrulewidth{0pt}
   \renewcommand\footrulewidth{3pt}
}

Herbert


-- 
http://www.lyx.org/help/




Re: creating a tri-fold brochure

2002-01-04 Thread Herbert Voss



Jeremy C. Reed wrote:

> Can anyone share some hints or point me to some examples on how to do
> tri-fold brochures with LyX?
> 
> I have tried the (LaTeX) multicol package for three columns, but I want to
> choose where it wraps (to the next column). I have read the multicol
> example and am still trying the examples.


\columnbreak in tex (red)

Herbert




-- 
http://www.lyx.org/help/




Re: Accented vowels

2002-01-04 Thread Herbert Voss

Jorge Balmaseda Era wrote:

> 
> I recently started to use linux (Redhat) and LyX, so my experience on both
> is minimal. I would like to write accented vowel in Lyx (not in Latex
> code). I have spent a lot of time reading the manuals and I now know that
> is possible, but I don't know how to do it! Can any one of you Help me?


do you have the dead keys running?
is it not possible to write for example 'e and get é?

Herbert



-- 
http://www.lyx.org/help/




Re: title environment defeating pagestyle

2002-01-04 Thread Jamie Faunt

On Fri, 4 Jan 2002, Herbert Voss wrote:

> with the (not seen) command \maketitle latex overwrites the
> \thispagestyle-command.

Okay, I see.

> > But now how do I get a \cfoot in there since now the added tex line
> > defeats that?

> for example: in preamble
>
> \usepackage{fancyhdr}

I would figure not needed if defined in doc-pagestyle?

> \fancypagestyle{plain}{%
>\fancyhf{}
>\fancyfoot[C]{\bfseries my lovely footer}
>\renewcommand\headrulewidth{0pt}
>\renewcommand\footrulewidth{3pt}
> }

So I gather that the default footrulewidth for fancy is 0pt and this would
add the footruler. That's cool.

I've tried this now, and also re-read the fancy header section of extended
features. Your example works for me as long as there's a title. But if
there isn't a title, I see that the regular headers and footers start on
the first page. And \cfoot will replace the default page number after the
first page with a title, or from the first page without. OKay.

thanks very much for your help with this,
jamie faunt




http://musicalskills.com
_




Re: title environment defeating pagestyle

2002-01-04 Thread Herbert Voss

Jamie Faunt wrote:

> On Fri, 4 Jan 2002, Herbert Voss wrote:
> 
>>\usepackage{fancyhdr}
>>
> 
> I would figure not needed if defined in doc-pagestyle?


right

> So I gather that the default footrulewidth for fancy is 0pt and this would
> add the footruler. That's cool.


the default depends to the used textclass, because some define
their own default. So it's secure to write it anyway in the
preamble.


> I've tried this now, and also re-read the fancy header section of extended
> features. Your example works for me as long as there's a title. But if
> there isn't a title, I see that the regular headers and footers start on
> the first page. And \cfoot will replace the default page number after the
> first page with a title, or from the first page without. OKay.

plain pagestyle is only for title/part/chapterpages. all others
have the default pagestyle which you can define with for example:

\cfoot{yippie}
\rfoot{\thepage}

Herbert


-- 
http://www.lyx.org/help/




Re: title environment defeating pagestyle

2002-01-04 Thread Jamie Faunt


very helpful -- thanks much!
jamie faunt


http://musicalskills.com
_




Re: KLyX -- am I missing something?

2002-01-04 Thread Robin Turner



Wayan wrote:

> On Wed, 2 Jan 2002, Herbert Voss wrote:
>
> > no, only disadvantages when using klyx.
>
> Yes, but there is one feature in KLyX could not be found in LyX, i.e.
> Document Structure... I prefer use KLyX and then finishing with LyX, at
> least until LyX 1.1.6.

Yes, I enjoyed that feature when I was using KLyX.  On the bright side, LyX
1.2 should have a KDE version, so eventually there will be no difference
between LyX and KLyX.

Robin





Re: KLyX -- am I missing something?

2002-01-04 Thread Jean-Marc Lasgouttes

> "Robin" == Robin Turner <[EMAIL PROTECTED]> writes:

Robin> Yes, I enjoyed that feature when I was using KLyX. On the
Robin> bright side, LyX 1.2 should have a KDE version, so eventually
Robin> there will be no difference between LyX and KLyX.

For the kde (actually qt2) version, you will have to wait for 1.3.0.
There have been little improvements on this fron for 1.2.0. Actually,
there have been a lot of improvement, but more in infrastructure of
GUI indepndence than in visible results.

Also, having this document manager is rather independent of having a
kde port.

JMarc





Re: KLyX -- am I missing something?

2002-01-04 Thread Robin Turner



Jean-Marc Lasgouttes wrote:

>
>
> For the kde (actually qt2) version, you will have to wait for 1.3.0.
> There have been little improvements on this fron for 1.2.0. Actually,
> there have been a lot of improvement, but more in infrastructure of
> GUI indepndence than in visible results.

1.3.0?  Wah - you mean I'm stuck with those ugly xforms widgets for
another year?  Looking at the GUI compatibility page, I thought the job
was near done.  Oh well.

>
>
> Also, having this document manager is rather independent of having a
> kde port.
>

True, but I would have thought it would make it easier to include if
anyone wanted it hard enough.

Robin




Re: Page numbers: start later \ pagestyle{empty}

2002-01-04 Thread Ben Luey

Maybe this is the same problem as in the pervious post, but adding (in ERT
red) "thispagestyle{empty}" before my title, after my title, before my
first section, after first section, before/after TOC, etc, does not get
rid of the page numbering on that page. Is there something I need in the
preamble to make this work?


Thanks,

Ben



On Fri, 4 Jan 2002, Herbert Voss wrote:

>
>
> Ben Luey wrote:
>
> > I'm using lyx 12 cvs with the Article class, which does page numbering.
> > Currently I have my abstract, a page break, my generated TOC, a page break
> > and then my content, but the page numering starts with the abstract. I
> > want to make the numbering start on page "3", (my content), ie after the
> > TOC. Is there a good way to do this?
> >
> > I can use in the latex preamble:
> >
> > \setcounter{page}{-1}
> >
> > which gets the page numberings right, but displays "-1" and "0" on the
> > first two pages, which I want to supress.
>
> http://www.lyx.org/help/page/page.html#pagenumbers
>
> Herbert
>
>




figure cross-reference and caption

2002-01-04 Thread Ben Luey

Two probably basic questions -- I want to cross-reference my figures.
I'm using lyx 1.2 from cvs. I did insert float, then insert figure. The
lyx tutorial says to put a label at the end of the caption in the figure,
but since the caption is imbeded with the insert image (the caption is in
the dialog box) I don't know how to do that. I've tried putting a label
everywhere (before and after the image, highlight the float-figure, etc,
but the reference number is always "??".

Also, is there a good way to force a new line in my figure caption? Again
since the caption is in the dialog box, I can't use ctrl-enter, or
anything.

Thanks,

Ben




Re: figure cross-reference and caption

2002-01-04 Thread John Levon

, 2002 at 10:30:01AM -0600, Ben Luey wrote:

> Two probably basic questions -- I want to cross-reference my figures.
> I'm using lyx 1.2 from cvs. I did insert float, then insert figure. The
> lyx tutorial says to put a label at the end of the caption in the figure,
> but since the caption is imbeded with the insert image (the caption is in
> the dialog box) I don't know how to do that. I've tried putting a label
> everywhere (before and after the image, highlight the float-figure, etc,
> but the reference number is always "??".

After inserting the figure in the float, press return and change the environment
to "Caption" (right at the bottom of the combo box at the top left)

The dialog box caption is for sub figures ...

regards
john

-- 
"Unless everyone else on earth is attending meetings I haven't been told
about."
- /. paranoia at its finest



Re: Page numbers: start later \ pagestyle{empty}

2002-01-04 Thread Herbert Voss



Ben Luey wrote:

> Maybe this is the same problem as in the pervious post, but adding (in ERT
> red) "thispagestyle{empty}" before my title, after my title, before my
> first section, after first section, before/after TOC, etc, does not get
> rid of the page numbering on that page. Is there something I need in the
> preamble to make this work?


give an example file


Herbert



-- 
http://www.lyx.org/help/




Euro symbol

2002-01-04 Thread Horst Jurkat



Hallo,
despite of several hints I was not successful to 
"post-install" the Euro symbol in my system for Lyx 1.1.6fix3 under SuSe 
7.2. Did anybody successfully install it under this configuration?