Re: Maximum Font Size

2009-08-21 Thread Andre Poenitz
On Thu, Aug 20, 2009 at 05:01:20PM -0500, Les Denham wrote:
 On Thursday 20 August 2009 02:38:08 pm José Matos wrote:
  On Thursday 20 August 2009 16:09:21 Steve Litt wrote:
   Unless of course you have a 64 bit computer.
 
  And the data type used is long. For most of the 64-bit linux the memory
  layout is LP-64 that means that only long and pointer are 64 bits wide.
 
  In case anyone wonders wikipedia has an interesting starting point to read
  about this:
  http://en.wikipedia.org/wiki/LP64
 
   SteveT
 
 So the real question is whether the variable used for the font size is short 
 (16 bits in all common models), int (16 bits in LP32, 32 bits in ILP32 and 
 LP64, and 64 bits in ILP64) or long (32 bits in LP32, 64 bits in LP64 and 
 ILP64).  I have no idea where to look in the source code for this.  It's 
 probably buried in TeX somewhere, but TeX is written in WEB, which in turn is 
 written in either Pascal or C -- I'm not sure.

TeX's integer arithmetic is on all platforms exactly the same (something
hand-made fixed point) That's by design to ensure the same output no
matter where the program runs.

Andre'


Re: Maximum Font Size

2009-08-21 Thread Andre Poenitz
On Thu, Aug 20, 2009 at 05:01:20PM -0500, Les Denham wrote:
 On Thursday 20 August 2009 02:38:08 pm José Matos wrote:
  On Thursday 20 August 2009 16:09:21 Steve Litt wrote:
   Unless of course you have a 64 bit computer.
 
  And the data type used is long. For most of the 64-bit linux the memory
  layout is LP-64 that means that only long and pointer are 64 bits wide.
 
  In case anyone wonders wikipedia has an interesting starting point to read
  about this:
  http://en.wikipedia.org/wiki/LP64
 
   SteveT
 
 So the real question is whether the variable used for the font size is short 
 (16 bits in all common models), int (16 bits in LP32, 32 bits in ILP32 and 
 LP64, and 64 bits in ILP64) or long (32 bits in LP32, 64 bits in LP64 and 
 ILP64).  I have no idea where to look in the source code for this.  It's 
 probably buried in TeX somewhere, but TeX is written in WEB, which in turn is 
 written in either Pascal or C -- I'm not sure.

TeX's integer arithmetic is on all platforms exactly the same (something
hand-made fixed point) That's by design to ensure the same output no
matter where the program runs.

Andre'


Re: Maximum Font Size

2009-08-21 Thread Andre Poenitz
On Thu, Aug 20, 2009 at 05:01:20PM -0500, Les Denham wrote:
> On Thursday 20 August 2009 02:38:08 pm José Matos wrote:
> > On Thursday 20 August 2009 16:09:21 Steve Litt wrote:
> > > Unless of course you have a 64 bit computer.
> >
> > And the data type used is long. For most of the 64-bit linux the memory
> > layout is LP-64 that means that only long and pointer are 64 bits wide.
> >
> > In case anyone wonders wikipedia has an interesting starting point to read
> > about this:
> > http://en.wikipedia.org/wiki/LP64
> >
> > > SteveT
> 
> So the real question is whether the variable used for the font size is short 
> (16 bits in all common models), int (16 bits in LP32, 32 bits in ILP32 and 
> LP64, and 64 bits in ILP64) or long (32 bits in LP32, 64 bits in LP64 and 
> ILP64).  I have no idea where to look in the source code for this.  It's 
> probably buried in TeX somewhere, but TeX is written in WEB, which in turn is 
> written in either Pascal or C -- I'm not sure.

TeX's integer arithmetic is on all platforms exactly the same (something
hand-made fixed point) That's by design to ensure the same output no
matter where the program runs.

Andre'


Re: Maximum Font Size

2009-08-20 Thread Helge Hafting

Rich Shepard wrote:


  Someone local has developed his own solution for preparing and displaying
slides during presentations. He uses a browser for the display and type 
size

of 60pt-120pt. I mentioned that I use the Beamer class with whatever the
default type size is and the results are readable in all room sizes in 
which

I've been.

  But, he asked if LaTeX (or TeX itself) can scale type to 60-120pt and 
have
it look as smooth as smaller sizes. 


I tested 30pt once just for fun - it looked fine.

