Re: koma-script v2 letter

2009-09-08 Thread Jean-Marie Pacquet

Iain Mac Donald a écrit :

I am trying out koma-script v2 for producing letters. I have
my template looking the way I want it with one exception. No matter
what I try everything from salutation onwards is less wide than the
top of the letter. You can see this on the wiki examples page too
http://wiki.lyx.org/Examples/KomaLetter2

I don't want to change the recipient address position as that fits
nicely into a windowed envelope. I would like to expand the other
content so that the left and right is aligned all the way down.

Anyone know how?
  
The figure 6.1 named Schematic of letter paper's pseudo lengths on 
page 170 of the KOMA-Script english manual (scrguien.pdf) is your best 
friend.
You can change firstheadwidth, firstfootwidth and refwidth in the lco 
file and adapt them to your needs.

--
jmp


Re: koma-script v2 letter

2009-09-08 Thread Iain Mac Donald
Hello Jean-Marie,

On Tue, 08 Sep 2009 08:55:19 +0200
Jean-Marie Pacquet j...@pacquet.net wrote:

 The figure 6.1 named Schematic of letter paper's pseudo lengths on 
 page 170 of the KOMA-Script english manual (scrguien.pdf) is your
 best friend.
 You can change firstheadwidth, firstfootwidth and refwidth in the lco 
 file and adapt them to your needs.

Thanks for the reply.

I have scrguien.pdf too (but my version has the schematic on page 185)
and I note on page 201

The simplest rule is as follows: either refhpos is left at null and so
the width and alignment of the reference fields line are left to the
option refline, or refwidth as well as refhpos are set by the user.

Using this info I commented out refline and tried to set refwidth
and refhpos. I edited the LyX template, LaTeX Preamble in the
\KOMAoptions section and added my new info. However, I then get an error
when creating a dvi.

Package scrkbase Error: unknown KOMA option `refwidth'.
and
the same for `refhpos'.

Any further pointers would be appreciated.

Regards,
Iain.


Re: koma-script v2 letter

2009-09-08 Thread Jeremy
On Tuesday 08 September 2009, Iain Mac Donald wrote:
 Hello Jean-Marie,
 
 On Tue, 08 Sep 2009 08:55:19 +0200
 
 Jean-Marie Pacquet j...@pacquet.net wrote:
  The figure 6.1 named Schematic of letter paper's pseudo lengths on
  page 170 of the KOMA-Script english manual (scrguien.pdf) is your
  best friend.
  You can change firstheadwidth, firstfootwidth and refwidth in the lco
  file and adapt them to your needs.
 
 Thanks for the reply.
 
 I have scrguien.pdf too (but my version has the schematic on page 185)
 and I note on page 201
 
 The simplest rule is as follows: either refhpos is left at null and so
 the width and alignment of the reference fields line are left to the
 option refline, or refwidth as well as refhpos are set by the user.
 
 Using this info I commented out refline and tried to set refwidth
 and refhpos. I edited the LyX template, LaTeX Preamble in the
 \KOMAoptions section and added my new info. However, I then get an error
 when creating a dvi.
 
 Package scrkbase Error: unknown KOMA option `refwidth'.
 and
 the same for `refhpos'.
 
 Any further pointers would be appreciated.
 
 Regards,
 Iain.
 


Pseudolengths can only be set in .lco (letter class option) files, e.g.
\ProvidesFile{mylcofile.lco}[]
\...@setplength{refwidth}{6.5in}

Then you need to load the .lco file in your lyx preamble
\LoadLetterOption{mylcofile}
or alternatively if you used the \ProvidesFile{} method
just add myfilelco to your \documentclass[] options

which in lyx is found in

Document - Settings - ClassOptions - Custom


Re: koma-script v2 letter

2009-09-08 Thread Rich Shepard

On Tue, 8 Sep 2009, Jean-Marie Pacquet wrote:


I tried to obtain what you want with my example (ksl2pro).
I had to change this:
1. Replace the line
\...@setplength{refwidth}{0pt}
by these two lines in the NFpro.lco file:
\...@setplength{refhpos}{20mm}
\...@setplength{refwidth}{170mm}
2. Set the margins for the text in Document-Settings-Margins to the same 
value as above (20mm)


  I've not followed this thread, but I've made all the adjustments I need
for my letters in the document preamble. Here's the preamble that I now use:

