Re: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-06 Thread Helge Hafting

David A. Case wrote:

On Fri, May 02, 2008, snvv wrote:

  

You may try the geometry package. Then you may define the page in all
possible ways



From the users' perspective, this is what happens:

1. an article with Document-Page layout set to US Letter (and Document-Page
Margins is set to default) is likely to come out of pdflatex as A4 (unless,
unlike me, you know enough LaTeX configuration stuff to configure pdflatex to
do something different).

2. However, if you set non-default margins, then the geometry package gets
called, and pdflatex will create a US letter physical page.

To me, this is a bug or deficiency in LyX: if the user selects US Letter
on the page layout selection, LyX should create LaTeX code that does what
the user almost certainly wants: have logical *and* physical pages set to US
Letter.  If there is a real need to allow the user to control both logical
page size and physical page size separately, then maybe a new checkbox could
be added to the paper size section of the Page Layout widget.
  
Please consider filing a bug report about this at bugzilla.lyx.org. That 
way it

won't be forgotten.

Helge Hafting


Re: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-06 Thread Helge Hafting

David A. Case wrote:

On Fri, May 02, 2008, snvv wrote:

  

You may try the geometry package. Then you may define the page in all
possible ways



From the users' perspective, this is what happens:

1. an article with Document-Page layout set to US Letter (and Document-Page
Margins is set to default) is likely to come out of pdflatex as A4 (unless,
unlike me, you know enough LaTeX configuration stuff to configure pdflatex to
do something different).

2. However, if you set non-default margins, then the geometry package gets
called, and pdflatex will create a US letter physical page.

To me, this is a bug or deficiency in LyX: if the user selects US Letter
on the page layout selection, LyX should create LaTeX code that does what
the user almost certainly wants: have logical *and* physical pages set to US
Letter.  If there is a real need to allow the user to control both logical
page size and physical page size separately, then maybe a new checkbox could
be added to the paper size section of the Page Layout widget.
  
Please consider filing a bug report about this at bugzilla.lyx.org. That 
way it

won't be forgotten.

Helge Hafting


Re: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-06 Thread Helge Hafting

David A. Case wrote:

On Fri, May 02, 2008, snvv wrote:

  

You may try the geometry package. Then you may define the page in all
possible ways



From the users' perspective, this is what happens:

1. an article with Document->Page layout set to "US Letter" (and Document->Page
Margins is set to "default") is likely to come out of pdflatex as A4 (unless,
unlike me, you know enough LaTeX configuration stuff to configure pdflatex to
do something different).

2. However, if you set non-default margins, then the geometry package gets
called, and pdflatex will create a "US letter" physical page.

To me, this is a bug or deficiency in LyX: if the user selects "US Letter"
on the page layout selection, LyX should create LaTeX code that does what
the user almost certainly wants: have logical *and* physical pages set to US
Letter.  If there is a real need to allow the user to control both logical
page size and physical page size separately, then maybe a new checkbox could
be added to the "paper size" section of the Page Layout widget.
  
Please consider filing a bug report about this at bugzilla.lyx.org. That 
way it

won't be forgotten.

Helge Hafting


Re: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-02 Thread Daniel Lohmann


On 02.05.2008, at 05:45, adam_taylor wrote:



Folks,

I am a new LyX user, and have a very basic question.  I am using Lyx  
1.5.1

under Ubuntu 7.10.  I believe the TeX system is TeXLive.

I created a new document (of class article), wrote a few lines in  
it, and

then wanted to make a PDF.  I selected View  PDF (pdflatex), and then
looked at the resulting document in Evince.  It seems to have two  
problems

(as least, problems for me).  First, the paper size is A4, and I would
prefer Letter.  Second, it seems to be using bitmap fonts  
(Postscript Type
3, I think), rather than outline fonts.  I tried to fix the A4  
problem by

setting the paper size in Document  Settings... to Letter and then
re-making the PDF, but it still seems to be A4.  I tried the two  
other ways
of producing PDFs, dvipdfm and ps2pdf, and both solve the page size  
problem,