I believe LaTeX is limited by 32-bit numbers, and fail on distances 
longer than about 6 meters. 120pt is below that. :-)


Helge Hafting




Re: Maximum Font Size

2009-08-20 Thread Rich Shepard

On Thu, 20 Aug 2009, Helge Hafting wrote:


I tested 30pt once just for fun - it looked fine.

I believe LaTeX is limited by 32-bit numbers, and fail on distances longer 
than about 6 meters. 120pt is below that. :-)


Helge,

  Thank you. I passed on your helpful insight.

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: Maximum Font Size

2009-08-20 Thread Steve Litt
On Thursday 20 August 2009 10:00:01 Helge Hafting wrote:

 I tested 30pt once just for fun - it looked fine.

 I believe LaTeX is limited by 32-bit numbers, and fail on distances
 longer than about 6 meters

Unless of course you have a 64 bit computer.

SteveT

Steve Litt
Recession Relief Package
http://www.recession-relief.US
Twitter: http://www.twitter.com/stevelitt




Re: Maximum Font Size

2009-08-20 Thread Les Denham
On Thursday 20 August 2009 10:09:21 am Steve Litt wrote:
 On Thursday 20 August 2009 10:00:01 Helge Hafting wrote:
  I tested 30pt once just for fun - it looked fine.
 
  I believe LaTeX is limited by 32-bit numbers, and fail on distances
  longer than about 6 meters

 Unless of course you have a 64 bit computer.

And compiled the LaTeX executable on that computer.  I assume the limitation 
is the width of a short integer in the compiler.  Most 32-bit programs will 
run on a 64-bit computer (at least they will on the laptop I'm typing this 
on, which is running 64-bit Linux) but that doesn't mean they have 64-bit 
integers.  I compiled LaTeX from source, so larger sizes might work for me, 
but I don't plan to have pages larger than 6m, so it really doesn't matter.

Les




Re: Maximum Font Size

2009-08-20 Thread José Matos
On Thursday 20 August 2009 16:09:21 Steve Litt wrote:
 Unless of course you have a 64 bit computer.

And the data type used is long. For most of the 64-bit linux the memory layout 
is LP-64 that means that only long and pointer are 64 bits wide.

In case anyone wonders wikipedia has an interesting starting point to read 
about this:
http://en.wikipedia.org/wiki/LP64

 SteveT

-- 
José Abílio


Re: Maximum Font Size

2009-08-20 Thread Les Denham
On Thursday 20 August 2009 02:38:08 pm José Matos wrote:
 On Thursday 20 August 2009 16:09:21 Steve Litt wrote:
  Unless of course you have a 64 bit computer.

 And the data type used is long. For most of the 64-bit linux the memory
 layout is LP-64 that means that only long and pointer are 64 bits wide.

 In case anyone wonders wikipedia has an interesting starting point to read
 about this:
 http://en.wikipedia.org/wiki/LP64

  SteveT

So the real question is whether the variable used for the font size is short 
(16 bits in all common models), int (16 bits in LP32, 32 bits in ILP32 and 
LP64, and 64 bits in ILP64) or long (32 bits in LP32, 64 bits in LP64 and 
ILP64).  I have no idea where to look in the source code for this.  It's 
probably buried in TeX somewhere, but TeX is written in WEB, which in turn is 
written in either Pascal or C -- I'm not sure.

But fonts are defined in point sizes, and a metre is 2834 points. So if the 
limit is 6m,  that's 17004, which is roughly 2**14, or 14 bits.  That's not a 
common integer size.  Maybe TeX allows half points by storing the size as 
twice the size in points? But it appears likely that the limit is a 16 bit 
representation.  If the number is a 32 bit signed integer, the limit is over 
10**9, and there is no logic in specifying a font size with that precision 
(that would be a font size of, for example, 10. points).

So the question is whether it is defined as short (which is 16 bits in all 
common systems) or int, which is 32 bits in Linux 64 bit systems. And all of 
this asumes we're using a C compiler.

Les




Re: Maximum Font Size

2009-08-20 Thread Helge Hafting

Rich Shepard wrote:


  Someone local has developed his own solution for preparing and displaying
slides during presentations. He uses a browser for the display and type 
size

of 60pt-120pt. I mentioned that I use the Beamer class with whatever the
default type size is and the results are readable in all room sizes in 
which

I've been.

  But, he asked if LaTeX (or TeX itself) can scale type to 60-120pt and 