\date{}
\usepackage{scrpage2}
\pagestyle{scrheadings}
\cfoot[scrplain-centered ]{}
\makeatletter
% horizontal position of the address field
\...@setplength{toaddrhpos}{20.0mm}
% vertical position of the address field
\...@addtoplength{toaddrvpos}{20mm}
\makeatother
\renewcommand*{\raggedsignature}{}
\makeatletter
% vertical position of ref line (date)
\...@setplength{refvpos}{6.5cm}
% space between ref line and letter text
\...@setplength{refaftervskip}{4cm}
% space for signature image
\...@setplength{sigbeforevskip}{0mm}
\makeatother
\firsthead{\centering\usekomavar{fromlogo}\hspace*{8cm}}
\ihead{\usekomavar{toname}\\%
Page \thepage\\\usekomavar{date}}
\KOMAoptions{%
foldmarks=false
}

  I think it's better to modify the preamble than the underlying class
templates.

HTH,

Rich

--
Richard B. Shepard, Ph.D.   |  IntegrityCredibility
Applied Ecosystem Services, Inc.|Innovation
http://www.appl-ecosys.com Voice: 503-667-4517  Fax: 503-667-8863


Re: koma-script v2 letter

2009-09-08 Thread Jean-Marie Pacquet

Iain Mac Donald a écrit :

Hello Jean-Marie,

[...]
I have scrguien.pdf too (but my version has the schematic on page 185)
and I note on page 201
  

Your KOMA-Script version is probably the most recent one (mine is old).

The simplest rule is as follows: either refhpos is left at null and so
the width and alignment of the reference fields line are left to the
option refline, or refwidth as well as refhpos are set by the user.

Using this info I commented out refline and tried to set refwidth
and refhpos. I edited the LyX template, LaTeX Preamble in the
\KOMAoptions section and added my new info. However, I then get an error
when creating a dvi.

Package scrkbase Error: unknown KOMA option `refwidth'.
and
the same for `refhpos'.

Any further pointers would be appreciated.
  

I tried to obtain what you want with my example (ksl2pro).
I had to change this:
1. Replace the line
\...@setplength{refwidth}{0pt}
by these two lines in the NFpro.lco file:
\...@setplength{refhpos}{20mm}
\...@setplength{refwidth}{170mm}
2. Set the margins for the text in Document-Settings-Margins to the 
same value as above (20mm)


--
jmp



Re: koma-script v2 letter

2009-09-08 Thread Iain Mac Donald
Hello all,

Thanks for the replies.

On Tue, 08 Sep 2009 09:24:39 -0400
Jeremy jer...@acjlaw.net wrote:

 Pseudolengths can only be set in .lco (letter class option) files

Aahh, I didn't know that.

Here is what I did:

* Copied DIN.lco to DIN-iain.lco (as that was the lco LyX was using)
* Edited DIN-iain.lco so that
\ProvidesFile{DIN-iain.lco}
...
\...@setplength{refwidth}{50.0mm}
\...@setplength{refhpos}{10.0mm}
all other parts of my lco remained the same as the original
* Edited my LaTeX Preamble so that
\LoadLetterOption{/home/iain/DIN-iain}%
and
%,refline=

Still not working though. 

On Tue, 08 Sep 2009 15:44:32 +0200
Jean-Marie Pacquet j...@pacquet.net wrote:

 2. Set the margins for the text in Document-Settings-Margins to the 
 same value as above (20mm)

Bingo!

Setting the margin manually in Document Settings works but the
\...@setplength doesn't seem to have any effect - for me at least. In
fact, setting the margin on its own is sufficient.

I wasn't able to get ksl2pro working for me. I did try with
ksl2nf but again the \...@setplength did not do anything. I tried a silly
setting just so the difference would be noticeable
\...@setplength{refhpos}{20mm}
\...@setplength{refwidth}{30mm}

Can't be right - is it?

Regards,
Iain.


Re: koma-script v2 letter

2009-09-08 Thread Jean-Marie Pacquet

Iain Mac Donald a écrit :

I am trying out koma-script v2 for producing letters. I have
my template looking the way I want it with one exception. No matter
what I try everything from salutation onwards is less wide than the
top of the letter. You can see this on the wiki examples page too
http://wiki.lyx.org/Examples/KomaLetter2

I don't want to change the recipient address position as that fits
nicely into a windowed envelope. I would like to expand the other
content so that the left and right is aligned all the way down.

Anyone know how?
  