but not the bitmap font problem.  Nevertheless, I like the fact that
pdflatex goes directly from the source LaTeX file to a PDF, so it  
would be

nice to get the page size right with pdflatex...

Does anyone have any suggestions about how to fix these things?



Yeah, I remember this problem - quite confusing.

http://www.mail-archive.com/lyx-users@lists.lyx.org/msg58912.html

Short summary: The document size options in LaTeX (hence LyX) just  
specify the *logical* paper size for which the output should be  
rendered. LaTeX does not deal with *physical* paper sizes, which are  
in the responsibility of the backend driver. Hence, the phyiscal paper  
size has to be passed by some /special commands or magic options to  
pdflatex. (AFAIR pdflatex uses defaults that probably depend on your  
locale settings. I would assume that there is a config file somewhere  
under /etc.)


IIRC, I solved the issue with the help of the hyperref package. I  
guess it was the letterpaper option that let hyperref generate the  
necessary \special commands for pdflatex.



Daniel




Re: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-02 Thread snvv
Hello
You may try the geometry package. Then you may define the page in all possible 
ways. Also, you may try xetex (xelatex) instead of pdftex, if you write 
multilingual or if you like to use all available ttf, otf fonts of your 
system.
sn

On Friday 02 May 2008 06:45:45 adam_taylor wrote:
 Folks,

 I am a new LyX user, and have a very basic question.  I am using Lyx 1.5.1
 under Ubuntu 7.10.  I believe the TeX system is TeXLive.

 I created a new document (of class article), wrote a few lines in it, and
 then wanted to make a PDF.  I selected View  PDF (pdflatex), and then
 looked at the resulting document in Evince.  It seems to have two problems
 (as least, problems for me).  First, the paper size is A4, and I would
 prefer Letter.  Second, it seems to be using bitmap fonts (Postscript Type
 3, I think), rather than outline fonts.  I tried to fix the A4 problem by
 setting the paper size in Document  Settings... to Letter and then
 re-making the PDF, but it still seems to be A4.  I tried the two other ways
 of producing PDFs, dvipdfm and ps2pdf, and both solve the page size
 problem, but not the bitmap font problem.  Nevertheless, I like the fact
 that pdflatex goes directly from the source LaTeX file to a PDF, so it
 would be nice to get the page size right with pdflatex...

 Does anyone have any suggestions about how to fix these things?

 Thanks in advance,
 Adam




Re: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-02 Thread David A. Case
On Fri, May 02, 2008, snvv wrote:

 You may try the geometry package. Then you may define the page in all
 possible ways

From the users' perspective, this is what happens:

1. an article with Document-Page layout set to US Letter (and Document-Page
Margins is set to default) is likely to come out of pdflatex as A4 (unless,
unlike me, you know enough LaTeX configuration stuff to configure pdflatex to
do something different).

2. However, if you set non-default margins, then the geometry package gets
called, and pdflatex will create a US letter physical page.

To me, this is a bug or deficiency in LyX: if the user selects US Letter
on the page layout selection, LyX should create LaTeX code that does what
the user almost certainly wants: have logical *and* physical pages set to US
Letter.  If there is a real need to allow the user to control both logical
page size and physical page size separately, then maybe a new checkbox could
be added to the paper size section of the Page Layout widget.

...dave case


Re: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-02 Thread Rich Shepard

On Fri, 2 May 2008, David A. Case wrote:


1. an article with Document-Page layout set to US Letter (and Document-Page
Margins is set to default) is likely to come out of pdflatex as A4 (unless,
unlike me, you know enough LaTeX configuration stuff to configure pdflatex to
do something different).


  Not for me. If I set the pagesize as letter, it comes out that size
regardless of compiler used.

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: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-02 Thread Paul A. Rubin

Rich Shepard wrote:

On Fri, 2 May 2008, David A. Case wrote:

1. an article with Document-Page layout set to US Letter (and 
Document-Page
Margins is set to default) is likely to come out of pdflatex as A4 
(unless,
unlike me, you know enough LaTeX configuration stuff to configure 
pdflatex to

do something different).


  Not for me. If I set the pagesize as letter, it comes out that size