have
it look as smooth as smaller sizes. 


I tested 30pt once just for fun - it looked fine.

I believe LaTeX is limited by 32-bit numbers, and fail on distances 
longer than about 6 meters. 120pt is below that. :-)


Helge Hafting




Re: Maximum Font Size

2009-08-20 Thread Rich Shepard

On Thu, 20 Aug 2009, Helge Hafting wrote:


I tested 30pt once just for fun - it looked fine.

I believe LaTeX is limited by 32-bit numbers, and fail on distances longer 
than about 6 meters. 120pt is below that. :-)


Helge,

  Thank you. I passed on your helpful insight.

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: Maximum Font Size

2009-08-20 Thread Steve Litt
On Thursday 20 August 2009 10:00:01 Helge Hafting wrote:

 I tested 30pt once just for fun - it looked fine.

 I believe LaTeX is limited by 32-bit numbers, and fail on distances
 longer than about 6 meters

Unless of course you have a 64 bit computer.

SteveT

Steve Litt
Recession Relief Package
http://www.recession-relief.US
Twitter: http://www.twitter.com/stevelitt




Re: Maximum Font Size

2009-08-20 Thread Les Denham
On Thursday 20 August 2009 10:09:21 am Steve Litt wrote:
 On Thursday 20 August 2009 10:00:01 Helge Hafting wrote:
  I tested 30pt once just for fun - it looked fine.
 
  I believe LaTeX is limited by 32-bit numbers, and fail on distances
  longer than about 6 meters

 Unless of course you have a 64 bit computer.

And compiled the LaTeX executable on that computer.  I assume the limitation 
is the width of a short integer in the compiler.  Most 32-bit programs will 
run on a 64-bit computer (at least they will on the laptop I'm typing this 
on, which is running 64-bit Linux) but that doesn't mean they have 64-bit 
integers.  I compiled LaTeX from source, so larger sizes might work for me, 
but I don't plan to have pages larger than 6m, so it really doesn't matter.

Les




Re: Maximum Font Size

2009-08-20 Thread José Matos
On Thursday 20 August 2009 16:09:21 Steve Litt wrote:
 Unless of course you have a 64 bit computer.

And the data type used is long. For most of the 64-bit linux the memory layout 
is LP-64 that means that only long and pointer are 64 bits wide.

In case anyone wonders wikipedia has an interesting starting point to read 
about this:
http://en.wikipedia.org/wiki/LP64

 SteveT

-- 
José Abílio


Re: Maximum Font Size

2009-08-20 Thread Les Denham
On Thursday 20 August 2009 02:38:08 pm José Matos wrote:
 On Thursday 20 August 2009 16:09:21 Steve Litt wrote:
  Unless of course you have a 64 bit computer.

 And the data type used is long. For most of the 64-bit linux the memory
 layout is LP-64 that means that only long and pointer are 64 bits wide.

 In case anyone wonders wikipedia has an interesting starting point to read
 about this:
 http://en.wikipedia.org/wiki/LP64

  SteveT

So the real question is whether the variable used for the font size is short 
(16 bits in all common models), int (16 bits in LP32, 32 bits in ILP32 and 
LP64, and 64 bits in ILP64) or long (32 bits in LP32, 64 bits in LP64 and 
ILP64).  I have no idea where to look in the source code for this.  It's 
probably buried in TeX somewhere, but TeX is written in WEB, which in turn is 
written in either Pascal or C -- I'm not sure.

But fonts are defined in point sizes, and a metre is 2834 points. So if the 
limit is 6m,  that's 17004, which is roughly 2**14, or 14 bits.  That's not a 
common integer size.  Maybe TeX allows half points by storing the size as 
twice the size in points? But it appears likely that the limit is a 16 bit 
representation.  If the number is a 32 bit signed integer, the limit is over 
10**9, and there is no logic in specifying a font size with that precision 
(that would be a font size of, for example, 10. points).

So the question is whether it is defined as short (which is 16 bits in all 
common systems) or int, which is 32 bits in Linux 64 bit systems. And all of 
this asumes we're using a C compiler.

Les




Re: Maximum Font Size

2009-08-20 Thread Helge Hafting

Rich Shepard wrote:


  Someone local has developed his own solution for preparing and displaying
slides during presentations. He uses a browser for the display and type 
size

