Re: Pages numbering in the right upper corner

2014-09-23 Thread Wolfgang Engelmann

For Koma script you can use in the preamble
%%Seitenangabe oben rechts page number top right

\usepackage{scrpage2}%%ohne diesen Befehl gehen die folgenden nicht!

\pagestyle{scrheadings} %% auf benutzerdefinierten Stil umschalten

\clearscrheadfoot

\ihead{\headmark}

\ohead{\pagemark} %% Seitenzahl oben mittig


Am 22.09.2014 um 20:33 schrieb Harold Mouras:

Dear Lyx Users,

the journal for which I am writing an article is asking a different page
numbering with page numbers go in the upper right-hand corner, starting
with p. 2 as the Abstract in the manuscript (which is the page 3 of the LyX
document).

How would that be possible ?

Thank you very much in advance,
Best,
Harold





Re: Pages numbering in the right upper corner

2014-09-23 Thread Benedict Holland
You want to use a package called fancyhdr.

This code will put the page number at the bottom left on odd numbered pages
and right on even numbered pages.

\usepackage{fancyhdr}

\fancyhf{} %clears everything

\renewcommand{\headrulewidth}{0pt} %make header line 0 width

\renewcommand{\footrulewidth}{0pt} %make footer line 0 with

\renewcommand*\footnoterule{}


%Note that this is the actual number on the page number not the page number

%because the second page starts at 1. The second page is actually an odd
page

%because it is labeled as 1.

\fancyfoot[LO]{\thepage} %Place the page number on the left for even pages

\fancyfoot[RE]{\thepage} %Place the page number on the right for odd pages



Just as a note, there are many answers to this question if you google
search move page number. Look up the documentation for fancyhdr and make
it to your style. I am unaware of any lyx specific functionality that does
this but the amount of latex code is minimal. Also, place that code in your
preamble.


~Ben

On Tue, Sep 23, 2014 at 5:13 AM, Wolfgang Engelmann 
engelm...@uni-tuebingen.de wrote:

  For Koma script you can use in the preamble
 %%Seitenangabe oben rechts page number top right

 \usepackage{scrpage2}%%ohne diesen Befehl gehen die folgenden nicht!

 \pagestyle{scrheadings} %% auf benutzerdefinierten Stil umschalten

 \clearscrheadfoot

 \ihead{\headmark}

 \ohead{\pagemark} %% Seitenzahl oben mittig


  Am 22.09.2014 um 20:33 schrieb Harold Mouras:

 Dear Lyx Users,

 the journal for which I am writing an article is asking a different page
 numbering with page numbers go in the upper right-hand corner, starting
 with p. 2 as the Abstract in the manuscript (which is the page 3 of the LyX
 document).

 How would that be possible ?

 Thank you very much in advance,
 Best,
 Harold






LyX on PC-BSD?

2014-09-23 Thread Steve Litt
Hi all,

I installed LyX on PC-BSD and it errors out that I don't have
article.cls. I have a feeling that PC-BSD has much fewer depends than
most Linuxes. Is anyone running LyX on PC-BSD, and if so, what tips can
you give me?

Thanks,

SteveT

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



Huge file takes forever to compile, not sure where the problem is

2014-09-23 Thread Jacob Shapiro
So I have this file: 
https://raw.githubusercontent.com/yashkes/Summaries/master/QFT2_Summary.lyx 

When I try to compile it with LyX (2.2 beta or even 2.1) I get after a 
while an error asking if I want to keep running the rendering. I tell 
it several times to keep running but nothing happens.


Could anyone perhaps help me find the problem in the file, or tell 
_how_ to find the problem in the file? 





Re: LyX on PC-BSD?

2014-09-23 Thread Will Parsons
Steve Litt wrote:
 Hi all,

 I installed LyX on PC-BSD and it errors out that I don't have
 article.cls. I have a feeling that PC-BSD has much fewer depends than
 most Linuxes. Is anyone running LyX on PC-BSD, and if so, what tips can
 you give me?