regardless of compiler used.



Same here, but that may be because I have MiKTeX's default paper size 
set to letter.  When you do as Dave said (select letter size in LyX 
but keep default margins), LyX emits 
\documentclass[letterpaper,english]{article} (give or take the language) 
and, barring some other reason to call it, doesn't load geometry.  If 
you use nondefault margins, LyX adds a call to the geometry package for 
the margins and moves the paper size argument to the geometry call.  I 
vaguely recall a problem with pdflatex ignoring paper size in the 
document options but paying attention to the geometry settings.


Now whether LyX should force a call to geometry just to set the paper 
size is another question.  Does geometry conflict with any other LaTeX 
packages?


/Paul



Re: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-02 Thread Daniel Lohmann


On 02.05.2008, at 05:45, adam_taylor wrote:



Folks,

I am a new LyX user, and have a very basic question.  I am using Lyx  
1.5.1

under Ubuntu 7.10.  I believe the TeX system is TeXLive.

I created a new document (of class article), wrote a few lines in  
it, and

then wanted to make a PDF.  I selected View  PDF (pdflatex), and then
looked at the resulting document in Evince.  It seems to have two  
problems

(as least, problems for me).  First, the paper size is A4, and I would
prefer Letter.  Second, it seems to be using bitmap fonts  
(Postscript Type
3, I think), rather than outline fonts.  I tried to fix the A4  
problem by

setting the paper size in Document  Settings... to Letter and then
re-making the PDF, but it still seems to be A4.  I tried the two  
other ways
of producing PDFs, dvipdfm and ps2pdf, and both solve the page size  
problem,

but not the bitmap font problem.  Nevertheless, I like the fact that
pdflatex goes directly from the source LaTeX file to a PDF, so it  
would be

nice to get the page size right with pdflatex...

Does anyone have any suggestions about how to fix these things?



Yeah, I remember this problem - quite confusing.

http://www.mail-archive.com/lyx-users@lists.lyx.org/msg58912.html

Short summary: The document size options in LaTeX (hence LyX) just  
specify the *logical* paper size for which the output should be  
rendered. LaTeX does not deal with *physical* paper sizes, which are  
in the responsibility of the backend driver. Hence, the phyiscal paper  
size has to be passed by some /special commands or magic options to  
pdflatex. (AFAIR pdflatex uses defaults that probably depend on your  
locale settings. I would assume that there is a config file somewhere  
under /etc.)


IIRC, I solved the issue with the help of the hyperref package. I  
guess it was the letterpaper option that let hyperref generate the  
necessary \special commands for pdflatex.



Daniel




Re: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-02 Thread snvv
Hello
You may try the geometry package. Then you may define the page in all possible 
ways. Also, you may try xetex (xelatex) instead of pdftex, if you write 
multilingual or if you like to use all available ttf, otf fonts of your 
system.
sn

On Friday 02 May 2008 06:45:45 adam_taylor wrote:
 Folks,

 I am a new LyX user, and have a very basic question.  I am using Lyx 1.5.1
 under Ubuntu 7.10.  I believe the TeX system is TeXLive.

 I created a new document (of class article), wrote a few lines in it, and
 then wanted to make a PDF.  I selected View  PDF (pdflatex), and then
 looked at the resulting document in Evince.  It seems to have two problems
 (as least, problems for me).  First, the paper size is A4, and I would
 prefer Letter.  Second, it seems to be using bitmap fonts (Postscript Type
 3, I think), rather than outline fonts.  I tried to fix the A4 problem by
 setting the paper size in Document  Settings... to Letter and then
 re-making the PDF, but it still seems to be A4.  I tried the two other ways
 of producing PDFs, dvipdfm and ps2pdf, and both solve the page size
 problem, but not the bitmap font problem.  Nevertheless, I like the fact
 that pdflatex goes directly from the source LaTeX file to a PDF, so it
 would be nice to get the page size right with pdflatex...

 Does anyone have any suggestions about how to fix these things?

 Thanks in advance,
 Adam