of 60pt-120pt. I mentioned that I use the Beamer class with whatever the
default type size is and the results are readable in all room sizes in 
which

I've been.

  But, he asked if LaTeX (or TeX itself) can scale type to 60-120pt and 
have
it look as smooth as smaller sizes. 


I tested 30pt once just for fun - it looked fine.

I believe LaTeX is limited by 32-bit numbers, and fail on distances 
longer than about 6 meters. 120pt is below that. :-)


Helge Hafting




Re: Maximum Font Size

2009-08-20 Thread Rich Shepard

On Thu, 20 Aug 2009, Helge Hafting wrote:


I tested 30pt once just for fun - it looked fine.

I believe LaTeX is limited by 32-bit numbers, and fail on distances longer 
than about 6 meters. 120pt is below that. :-)


Helge,

  Thank you. I passed on your helpful insight.

Rich

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


Re: Maximum Font Size

2009-08-20 Thread Steve Litt
On Thursday 20 August 2009 10:00:01 Helge Hafting wrote:

> I tested 30pt once just for fun - it looked fine.
>
> I believe LaTeX is limited by 32-bit numbers, and fail on distances
> longer than about 6 meters

Unless of course you have a 64 bit computer.

SteveT

Steve Litt
Recession Relief Package
http://www.recession-relief.US
Twitter: http://www.twitter.com/stevelitt




Re: Maximum Font Size

2009-08-20 Thread Les Denham
On Thursday 20 August 2009 10:09:21 am Steve Litt wrote:
> On Thursday 20 August 2009 10:00:01 Helge Hafting wrote:
> > I tested 30pt once just for fun - it looked fine.
> >
> > I believe LaTeX is limited by 32-bit numbers, and fail on distances
> > longer than about 6 meters
>
> Unless of course you have a 64 bit computer.
>
And compiled the LaTeX executable on that computer.  I assume the limitation 
is the width of a short integer in the compiler.  Most 32-bit programs will 
run on a 64-bit computer (at least they will on the laptop I'm typing this 
on, which is running 64-bit Linux) but that doesn't mean they have 64-bit 
integers.  I compiled LaTeX from source, so larger sizes might work for me, 
but I don't plan to have pages larger than 6m, so it really doesn't matter.

Les




Re: Maximum Font Size

2009-08-20 Thread José Matos
On Thursday 20 August 2009 16:09:21 Steve Litt wrote:
> Unless of course you have a 64 bit computer.

And the data type used is long. For most of the 64-bit linux the memory layout 
is LP-64 that means that only long and pointer are 64 bits wide.

In case anyone wonders wikipedia has an interesting starting point to read 
about this:
http://en.wikipedia.org/wiki/LP64

> SteveT

-- 
José Abílio


Re: Maximum Font Size

2009-08-20 Thread Les Denham
On Thursday 20 August 2009 02:38:08 pm José Matos wrote:
> On Thursday 20 August 2009 16:09:21 Steve Litt wrote:
> > Unless of course you have a 64 bit computer.
>
> And the data type used is long. For most of the 64-bit linux the memory
> layout is LP-64 that means that only long and pointer are 64 bits wide.
>
> In case anyone wonders wikipedia has an interesting starting point to read
> about this:
> http://en.wikipedia.org/wiki/LP64
>
> > SteveT

So the real question is whether the variable used for the font size is short 
(16 bits in all common models), int (16 bits in LP32, 32 bits in ILP32 and 
LP64, and 64 bits in ILP64) or long (32 bits in LP32, 64 bits in LP64 and 
ILP64).  I have no idea where to look in the source code for this.  It's 
probably buried in TeX somewhere, but TeX is written in WEB, which in turn is 
written in either Pascal or C -- I'm not sure.

But fonts are defined in point sizes, and a metre is 2834 points. So if the 
limit is 6m,  that's 17004, which is roughly 2**14, or 14 bits.  That's not a 
common integer size.  Maybe TeX allows half points by storing the size as 
twice the size in points? But it appears likely that the limit is a 16 bit 
representation.  If the number is a 32 bit signed integer, the limit is over 
10**9, and there is no logic in specifying a font size with that precision 
(that would be a font size of, for example, 10. points).

So the question is whether it is defined as short (which is 16 bits in all 
common systems) or int, which is 32 bits in Linux 64 bit systems. And all of 
this asumes we're using a C compiler.

Les




Maximum Font Size

