Is it possible to print a list of all my existing fonts (for quick reference)
in the style of each particular font? In other words, Arial looks like
Arial, Helvetica looks like Helvetica, etc.

Thanks in advance for help with this.

Re: Printing a list of all my fonts by Jay

Jay
Tue Jul 15 11:05:52 PDT 2008

Frizzylee wrote:
> Is it possible to print a list of all my existing fonts (for quick
> reference) in the style of each particular font? In other words,
> Arial looks like Arial, Helvetica looks like Helvetica, etc.
>
> Thanks in advance for help with this.

See http://www.word.mvps.org/FAQs/Formatting/FontSampleGenerator.htm.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.



Re: Printing a list of all my fonts by Reitanos

Reitanos
Tue Jul 15 11:29:13 PDT 2008

Here's a simple macro:

Sub WriteFontList()
For Each fname In FontNames
With Selection
.Font.Name =3D "Tahoma"
.Font.Size =3D 12
.ParagraphFormat.SpaceBefore =3D 6
.TypeText fname
.TypeText ": "
.Font.Size =3D 12
.Font.Name =3D fname
.TypeText "The Quick Brown Fox"
.TypeText Text:=3DChr(13)
End With
Next fname
End Sub

On Jul 15, 1:43=A0pm, Frizzylee <Frizzy...@discussions.microsoft.com>
wrote:
> Is it possible to print a list of all my existing fonts (for quick refere=
nce)
> in the style of each particular font? =A0In other words, Arial looks like
> Arial, Helvetica looks like Helvetica, etc.
>
> Thanks in advance for help with this.


Re: Printing a list of all my fonts by JoAnn

JoAnn
Tue Jul 15 14:49:36 PDT 2008

I use something else but will that tell you what's similar to another font?

--

JoAnn Paules
MVP Microsoft [Publisher]
Tech Editor for "Microsoft Publisher 2007 For Dummies"



"Jay Freedman" <jay.freedman@verizon.net> wrote in message
news:OKQD5Vq5IHA.2544@TK2MSFTNGP04.phx.gbl...
> Frizzylee wrote:
>> Is it possible to print a list of all my existing fonts (for quick
>> reference) in the style of each particular font? In other words,
>> Arial looks like Arial, Helvetica looks like Helvetica, etc.
>>
>> Thanks in advance for help with this.
>
> See http://www.word.mvps.org/FAQs/Formatting/FontSampleGenerator.htm.
>
> --
> Regards,
> Jay Freedman
> Microsoft Word MVP FAQ: http://word.mvps.org
> Email cannot be acknowledged; please post all follow-ups to the newsgroup
> so all may benefit.
>


Re: Printing a list of all my fonts by Jay

Jay
Tue Jul 15 16:51:20 PDT 2008

No, it's similar to the macro posted by Reitanos -- it just prints a sample of
each font.

Anyway, I defy anyone to explain the rule Word uses to decide what fonts are
"similar". ;-)

On Tue, 15 Jul 2008 17:49:36 -0400, "JoAnn Paules" <jl_paules@hotnospammail.com>
wrote:

>I use something else but will that tell you what's similar to another font?
>
>--
>
>JoAnn Paules
>MVP Microsoft [Publisher]
>Tech Editor for "Microsoft Publisher 2007 For Dummies"
>
>
>
>"Jay Freedman" <jay.freedman@verizon.net> wrote in message
>news:OKQD5Vq5IHA.2544@TK2MSFTNGP04.phx.gbl...
>> Frizzylee wrote:
>>> Is it possible to print a list of all my existing fonts (for quick
>>> reference) in the style of each particular font? In other words,
>>> Arial looks like Arial, Helvetica looks like Helvetica, etc.
>>>
>>> Thanks in advance for help with this.
>>
>> See http://www.word.mvps.org/FAQs/Formatting/FontSampleGenerator.htm.
>>
>> --
>> Regards,
>> Jay Freedman
>> Microsoft Word MVP FAQ: http://word.mvps.org
>> Email cannot be acknowledged; please post all follow-ups to the newsgroup
>> so all may benefit.
>>

Re: Printing a list of all my fonts by Buckland

Buckland
Tue Jul 15 18:04:04 PDT 2008

Hi Jay,

Welll, since you 'asked' ;)
it's actually Windows Graphic Device Interface (GDI) rather than Office that determines(?) 'similarity' using Panose mapping :)