Re: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-02 Thread David A. Case
On Fri, May 02, 2008, snvv wrote:

 You may try the geometry package. Then you may define the page in all
 possible ways

From the users' perspective, this is what happens:

1. an article with Document-Page layout set to US Letter (and Document-Page
Margins is set to default) is likely to come out of pdflatex as A4 (unless,
unlike me, you know enough LaTeX configuration stuff to configure pdflatex to
do something different).

2. However, if you set non-default margins, then the geometry package gets
called, and pdflatex will create a US letter physical page.

To me, this is a bug or deficiency in LyX: if the user selects US Letter
on the page layout selection, LyX should create LaTeX code that does what
the user almost certainly wants: have logical *and* physical pages set to US
Letter.  If there is a real need to allow the user to control both logical
page size and physical page size separately, then maybe a new checkbox could
be added to the paper size section of the Page Layout widget.

...dave case


Re: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-02 Thread Rich Shepard

On Fri, 2 May 2008, David A. Case wrote:


1. an article with Document-Page layout set to US Letter (and Document-Page
Margins is set to default) is likely to come out of pdflatex as A4 (unless,
unlike me, you know enough LaTeX configuration stuff to configure pdflatex to
do something different).


  Not for me. If I set the pagesize as letter, it comes out that size
regardless of compiler used.

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: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-02 Thread Paul A. Rubin

Rich Shepard wrote:

On Fri, 2 May 2008, David A. Case wrote:

1. an article with Document-Page layout set to US Letter (and 
Document-Page
Margins is set to default) is likely to come out of pdflatex as A4 
(unless,
unlike me, you know enough LaTeX configuration stuff to configure 
pdflatex to

do something different).


  Not for me. If I set the pagesize as letter, it comes out that size
regardless of compiler used.



Same here, but that may be because I have MiKTeX's default paper size 
set to letter.  When you do as Dave said (select letter size in LyX 
but keep default margins), LyX emits 
\documentclass[letterpaper,english]{article} (give or take the language) 
and, barring some other reason to call it, doesn't load geometry.  If 
you use nondefault margins, LyX adds a call to the geometry package for 
the margins and moves the paper size argument to the geometry call.  I 
vaguely recall a problem with pdflatex ignoring paper size in the 
document options but paying attention to the geometry settings.


Now whether LyX should force a call to geometry just to set the paper 
size is another question.  Does geometry conflict with any other LaTeX 
packages?


/Paul



Re: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-02 Thread Daniel Lohmann


On 02.05.2008, at 05:45, adam_taylor wrote:



Folks,

I am a new LyX user, and have a very basic question.  I am using Lyx  
1.5.1

under Ubuntu 7.10.  I believe the TeX system is TeXLive.

I created a new document (of class article), wrote a few lines in  
it, and

then wanted to make a PDF.  I selected View > PDF (pdflatex), and then
looked at the resulting document in Evince.  It seems to have two  
problems

(as least, problems for me).  First, the paper size is A4, and I would
prefer Letter.  Second, it seems to be using bitmap fonts  
(Postscript Type
3, I think), rather than outline fonts.  I tried to fix the A4  
problem by

setting the paper size in Document > Settings... to "Letter" and then
re-making the PDF, but it still seems to be A4.  I tried the two  
other ways
of producing PDFs, dvipdfm and ps2pdf, and both solve the page size  
problem,

but not the bitmap font problem.  Nevertheless, I like the fact that
pdflatex goes directly from the source LaTeX file to a PDF, so it  
would be

nice to get the page size right with pdflatex...

Does anyone have any suggestions about how to fix these things?



Yeah, I remember this problem - quite confusing.

http://www.mail-archive.com/lyx-users@lists.lyx.org/msg58912.html

Short summary: The document size options in LaTeX (hence LyX) just  
specify the *logical* paper size for which the output should be  
rendered. LaTeX does not deal with *physical* paper sizes, which are  
in the responsibility of the backend driver. Hence, the phyiscal paper  
size has to be passed by some /special commands or magic options to  
pdflatex. (AFAIR pdflatex uses defaults that probably depend on your  
locale settings. I would assume that there is a config file somewhere  
under /etc.)