2009-08-17 Thread Rich Shepard

  Someone local has developed his own solution for preparing and displaying
slides during presentations. He uses a browser for the display and type size
of 60pt-120pt. I mentioned that I use the Beamer class with whatever the
default type size is and the results are readable in all room sizes in which
I've been.

  But, he asked if LaTeX (or TeX itself) can scale type to 60-120pt and have
it look as smooth as smaller sizes. I've never done this, nor am I sure just
how to go about testing whether it can be done, so I'm asking here. I have a
vague recollection of reading about using LaTeX to prepare posters or
banners, but that was a while ago and I may well be mistaken.

  Could such large type sizes be cleaning rendered by TeX?

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: Maximum Font Size

2009-08-17 Thread Les Denham
On Monday 17 August 2009, Rich Shepard wrote:
  But, he asked if LaTeX (or TeX itself) can scale type to 60-120pt and have
 it look as smooth as smaller sizes. I've never done this, nor am I sure
 just how to go about testing whether it can be done, so I'm asking here. I
 have a vague recollection of reading about using LaTeX to prepare posters
 or banners, but that was a while ago and I may well be mistaken.

    Could such large type sizes be cleaning rendered by TeX?

The attached is not a large font size, but it is a randomly chosen PDF 
generated from LyX, enlarged in Acrobat Reader to 2400%.

Looks clean to me.

I don't see any essential difference between an enlarge version of a small 
font, and a large font.  In fact, I've generated posters very successfully by 
creating them page size, then plotting with a scale factor.

-- 
Les

~~
Please avoid sending me Word or PowerPoint attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html
attachment: LargeFont.png

Re: Maximum Font Size

2009-08-17 Thread Rich Shepard

On Mon, 17 Aug 2009, Les Denham wrote:


The attached is not a large font size, but it is a randomly chosen PDF
generated from LyX, enlarged in Acrobat Reader to 2400%.

Looks clean to me.

I don't see any essential difference between an enlarge version of a small
font, and a large font.  In fact, I've generated posters very successfully by
creating them page size, then plotting with a scale factor.


  Thank you, Les. I've forwarded your message to the fellow who asked the
question. It seems to me that a PostScript font can be scaled to any desired
size since it's an outline rather than bit-mapped.

Much appreciated,

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: Maximum Font Size

2009-08-17 Thread Stefano Franchi
On Monday 17 August 2009 10:38:36 am Rich Shepard wrote:
 On Mon, 17 Aug 2009, Les Denham wrote:
  The attached is not a large font size, but it is a randomly chosen PDF
  generated from LyX, enlarged in Acrobat Reader to 2400%.
 
  Looks clean to me.
 
  I don't see any essential difference between an enlarge version of a
  small font, and a large font.  In fact, I've generated posters very
  successfully by creating them page size, then plotting with a scale
  factor.


All typographers and font designers routinely complain that bigger font   
scaled up font (and viceversa), because the typeface features must be manually 
adjusted to convey the same look in different sizes. However, I doubt that 
considerations of typographic beauty play a a large role when making a poster.

S.

Thank you, Les. I've forwarded your message to the fellow who asked the
 question. It seems to me that a PostScript font can be scaled to any
 desired size since it's an outline rather than bit-mapped.

 Much appreciated,

 Rich

__
Stefano Franchi
Department of Philosophy  Ph:  (979) 862-2211
Texas AM University  Fax: (979) 845-0458
305B Bolton Hall  fran...@philosophy.tamu.edu
College Station, TX 77843-4237


Re: Maximum Font Size

2009-08-17 Thread Rich Shepard

On Mon, 17 Aug 2009, Stefano Franchi wrote:


All typographers and font designers routinely complain that bigger font
 scaled up font (and viceversa), because the typeface features must be
manually adjusted to convey the same look in different sizes. However, I
doubt that considerations of typographic beauty play a a large role when
making a poster.


Stefano,

  What started this is the use of a Web browser for display of presentation
visuals by one of the local computer professionals. He apparently likes to
have only a few words (6, apparently) per slide and in a very large size.
He cannot write the text using OO.o and have the resulting huge text look
smooth at those sizes. I suggested he consider using the beamer class in
LyX/LaTeX, but he is interested only in generating anti-aliased huge
characters for his browser-based presentation. I think that as long at the
edges look smooth he'll be happy.

Thanks,

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


Maximum Font Size