I'm running LyX on standard FreeBSD, so I don't what difference that
may make, but I seem to recall seeing that, and I think what fixed it
was to (re)install print/textlive-full.

-- 
Will



pseudo TAB in lyx

2014-09-23 Thread Renato Pontefice
Hi,
I used Rigt address class,
what I'm looking for, is a kind of Word action, when I write address, in
this way

TO:-Name
ADDR:Addr name
CITY---Paris

I obtain this, using TAB. But LyX (rightly) does not use this

How can I obtain that?
I mean: I need to align, more words in different line. Until now, I found
the way to allign all the line at the same place.

Do I explain my self?

TIA

Renato

Renato


Re: pseudo TAB in lyx

2014-09-23 Thread Richard Heck

On 09/23/2014 04:07 PM, Renato Pontefice wrote:

Hi,
I used Rigt address class,
what I'm looking for, is a kind of Word action, when I write address, 
in this way


TO:-Name
ADDR:Addr name
CITY---Paris

I obtain this, using TAB. But LyX (rightly) does not use this

How can I obtain that?
I mean: I need to align, more words in different line. Until now, I 
found the way to allign all the line at the same place.


Do I explain my self?

TIA

Renato


LaTeX would use the tabbing environment for this. In LyX, I think you 
have to do it with a table.


Richard



Re: Pages numbering in the right upper corner

2014-09-23 Thread Wolfgang Engelmann

For Koma script you can use in the preamble
%%Seitenangabe oben rechts page number top right

\usepackage{scrpage2}%%ohne diesen Befehl gehen die folgenden nicht!

\pagestyle{scrheadings} %% auf benutzerdefinierten Stil umschalten

\clearscrheadfoot

\ihead{\headmark}

\ohead{\pagemark} %% Seitenzahl oben mittig


Am 22.09.2014 um 20:33 schrieb Harold Mouras:

Dear Lyx Users,

the journal for which I am writing an article is asking a different page
numbering with page numbers go in the upper right-hand corner, starting
with p. 2 as the Abstract in the manuscript (which is the page 3 of the LyX
document).

How would that be possible ?

Thank you very much in advance,
Best,
Harold





Re: Pages numbering in the right upper corner

2014-09-23 Thread Benedict Holland
You want to use a package called fancyhdr.

This code will put the page number at the bottom left on odd numbered pages
and right on even numbered pages.

\usepackage{fancyhdr}

\fancyhf{} %clears everything

\renewcommand{\headrulewidth}{0pt} %make header line 0 width

\renewcommand{\footrulewidth}{0pt} %make footer line 0 with

\renewcommand*\footnoterule{}


%Note that this is the actual number on the page number not the page number

%because the second page starts at 1. The second page is actually an odd
page

%because it is labeled as 1.

\fancyfoot[LO]{\thepage} %Place the page number on the left for even pages

\fancyfoot[RE]{\thepage} %Place the page number on the right for odd pages



Just as a note, there are many answers to this question if you google
search move page number. Look up the documentation for fancyhdr and make
it to your style. I am unaware of any lyx specific functionality that does
this but the amount of latex code is minimal. Also, place that code in your
preamble.


~Ben

On Tue, Sep 23, 2014 at 5:13 AM, Wolfgang Engelmann 
engelm...@uni-tuebingen.de wrote:

  For Koma script you can use in the preamble
 %%Seitenangabe oben rechts page number top right

 \usepackage{scrpage2}%%ohne diesen Befehl gehen die folgenden nicht!

 \pagestyle{scrheadings} %% auf benutzerdefinierten Stil umschalten

 \clearscrheadfoot

 \ihead{\headmark}

 \ohead{\pagemark} %% Seitenzahl oben mittig


  Am 22.09.2014 um 20:33 schrieb Harold Mouras:

 Dear Lyx Users,

 the journal for which I am writing an article is asking a different page
 numbering with page numbers go in the upper right-hand corner, starting
 with p. 2 as the Abstract in the manuscript (which is the page 3 of the LyX
 document).

 How would that be possible ?

 Thank you very much in advance,
 Best,
 Harold