IIRC, I solved the issue with the help of the hyperref package. I  
guess it was the "letterpaper" option that let hyperref generate the  
necessary \special commands for pdflatex.



Daniel




Re: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-02 Thread snvv
Hello
You may try the geometry package. Then you may define the page in all possible 
ways. Also, you may try xetex (xelatex) instead of pdftex, if you write 
multilingual or if you like to use all available ttf, otf fonts of your 
system.
sn

On Friday 02 May 2008 06:45:45 adam_taylor wrote:
> Folks,
>
> I am a new LyX user, and have a very basic question.  I am using Lyx 1.5.1
> under Ubuntu 7.10.  I believe the TeX system is TeXLive.
>
> I created a new document (of class article), wrote a few lines in it, and
> then wanted to make a PDF.  I selected View > PDF (pdflatex), and then
> looked at the resulting document in Evince.  It seems to have two problems
> (as least, problems for me).  First, the paper size is A4, and I would
> prefer Letter.  Second, it seems to be using bitmap fonts (Postscript Type
> 3, I think), rather than outline fonts.  I tried to fix the A4 problem by
> setting the paper size in Document > Settings... to "Letter" and then
> re-making the PDF, but it still seems to be A4.  I tried the two other ways
> of producing PDFs, dvipdfm and ps2pdf, and both solve the page size
> problem, but not the bitmap font problem.  Nevertheless, I like the fact
> that pdflatex goes directly from the source LaTeX file to a PDF, so it
> would be nice to get the page size right with pdflatex...
>
> Does anyone have any suggestions about how to fix these things?
>
> Thanks in advance,
> Adam




Re: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-02 Thread David A. Case
On Fri, May 02, 2008, snvv wrote:

> You may try the geometry package. Then you may define the page in all
> possible ways

>From the users' perspective, this is what happens:

1. an article with Document->Page layout set to "US Letter" (and Document->Page
Margins is set to "default") is likely to come out of pdflatex as A4 (unless,
unlike me, you know enough LaTeX configuration stuff to configure pdflatex to
do something different).

2. However, if you set non-default margins, then the geometry package gets
called, and pdflatex will create a "US letter" physical page.

To me, this is a bug or deficiency in LyX: if the user selects "US Letter"
on the page layout selection, LyX should create LaTeX code that does what
the user almost certainly wants: have logical *and* physical pages set to US
Letter.  If there is a real need to allow the user to control both logical
page size and physical page size separately, then maybe a new checkbox could
be added to the "paper size" section of the Page Layout widget.

...dave case


Re: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-02 Thread Rich Shepard

On Fri, 2 May 2008, David A. Case wrote:


1. an article with Document->Page layout set to "US Letter" (and Document->Page
Margins is set to "default") is likely to come out of pdflatex as A4 (unless,
unlike me, you know enough LaTeX configuration stuff to configure pdflatex to
do something different).


  Not for me. If I set the pagesize as letter, it comes out that size
regardless of compiler used.

Rich

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


Re: Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-02 Thread Paul A. Rubin

Rich Shepard wrote:

On Fri, 2 May 2008, David A. Case wrote:

1. an article with Document->Page layout set to "US Letter" (and 
Document->Page
Margins is set to "default") is likely to come out of pdflatex as A4 
(unless,
unlike me, you know enough LaTeX configuration stuff to configure 
pdflatex to

do something different).


  Not for me. If I set the pagesize as letter, it comes out that size
regardless of compiler used.



Same here, but that may be because I have MiKTeX's default paper size 
set to "letter".  When you do as Dave said (select letter size in LyX 
but keep default margins), LyX emits 
\documentclass[letterpaper,english]{article} (give or take the language) 
and, barring some other reason to call it, doesn't load geometry.  If 
you use nondefault margins, LyX adds a call to the geometry package for 
the margins and moves the paper size argument to the geometry call.  I 
vaguely recall a problem with pdflatex ignoring paper size in the 
document options but paying attention to the geometry settings.