The figure 6.1 named Schematic of letter paper's pseudo lengths on 
page 170 of the KOMA-Script english manual (scrguien.pdf) is your best 
friend.
You can change firstheadwidth, firstfootwidth and refwidth in the lco 
file and adapt them to your needs.

--
jmp


Re: koma-script v2 letter

2009-09-08 Thread Iain Mac Donald
Hello Jean-Marie,

On Tue, 08 Sep 2009 08:55:19 +0200
Jean-Marie Pacquet j...@pacquet.net wrote:

 The figure 6.1 named Schematic of letter paper's pseudo lengths on 
 page 170 of the KOMA-Script english manual (scrguien.pdf) is your
 best friend.
 You can change firstheadwidth, firstfootwidth and refwidth in the lco 
 file and adapt them to your needs.

Thanks for the reply.

I have scrguien.pdf too (but my version has the schematic on page 185)
and I note on page 201

The simplest rule is as follows: either refhpos is left at null and so
the width and alignment of the reference fields line are left to the
option refline, or refwidth as well as refhpos are set by the user.

Using this info I commented out refline and tried to set refwidth
and refhpos. I edited the LyX template, LaTeX Preamble in the
\KOMAoptions section and added my new info. However, I then get an error
when creating a dvi.

Package scrkbase Error: unknown KOMA option `refwidth'.
and
the same for `refhpos'.

Any further pointers would be appreciated.

Regards,
Iain.


Re: koma-script v2 letter

2009-09-08 Thread Jeremy
On Tuesday 08 September 2009, Iain Mac Donald wrote:
 Hello Jean-Marie,
 
 On Tue, 08 Sep 2009 08:55:19 +0200
 
 Jean-Marie Pacquet j...@pacquet.net wrote:
  The figure 6.1 named Schematic of letter paper's pseudo lengths on
  page 170 of the KOMA-Script english manual (scrguien.pdf) is your
  best friend.
  You can change firstheadwidth, firstfootwidth and refwidth in the lco
  file and adapt them to your needs.
 
 Thanks for the reply.
 
 I have scrguien.pdf too (but my version has the schematic on page 185)
 and I note on page 201
 
 The simplest rule is as follows: either refhpos is left at null and so
 the width and alignment of the reference fields line are left to the
 option refline, or refwidth as well as refhpos are set by the user.
 
 Using this info I commented out refline and tried to set refwidth
 and refhpos. I edited the LyX template, LaTeX Preamble in the
 \KOMAoptions section and added my new info. However, I then get an error
 when creating a dvi.
 
 Package scrkbase Error: unknown KOMA option `refwidth'.
 and
 the same for `refhpos'.
 
 Any further pointers would be appreciated.
 
 Regards,
 Iain.
 


Pseudolengths can only be set in .lco (letter class option) files, e.g.
\ProvidesFile{mylcofile.lco}[]
\...@setplength{refwidth}{6.5in}

Then you need to load the .lco file in your lyx preamble
\LoadLetterOption{mylcofile}
or alternatively if you used the \ProvidesFile{} method
just add myfilelco to your \documentclass[] options

which in lyx is found in

Document - Settings - ClassOptions - Custom


Re: koma-script v2 letter

2009-09-08 Thread Rich Shepard

On Tue, 8 Sep 2009, Jean-Marie Pacquet wrote:


I tried to obtain what you want with my example (ksl2pro).
I had to change this:
1. Replace the line
\...@setplength{refwidth}{0pt}
by these two lines in the NFpro.lco file:
\...@setplength{refhpos}{20mm}
\...@setplength{refwidth}{170mm}
2. Set the margins for the text in Document-Settings-Margins to the same 
value as above (20mm)


  I've not followed this thread, but I've made all the adjustments I need
for my letters in the document preamble. Here's the preamble that I now use:

\date{}
\usepackage{scrpage2}
\pagestyle{scrheadings}
\cfoot[scrplain-centered ]{}
\makeatletter
% horizontal position of the address field
\...@setplength{toaddrhpos}{20.0mm}
% vertical position of the address field
\...@addtoplength{toaddrvpos}{20mm}
\makeatother
\renewcommand*{\raggedsignature}{}
\makeatletter
% vertical position of ref line (date)
\...@setplength{refvpos}{6.5cm}
% space between ref line and letter text
\...@setplength{refaftervskip}{4cm}
% space for signature image
\...@setplength{sigbeforevskip}{0mm}
\makeatother
\firsthead{\centering\usekomavar{fromlogo}\hspace*{8cm}}
\ihead{\usekomavar{toname}\\%
Page \thepage\\\usekomavar{date}}
\KOMAoptions{%
foldmarks=false
}

  I think it's better to modify the preamble than the underlying class