LyX on PC-BSD?

2014-09-23 Thread Steve Litt
Hi all,

I installed LyX on PC-BSD and it errors out that I don't have
article.cls. I have a feeling that PC-BSD has much fewer depends than
most Linuxes. Is anyone running LyX on PC-BSD, and if so, what tips can
you give me?

Thanks,

SteveT

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



Huge file takes forever to compile, not sure where the problem is

2014-09-23 Thread Jacob Shapiro
So I have this file: 
https://raw.githubusercontent.com/yashkes/Summaries/master/QFT2_Summary.lyx 

When I try to compile it with LyX (2.2 beta or even 2.1) I get after a 
while an error asking if I want to keep running the rendering. I tell 
it several times to keep running but nothing happens.


Could anyone perhaps help me find the problem in the file, or tell 
_how_ to find the problem in the file? 





Re: LyX on PC-BSD?

2014-09-23 Thread Will Parsons
Steve Litt wrote:
 Hi all,

 I installed LyX on PC-BSD and it errors out that I don't have
 article.cls. I have a feeling that PC-BSD has much fewer depends than
 most Linuxes. Is anyone running LyX on PC-BSD, and if so, what tips can
 you give me?

I'm running LyX on standard FreeBSD, so I don't what difference that
may make, but I seem to recall seeing that, and I think what fixed it
was to (re)install print/textlive-full.

-- 
Will



pseudo TAB in lyx

2014-09-23 Thread Renato Pontefice
Hi,
I used Rigt address class,
what I'm looking for, is a kind of Word action, when I write address, in
this way

TO:-Name
ADDR:Addr name
CITY---Paris

I obtain this, using TAB. But LyX (rightly) does not use this

How can I obtain that?
I mean: I need to align, more words in different line. Until now, I found
the way to allign all the line at the same place.

Do I explain my self?

TIA

Renato

Renato


Re: pseudo TAB in lyx

2014-09-23 Thread Richard Heck

On 09/23/2014 04:07 PM, Renato Pontefice wrote:

Hi,
I used Rigt address class,
what I'm looking for, is a kind of Word action, when I write address, 
in this way


TO:-Name
ADDR:Addr name
CITY---Paris

I obtain this, using TAB. But LyX (rightly) does not use this

How can I obtain that?
I mean: I need to align, more words in different line. Until now, I 
found the way to allign all the line at the same place.


Do I explain my self?

TIA

Renato


LaTeX would use the tabbing environment for this. In LyX, I think you 
have to do it with a table.


Richard



Re: Pages numbering in the right upper corner

2014-09-23 Thread Wolfgang Engelmann

For Koma script you can use in the preamble
%%Seitenangabe oben rechts >>page number top right

\usepackage{scrpage2}%%ohne diesen Befehl gehen die folgenden nicht!

\pagestyle{scrheadings} %% auf benutzerdefinierten Stil umschalten

\clearscrheadfoot

\ihead{\headmark}

\ohead{\pagemark} %% Seitenzahl oben mittig


Am 22.09.2014 um 20:33 schrieb Harold Mouras:

Dear Lyx Users,

the journal for which I am writing an article is asking a different page
numbering with "page numbers go in the upper right-hand corner, starting
with p. 2 as the Abstract in the manuscript (which is the page 3 of the LyX
document).

How would that be possible ?

Thank you very much in advance,
Best,
Harold





Re: Pages numbering in the right upper corner

2014-09-23 Thread Benedict Holland
You want to use a package called fancyhdr.

This code will put the page number at the bottom left on odd numbered pages
and right on even numbered pages.

\usepackage{fancyhdr}

\fancyhf{} %clears everything

\renewcommand{\headrulewidth}{0pt} %make header line 0 width

\renewcommand{\footrulewidth}{0pt} %make footer line 0 with

\renewcommand*\footnoterule{}


%Note that this is the actual number on the page number not the page number

%because the second page starts at 1. The second page is actually an odd
page