2009-08-17 Thread Rich Shepard

  Someone local has developed his own solution for preparing and displaying
slides during presentations. He uses a browser for the display and type size
of 60pt-120pt. I mentioned that I use the Beamer class with whatever the
default type size is and the results are readable in all room sizes in which
I've been.

  But, he asked if LaTeX (or TeX itself) can scale type to 60-120pt and have
it look as smooth as smaller sizes. I've never done this, nor am I sure just
how to go about testing whether it can be done, so I'm asking here. I have a
vague recollection of reading about using LaTeX to prepare posters or
banners, but that was a while ago and I may well be mistaken.

  Could such large type sizes be cleaning rendered by TeX?

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: Maximum Font Size

2009-08-17 Thread Les Denham
On Monday 17 August 2009, Rich Shepard wrote:
  But, he asked if LaTeX (or TeX itself) can scale type to 60-120pt and have
 it look as smooth as smaller sizes. I've never done this, nor am I sure
 just how to go about testing whether it can be done, so I'm asking here. I
 have a vague recollection of reading about using LaTeX to prepare posters
 or banners, but that was a while ago and I may well be mistaken.

    Could such large type sizes be cleaning rendered by TeX?

The attached is not a large font size, but it is a randomly chosen PDF 
generated from LyX, enlarged in Acrobat Reader to 2400%.

Looks clean to me.

I don't see any essential difference between an enlarge version of a small 
font, and a large font.  In fact, I've generated posters very successfully by 
creating them page size, then plotting with a scale factor.

-- 
Les

~~
Please avoid sending me Word or PowerPoint attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html
attachment: LargeFont.png

Re: Maximum Font Size

2009-08-17 Thread Rich Shepard

On Mon, 17 Aug 2009, Les Denham wrote:


The attached is not a large font size, but it is a randomly chosen PDF
generated from LyX, enlarged in Acrobat Reader to 2400%.

Looks clean to me.

I don't see any essential difference between an enlarge version of a small
font, and a large font.  In fact, I've generated posters very successfully by
creating them page size, then plotting with a scale factor.


  Thank you, Les. I've forwarded your message to the fellow who asked the
question. It seems to me that a PostScript font can be scaled to any desired
size since it's an outline rather than bit-mapped.

Much appreciated,

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: Maximum Font Size

2009-08-17 Thread Stefano Franchi
On Monday 17 August 2009 10:38:36 am Rich Shepard wrote:
 On Mon, 17 Aug 2009, Les Denham wrote:
  The attached is not a large font size, but it is a randomly chosen PDF
  generated from LyX, enlarged in Acrobat Reader to 2400%.
 
  Looks clean to me.
 
  I don't see any essential difference between an enlarge version of a
  small font, and a large font.  In fact, I've generated posters very
  successfully by creating them page size, then plotting with a scale
  factor.


All typographers and font designers routinely complain that bigger font   
scaled up font (and viceversa), because the typeface features must be manually 
adjusted to convey the same look in different sizes. However, I doubt that 
considerations of typographic beauty play a a large role when making a poster.

S.

Thank you, Les. I've forwarded your message to the fellow who asked the
 question. It seems to me that a PostScript font can be scaled to any
 desired size since it's an outline rather than bit-mapped.

 Much appreciated,

 Rich

__
Stefano Franchi
Department of Philosophy  Ph:  (979) 862-2211
Texas AM University  Fax: (979) 845-0458
305B Bolton Hall  fran...@philosophy.tamu.edu
College Station, TX 77843-4237


Re: Maximum Font Size

2009-08-17 Thread Rich Shepard

On Mon, 17 Aug 2009, Stefano Franchi wrote:


All typographers and font designers routinely complain that bigger font
 scaled up font (and viceversa), because the typeface features must be
manually adjusted to convey the same look in different sizes. However, I
doubt that considerations of typographic beauty play a a large role when
making a poster.


Stefano,

  What started this is the use of a Web browser for display of presentation
visuals by one of the local computer professionals. He apparently likes to
have only a few words (6, apparently) per slide and in a very large size.
He cannot write the text using OO.o and have the resulting huge text look
smooth at those sizes. I suggested he consider using the beamer class in
LyX/LaTeX, but he is interested only in generating anti-aliased huge
characters for his browser-based presentation. I think that as long at the
edges look smooth he'll be happy.

Thanks,

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


Maximum Font Size

2009-08-17 Thread Rich Shepard

  Someone local has developed his own solution for preparing and displaying