templates.

HTH,

Rich

--
Richard B. Shepard, Ph.D.   |  IntegrityCredibility
Applied Ecosystem Services, Inc.|Innovation
http://www.appl-ecosys.com Voice: 503-667-4517  Fax: 503-667-8863


Re: koma-script v2 letter

2009-09-08 Thread Jean-Marie Pacquet

Iain Mac Donald a écrit :

Hello Jean-Marie,

[...]
I have scrguien.pdf too (but my version has the schematic on page 185)
and I note on page 201
  

Your KOMA-Script version is probably the most recent one (mine is old).

The simplest rule is as follows: either refhpos is left at null and so
the width and alignment of the reference fields line are left to the
option refline, or refwidth as well as refhpos are set by the user.

Using this info I commented out refline and tried to set refwidth
and refhpos. I edited the LyX template, LaTeX Preamble in the
\KOMAoptions section and added my new info. However, I then get an error
when creating a dvi.

Package scrkbase Error: unknown KOMA option `refwidth'.
and
the same for `refhpos'.

Any further pointers would be appreciated.
  

I tried to obtain what you want with my example (ksl2pro).
I had to change this:
1. Replace the line
\...@setplength{refwidth}{0pt}
by these two lines in the NFpro.lco file:
\...@setplength{refhpos}{20mm}
\...@setplength{refwidth}{170mm}
2. Set the margins for the text in Document-Settings-Margins to the 
same value as above (20mm)


--
jmp



Re: koma-script v2 letter

2009-09-08 Thread Iain Mac Donald
Hello all,

Thanks for the replies.

On Tue, 08 Sep 2009 09:24:39 -0400
Jeremy jer...@acjlaw.net wrote:

 Pseudolengths can only be set in .lco (letter class option) files

Aahh, I didn't know that.

Here is what I did:

* Copied DIN.lco to DIN-iain.lco (as that was the lco LyX was using)
* Edited DIN-iain.lco so that
\ProvidesFile{DIN-iain.lco}
...
\...@setplength{refwidth}{50.0mm}
\...@setplength{refhpos}{10.0mm}
all other parts of my lco remained the same as the original
* Edited my LaTeX Preamble so that
\LoadLetterOption{/home/iain/DIN-iain}%
and
%,refline=

Still not working though. 

On Tue, 08 Sep 2009 15:44:32 +0200
Jean-Marie Pacquet j...@pacquet.net wrote:

 2. Set the margins for the text in Document-Settings-Margins to the 
 same value as above (20mm)

Bingo!

Setting the margin manually in Document Settings works but the
\...@setplength doesn't seem to have any effect - for me at least. In
fact, setting the margin on its own is sufficient.

I wasn't able to get ksl2pro working for me. I did try with
ksl2nf but again the \...@setplength did not do anything. I tried a silly
setting just so the difference would be noticeable
\...@setplength{refhpos}{20mm}
\...@setplength{refwidth}{30mm}

Can't be right - is it?

Regards,
Iain.


Re: koma-script v2 letter

2009-09-08 Thread Jean-Marie Pacquet

Iain Mac Donald a écrit :

I am trying out koma-script v2 for producing letters. I have
my template looking the way I want it with one exception. No matter
what I try everything from salutation onwards is less wide than the
top of the letter. You can see this on the wiki examples page too
http://wiki.lyx.org/Examples/KomaLetter2

I don't want to change the recipient address position as that fits
nicely into a windowed envelope. I would like to expand the other
content so that the left and right is aligned all the way down.

Anyone know how?
  
The figure 6.1 named "Schematic of letter paper's pseudo lengths" on 
page 170 of the KOMA-Script english manual (scrguien.pdf) is your best 
friend.
You can change firstheadwidth, firstfootwidth and refwidth in the lco 
file and adapt them to your needs.

--
jmp


Re: koma-script v2 letter

2009-09-08 Thread Iain Mac Donald
Hello Jean-Marie,

On Tue, 08 Sep 2009 08:55:19 +0200
Jean-Marie Pacquet  wrote:

> The figure 6.1 named "Schematic of letter paper's pseudo lengths" on 
> page 170 of the KOMA-Script english manual (scrguien.pdf) is your
> best friend.
> You can change firstheadwidth, firstfootwidth and refwidth in the lco 
> file and adapt them to your needs.

Thanks for the reply.

I have scrguien.pdf too (but my version has the schematic on page 185)
and I note on page 201

"The simplest rule is as follows: either refhpos is left at null and so
the width and alignment of the reference fields line are left to the
option refline, or refwidth as well as refhpos are set by the user."

Using this info I commented out refline and tried to set refwidth
and refhpos. I edited the LyX template, LaTeX Preamble in the
\KOMAoptions section and added my new info. However, I then get an error
when creating a dvi.

Package scrkbase Error: unknown KOMA option `refwidth'.
and
the same for `refhpos'.

Any further pointers would be appreciated.

Regards,
Iain.


Re: koma-script v2 letter

2009-09-08 Thread Jeremy
On Tuesday 08 September 2009, Iain Mac Donald wrote:
> Hello Jean-Marie,
> 
> On Tue, 08 Sep 2009 08:55:19 +0200
> 
> Jean-Marie Pacquet  wrote:
> > The figure 6.1 named "Schematic of letter paper's pseudo lengths" on
> > page 170 of the KOMA-Script english manual (scrguien.pdf) is your
> > best friend.
> > You can change firstheadwidth, firstfootwidth and refwidth in the lco
> > file and adapt them to your needs.
> 
> Thanks for the reply.
> 
> I have scrguien.pdf too (but my version has the schematic on page 185)
> and I note on page 201
> 
> "The simplest rule is as follows: either refhpos is left at null and so
> the width and alignment of the reference fields line are left to the
> option refline, or refwidth as well as refhpos are set by the user."
> 
> Using this info I commented out refline and tried to set refwidth
> and refhpos. I edited the LyX template, LaTeX Preamble in the
> \KOMAoptions section and added my new info. However, I then get an error
> when creating a dvi.
> 
> Package scrkbase Error: unknown KOMA option `refwidth'.
> and
> the same for `refhpos'.
> 
> Any further pointers would be appreciated.
> 
> Regards,
> Iain.
> 


Pseudolengths can only be set in .lco (letter class option) files, e.g.
\ProvidesFile{mylcofile.lco}[]
\...@setplength{refwidth}{6.5in}

Then you need to load the .lco file in your lyx preamble
\LoadLetterOption{mylcofile}
or alternatively if you used the \ProvidesFile{} method
just add myfilelco to your \documentclass[] options

which in lyx is found in

Document -> Settings -> ClassOptions -> Custom


Re: koma-script v2 letter

2009-09-08 Thread Rich Shepard

On Tue, 8 Sep 2009, Jean-Marie Pacquet wrote:


I tried to obtain what you want with my example (ksl2pro).
I had to change this:
1. Replace the line
\...@setplength{refwidth}{0pt}
by these two lines in the NFpro.lco file:
\...@setplength{refhpos}{20mm}
\...@setplength{refwidth}{170mm}
2. Set the margins for the text in Document->Settings->Margins to the same 
value as above (20mm)


  I've not followed this thread, but I've made all the adjustments I need
for my letters in the document preamble. Here's the preamble that I now use:

\date{}
\usepackage{scrpage2}
\pagestyle{scrheadings}
\cfoot[scrplain-centered ]{}
\makeatletter
% horizontal position of the address field
\...@setplength{toaddrhpos}{20.0mm}
% vertical position of the address field
\...@addtoplength{toaddrvpos}{20mm}
\makeatother
\renewcommand*{\raggedsignature}{}
\makeatletter
% vertical position of ref line (date)
\...@setplength{refvpos}{6.5cm}
% space between ref line and letter text
\...@setplength{refaftervskip}{4cm}
% space for signature image
\...@setplength{sigbeforevskip}{0mm}
\makeatother
\firsthead{\centering\usekomavar{fromlogo}\hspace*{8cm}}
\ihead{\usekomavar{toname}\\%
Page \thepage\\\usekomavar{date}}
\KOMAoptions{%
foldmarks=false
}

  I think it's better to modify the preamble than the underlying class
templates.

HTH,

Rich

--
Richard B. Shepard, Ph.D.   |  IntegrityCredibility
Applied Ecosystem Services, Inc.|Innovation
 Voice: 503-667-4517  Fax: 503-667-8863


Re: koma-script v2 letter

2009-09-08 Thread Jean-Marie Pacquet