%because it is labeled as 1.

\fancyfoot[LO]{\thepage} %Place the page number on the left for even pages

\fancyfoot[RE]{\thepage} %Place the page number on the right for odd pages



Just as a note, there are many answers to this question if you google
search "move page number". Look up the documentation for fancyhdr and make
it to your style. I am unaware of any lyx specific functionality that does
this but the amount of latex code is minimal. Also, place that code in your
preamble.


~Ben

On Tue, Sep 23, 2014 at 5:13 AM, Wolfgang Engelmann <
engelm...@uni-tuebingen.de> wrote:

>  For Koma script you can use in the preamble
> %%Seitenangabe oben rechts >>page number top right
>
> \usepackage{scrpage2}%%ohne diesen Befehl gehen die folgenden nicht!
>
> \pagestyle{scrheadings} %% auf benutzerdefinierten Stil umschalten
>
> \clearscrheadfoot
>
> \ihead{\headmark}
>
> \ohead{\pagemark} %% Seitenzahl oben mittig
>
>
>  Am 22.09.2014 um 20:33 schrieb Harold Mouras:
>
> Dear Lyx Users,
>
> the journal for which I am writing an article is asking a different page
> numbering with "page numbers go in the upper right-hand corner, starting
> with p. 2 as the Abstract in the manuscript (which is the page 3 of the LyX
> document).
>
> How would that be possible ?
>
> Thank you very much in advance,
> Best,
> Harold
>
>
>
>


LyX on PC-BSD?

2014-09-23 Thread Steve Litt
Hi all,

I installed LyX on PC-BSD and it errors out that I don't have
article.cls. I have a feeling that PC-BSD has much fewer depends than
most Linuxes. Is anyone running LyX on PC-BSD, and if so, what tips can
you give me?

Thanks,

SteveT

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



Huge file takes forever to compile, not sure where the problem is

2014-09-23 Thread Jacob Shapiro
So I have this file: 
https://raw.githubusercontent.com/yashkes/Summaries/master/QFT2_Summary.lyx 

When I try to compile it with LyX (2.2 beta or even 2.1) I get after a 
while an error asking if I want to keep running the rendering. I tell 
it several times to keep running but nothing happens.


Could anyone perhaps help me find the problem in the file, or tell 
_how_ to find the problem in the file? 





Re: LyX on PC-BSD?

2014-09-23 Thread Will Parsons
Steve Litt wrote:
> Hi all,
>
> I installed LyX on PC-BSD and it errors out that I don't have
> article.cls. I have a feeling that PC-BSD has much fewer depends than
> most Linuxes. Is anyone running LyX on PC-BSD, and if so, what tips can
> you give me?

I'm running LyX on standard FreeBSD, so I don't what difference that
may make, but I seem to recall seeing that, and I think what fixed it
was to (re)install print/textlive-full.

-- 
Will



pseudo TAB in lyx

2014-09-23 Thread Renato Pontefice
Hi,
I used Rigt address class,
what I'm looking for, is a kind of Word action, when I write address, in
this way

TO:-Name
ADDR:Addr name
CITY---Paris

I obtain this, using TAB. But LyX (rightly) does not use this

How can I obtain that?
I mean: I need to align, more words in different line. Until now, I found
the way to allign all the line at the same place.

Do I explain my self?

TIA

Renato

Renato


Re: pseudo TAB in lyx

2014-09-23 Thread Richard Heck

On 09/23/2014 04:07 PM, Renato Pontefice wrote:

Hi,
I used Rigt address class,
what I'm looking for, is a kind of Word action, when I write address, 
in this way


TO:-Name
ADDR:Addr name
CITY---Paris

I obtain this, using TAB. But LyX (rightly) does not use this

How can I obtain that?
I mean: I need to align, more words in different line. Until now, I 
found the way to allign all the line at the same place.


Do I explain my self?

TIA

Renato


LaTeX would use the tabbing environment for this. In LyX, I think you 
have to do it with a table.


Richard