Now whether LyX should force a call to geometry just to set the paper 
size is another question.  Does geometry conflict with any other LaTeX 
packages?


/Paul



Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-01 Thread adam_taylor

Folks,

I am a new LyX user, and have a very basic question.  I am using Lyx 1.5.1
under Ubuntu 7.10.  I believe the TeX system is TeXLive.

I created a new document (of class article), wrote a few lines in it, and
then wanted to make a PDF.  I selected View  PDF (pdflatex), and then
looked at the resulting document in Evince.  It seems to have two problems
(as least, problems for me).  First, the paper size is A4, and I would
prefer Letter.  Second, it seems to be using bitmap fonts (Postscript Type
3, I think), rather than outline fonts.  I tried to fix the A4 problem by
setting the paper size in Document  Settings... to Letter and then
re-making the PDF, but it still seems to be A4.  I tried the two other ways
of producing PDFs, dvipdfm and ps2pdf, and both solve the page size problem,
but not the bitmap font problem.  Nevertheless, I like the fact that
pdflatex goes directly from the source LaTeX file to a PDF, so it would be
nice to get the page size right with pdflatex...

Does anyone have any suggestions about how to fix these things?

Thanks in advance,
Adam


-- 
View this message in context: 
http://www.nabble.com/Trying-to-get-pdflatex-to-produce-letter-size-page-with-outline-fonts...-tp16996677p16996677.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-01 Thread adam_taylor

Folks,

I am a new LyX user, and have a very basic question.  I am using Lyx 1.5.1
under Ubuntu 7.10.  I believe the TeX system is TeXLive.

I created a new document (of class article), wrote a few lines in it, and
then wanted to make a PDF.  I selected View  PDF (pdflatex), and then
looked at the resulting document in Evince.  It seems to have two problems
(as least, problems for me).  First, the paper size is A4, and I would
prefer Letter.  Second, it seems to be using bitmap fonts (Postscript Type
3, I think), rather than outline fonts.  I tried to fix the A4 problem by
setting the paper size in Document  Settings... to Letter and then
re-making the PDF, but it still seems to be A4.  I tried the two other ways
of producing PDFs, dvipdfm and ps2pdf, and both solve the page size problem,
but not the bitmap font problem.  Nevertheless, I like the fact that
pdflatex goes directly from the source LaTeX file to a PDF, so it would be
nice to get the page size right with pdflatex...

Does anyone have any suggestions about how to fix these things?

Thanks in advance,
Adam


-- 
View this message in context: 
http://www.nabble.com/Trying-to-get-pdflatex-to-produce-letter-size-page-with-outline-fonts...-tp16996677p16996677.html
Sent from the LyX - Users mailing list archive at Nabble.com.



Trying to get pdflatex to produce letter size page with outline fonts...

2008-05-01 Thread adam_taylor

Folks,

I am a new LyX user, and have a very basic question.  I am using Lyx 1.5.1
under Ubuntu 7.10.  I believe the TeX system is TeXLive.

I created a new document (of class article), wrote a few lines in it, and
then wanted to make a PDF.  I selected View > PDF (pdflatex), and then
looked at the resulting document in Evince.  It seems to have two problems
(as least, problems for me).  First, the paper size is A4, and I would
prefer Letter.  Second, it seems to be using bitmap fonts (Postscript Type
3, I think), rather than outline fonts.  I tried to fix the A4 problem by
setting the paper size in Document > Settings... to "Letter" and then
re-making the PDF, but it still seems to be A4.  I tried the two other ways
of producing PDFs, dvipdfm and ps2pdf, and both solve the page size problem,
but not the bitmap font problem.  Nevertheless, I like the fact that
pdflatex goes directly from the source LaTeX file to a PDF, so it would be
nice to get the page size right with pdflatex...

Does anyone have any suggestions about how to fix these things?

Thanks in advance,
Adam


-- 
View this message in context: 
http://www.nabble.com/Trying-to-get-pdflatex-to-produce-letter-size-page-with-outline-fonts...-tp16996677p16996677.html
Sent from the LyX - Users mailing list archive at Nabble.com.