Iain Mac Donald a écrit :

Hello Jean-Marie,

[...]
I have scrguien.pdf too (but my version has the schematic on page 185)
and I note on page 201
  

Your KOMA-Script version is probably the most recent one (mine is old).

"The simplest rule is as follows: either refhpos is left at null and so
the width and alignment of the reference fields line are left to the
option refline, or refwidth as well as refhpos are set by the user."

Using this info I commented out refline and tried to set refwidth
and refhpos. I edited the LyX template, LaTeX Preamble in the
\KOMAoptions section and added my new info. However, I then get an error
when creating a dvi.

Package scrkbase Error: unknown KOMA option `refwidth'.
and
the same for `refhpos'.

Any further pointers would be appreciated.
  

I tried to obtain what you want with my example (ksl2pro).
I had to change this:
1. Replace the line
\...@setplength{refwidth}{0pt}
by these two lines in the NFpro.lco file:
\...@setplength{refhpos}{20mm}
\...@setplength{refwidth}{170mm}
2. Set the margins for the text in Document->Settings->Margins to the 
same value as above (20mm)


--
jmp



Re: koma-script v2 letter

2009-09-08 Thread Iain Mac Donald
Hello all,

Thanks for the replies.

On Tue, 08 Sep 2009 09:24:39 -0400
Jeremy  wrote:

> Pseudolengths can only be set in .lco (letter class option) files

Aahh, I didn't know that.

Here is what I did:

* Copied DIN.lco to DIN-iain.lco (as that was the lco LyX was using)
* Edited DIN-iain.lco so that
\ProvidesFile{DIN-iain.lco}
...
\...@setplength{refwidth}{50.0mm}
\...@setplength{refhpos}{10.0mm}
all other parts of my lco remained the same as the original
* Edited my LaTeX Preamble so that
\LoadLetterOption{/home/iain/DIN-iain}%
and
%,refline=

Still not working though. 

On Tue, 08 Sep 2009 15:44:32 +0200
Jean-Marie Pacquet  wrote:

> 2. Set the margins for the text in Document->Settings->Margins to the 
> same value as above (20mm)

Bingo!

Setting the margin manually in Document Settings works but the
\...@setplength doesn't seem to have any effect - for me at least. In
fact, setting the margin on its own is sufficient.

I wasn't able to get ksl2pro working for me. I did try with
ksl2nf but again the \...@setplength did not do anything. I tried a silly
setting just so the difference would be noticeable
\...@setplength{refhpos}{20mm}
\...@setplength{refwidth}{30mm}

Can't be right - is it?

Regards,
Iain.


koma-script v2 letter

2009-09-07 Thread Iain Mac Donald

I am trying out koma-script v2 for producing letters. I have
my template looking the way I want it with one exception. No matter
what I try everything from salutation onwards is less wide than the
top of the letter. You can see this on the wiki examples page too
http://wiki.lyx.org/Examples/KomaLetter2

I don't want to change the recipient address position as that fits
nicely into a windowed envelope. I would like to expand the other
content so that the left and right is aligned all the way down.

Anyone know how?

Regards,
Iain.

Lyx 1.5.5
koma-script latest version


signature.asc
Description: PGP signature


koma-script v2 letter

2009-09-07 Thread Iain Mac Donald

I am trying out koma-script v2 for producing letters. I have
my template looking the way I want it with one exception. No matter
what I try everything from salutation onwards is less wide than the
top of the letter. You can see this on the wiki examples page too
http://wiki.lyx.org/Examples/KomaLetter2

I don't want to change the recipient address position as that fits
nicely into a windowed envelope. I would like to expand the other
content so that the left and right is aligned all the way down.

Anyone know how?

Regards,
Iain.

Lyx 1.5.5
koma-script latest version


signature.asc
Description: PGP signature


koma-script v2 letter

2009-09-07 Thread Iain Mac Donald

I am trying out koma-script v2 for producing letters. I have
my template looking the way I want it with one exception. No matter
what I try everything from salutation onwards is less wide than the
top of the letter. You can see this on the wiki examples page too
http://wiki.lyx.org/Examples/KomaLetter2

I don't want to change the recipient address position as that fits
nicely into a windowed envelope. I would like to expand the other
content so that the left and right is aligned all the way down.

Anyone know how?

Regards,
Iain.

Lyx 1.5.5
koma-script latest version


signature.asc
Description: PGP signature