slides during presentations. He uses a browser for the display and type size
of 60pt-120pt. I mentioned that I use the Beamer class with whatever the
default type size is and the results are readable in all room sizes in which
I've been.

  But, he asked if LaTeX (or TeX itself) can scale type to 60-120pt and have
it look as smooth as smaller sizes. I've never done this, nor am I sure just
how to go about testing whether it can be done, so I'm asking here. I have a
vague recollection of reading about using LaTeX to prepare posters or
banners, but that was a while ago and I may well be mistaken.

  Could such large type sizes be cleaning rendered by TeX?

Rich

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


Re: Maximum Font Size

2009-08-17 Thread Les Denham
On Monday 17 August 2009, Rich Shepard wrote:
>  But, he asked if LaTeX (or TeX itself) can scale type to 60-120pt and have
> it look as smooth as smaller sizes. I've never done this, nor am I sure
> just how to go about testing whether it can be done, so I'm asking here. I
> have a vague recollection of reading about using LaTeX to prepare posters
> or banners, but that was a while ago and I may well be mistaken.
>
>    Could such large type sizes be cleaning rendered by TeX?

The attached is not a large font size, but it is a randomly chosen PDF 
generated from LyX, enlarged in Acrobat Reader to 2400%.

Looks clean to me.

I don't see any essential difference between an enlarge version of a small 
font, and a large font.  In fact, I've generated posters very successfully by 
creating them page size, then plotting with a scale factor.

-- 
Les

~~
Please avoid sending me Word or PowerPoint attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html
<>

Re: Maximum Font Size

2009-08-17 Thread Rich Shepard

On Mon, 17 Aug 2009, Les Denham wrote:


The attached is not a large font size, but it is a randomly chosen PDF
generated from LyX, enlarged in Acrobat Reader to 2400%.

Looks clean to me.

I don't see any essential difference between an enlarge version of a small
font, and a large font.  In fact, I've generated posters very successfully by
creating them page size, then plotting with a scale factor.


  Thank you, Les. I've forwarded your message to the fellow who asked the
question. It seems to me that a PostScript font can be scaled to any desired
size since it's an outline rather than bit-mapped.

Much appreciated,

Rich

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


Re: Maximum Font Size

2009-08-17 Thread Stefano Franchi
On Monday 17 August 2009 10:38:36 am Rich Shepard wrote:
> On Mon, 17 Aug 2009, Les Denham wrote:
> > The attached is not a large font size, but it is a randomly chosen PDF
> > generated from LyX, enlarged in Acrobat Reader to 2400%.
> >
> > Looks clean to me.
> >
> > I don't see any essential difference between an enlarge version of a
> > small font, and a large font.  In fact, I've generated posters very
> > successfully by creating them page size, then plotting with a scale
> > factor.
>

All typographers and font designers routinely complain that "bigger font" <>  
scaled up font (and viceversa), because the typeface features must be manually 
adjusted to convey the same look in different sizes. However, I doubt that 
considerations of typographic beauty play a a large role when making a poster.

S.

>Thank you, Les. I've forwarded your message to the fellow who asked the
> question. It seems to me that a PostScript font can be scaled to any
> desired size since it's an outline rather than bit-mapped.
>
> Much appreciated,
>
> Rich

__
Stefano Franchi
Department of Philosophy  Ph:  (979) 862-2211
Texas A University  Fax: (979) 845-0458
305B Bolton Hall  fran...@philosophy.tamu.edu
College Station, TX 77843-4237


Re: Maximum Font Size

2009-08-17 Thread Rich Shepard

On Mon, 17 Aug 2009, Stefano Franchi wrote:


All typographers and font designers routinely complain that "bigger font"
<> scaled up font (and viceversa), because the typeface features must be
manually adjusted to convey the same look in different sizes. However, I
doubt that considerations of typographic beauty play a a large role when
making a poster.


Stefano,

  What started this is the use of a Web browser for display of presentation
visuals by one of the local computer professionals. He apparently likes to
have only a few words (<6, apparently) per slide and in a very large size.
He cannot write the text using OO.o and have the resulting huge text look
smooth at those sizes. I suggested he consider using the beamer class in
LyX/LaTeX, but he is interested only in generating anti-aliased huge
characters for his browser-based presentation. I think that as long at the
edges look smooth he'll be happy.

Thanks,

Rich

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