http://support.microsoft.com/kb/918791 (search on Panose)

http://www.w3.org/Pringint/steveahn.html (Thumbnail overview)

http://msdn.microsoft.com/en-us/library/ms533998(VS.85).aspx (coding)

Example of how the Similarity lookup works:

http://books.google.com/books?id=-O92IIF1Bj4C&pg=RA9-PA909&lpg=RA9-PA909&ots=SwWLC2cfm7&sig=hEJLl5waOW65cmNh_F5Sg9zGQ74&hl=en

The TextMetric structure used to figure out how to match what you see on screen, on differing devices, to the printing devices,
after determining which font each actually has or can 'look like' it has so that the view and print more or more or less match is
pretty involved <g>.

============
<<"Jay Freedman" <jay.freedman@verizon.net> wrote in message news:6acq74l4h651nidou4tt69ovvpt90ondoi@4ax.com...
No, it's similar to the macro posted by Reitanos -- it just prints a sample of
each font.

Anyway, I defy anyone to explain the rule Word uses to decide what fonts are
"similar". ;-) <<
--

Bob Buckland ?:-)
MS Office System Products MVP

*Courtesy is not expensive and can pay big dividends*



Re: Printing a list of all my fonts by Jay

Jay
Tue Jul 15 18:56:33 PDT 2008

Thanks, Bob. FYI, the link to w3.org doesn't work any more (the page might have
been moved to their archive). The MSDN link was very informative, though
(fortunately I'm not freaked by complicated structures in C++).

From some of the results I've seen, I'll guess that many amateur fonts and even
a fair number of commercial ones contain either erroneous Panose data or none at
all. That experience was the basis for my original comment.

--
Jay

On Tue, 15 Jul 2008 18:04:04 -0700, "Bob Buckland ?:-\)" <75214.226(At
Beautiful Downtown)compuserve.com> wrote:

>Hi Jay,
>
>Welll, since you 'asked' ;)
>it's actually Windows Graphic Device Interface (GDI) rather than Office that determines(?) 'similarity' using Panose mapping :)
>
> http://support.microsoft.com/kb/918791 (search on Panose)
>
> http://www.w3.org/Pringint/steveahn.html (Thumbnail overview)
>
> http://msdn.microsoft.com/en-us/library/ms533998(VS.85).aspx (coding)
>
>Example of how the Similarity lookup works:
>
>http://books.google.com/books?id=-O92IIF1Bj4C&pg=RA9-PA909&lpg=RA9-PA909&ots=SwWLC2cfm7&sig=hEJLl5waOW65cmNh_F5Sg9zGQ74&hl=en
>
>The TextMetric structure used to figure out how to match what you see on screen, on differing devices, to the printing devices,
>after determining which font each actually has or can 'look like' it has so that the view and print more or more or less match is
>pretty involved <g>.
>
>============
> <<"Jay Freedman" <jay.freedman@verizon.net> wrote in message news:6acq74l4h651nidou4tt69ovvpt90ondoi@4ax.com...
>No, it's similar to the macro posted by Reitanos -- it just prints a sample of
>each font.
>
>Anyway, I defy anyone to explain the rule Word uses to decide what fonts are
>"similar". ;-) <<

Re: Printing a list of all my fonts by Buckland

Buckland
Tue Jul 15 21:32:24 PDT 2008

Hi Jay,

When you see all of the things that go on and all the different combinations of devices and outside factors that can be involved
(including the ability to type the name of a non-existant font into Word and have it 'use it' <g>) it's fairly amazing that
everything works as well as it does :)

The link to W3 would have worked if I could type <g> onto computer 'a', what I'm reading on the screen from computer 'b' ;)
Try this one :)
http://www.w3.org/Printing/stevahn.html

==============
<<"Jay Freedman" <jay.freedman@verizon.net> wrote in message news:kskq74tkff18j7sl2la1rm9f843hhjb5fg@4ax.com...
Thanks, Bob. FYI, the link to w3.org doesn't work any more (the page might have
been moved to their archive). The MSDN link was very informative, though
(fortunately I'm not freaked by complicated structures in C++).

From some of the results I've seen, I'll guess that many amateur fonts and even
a fair number of commercial ones contain either erroneous Panose data or none at
all. That experience was the basis for my original comment.

Jay >>
--

Bob Buckland ?:-)
MS Office System Products MVP

*Courtesy is not expensive and can pay big dividends*