Text Formattingadobe font families

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
jimbo
Posts: 5
Joined: Thu Dec 16, 2010 3:56 pm

adobe font families

Post by jimbo »

Hello all,

I am using the package quotchap, and would like to add more font options. I believe that this is possible by using the font family identifier, such as...

\DeclareOption{times}{\@newfontcmd{\@defaultcnfont}{ptm}}

...would add the adobe times font family 'ptm' to the list of quotchap options called using the word 'times'...

\RequirePackage[times]{quotchap}

Fonts such as the defalt sans serif (computer modern sans serif) with font family name 'cmss' which I believe are not postscript fonts do not seem to work, as they pixellate horribly when made large.

I would like to know which font families are able to be displayed very large without problems - or more simply, is there a new implimentation (adobe?) of cmss which would work in this case? Helvetica is close (font family phv) but the difference between this and the standard latex sans serif is obvious when expanded using quotchap.

Sorry for the long post

Regards

Jimbo
Last edited by jimbo on Thu Dec 23, 2010 1:06 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

adobe font families

Post by frabjous »

Sounds like you're still getting Type-3 versions of the Computer Modern family fonts. That's worrisome. Most even semi-recent incarnations of LaTeX should default to Type-1 versions. Some things to try (in order):

1) Use the fontenc package to specify that you want Type-1 fonts.

Code: Select all

\usepackage[T1]{fontenc}
2) Install the cm-super package if you haven't already.

3) Try the lmodern package, which provides the Latin Modern family. (Almost complete clones of the Computer Modern family but more to update...) Use it with Type-1 encoding:

Code: Select all

\usepackage[T1]{fontenc}
\usepackage{lmodern}
4) Install a newer LaTeX distribution (e.g., TeXlive 2010 or MikTeX 2.9). Obviously, this is a last resort unless you want to do this anyway. (You didn't mention what distribution you were using and how old it was.)
Last edited by frabjous on Thu Dec 16, 2010 9:33 pm, edited 1 time in total.
jimbo
Posts: 5
Joined: Thu Dec 16, 2010 3:56 pm

Re: adobe font families

Post by jimbo »

Thank you for the reply.

I made the changes you suggested, and from the lmodern package found the lmodern sans serif family 'lmss' which is implemented in quotchap using...

\DeclareOption{sansserif}{\@newfontcmd{\@defaultcnfont}{lmss}}

...which works.

I am using Texlive 9.0 as is on the department server. I cannot update to a more modern version (I think this is 2003) but it seems that using 'lmss' works even without...

\usepackage[T1]{fontenc}
\usepackage{lmodern}

...in the preamble. Long post short, this is resolved - thank you. For others with this issue, it seems quotchap (and presumably any other instance where very large text is required) requires the modern font families and that 'computer modern' is not one of them

Regards

Jimbo
Last edited by jimbo on Thu Dec 23, 2010 1:07 am, edited 1 time in total.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

adobe font families

Post by localghost »

Now that the problem is solved, please be so kind and mark the topic accordingly as clearly written in Section 3 of the Board Rules (to be read before posting). Please keep that in mind for the future so that further reminders will not be necessary.


Thorsten
jimbo
Posts: 5
Joined: Thu Dec 16, 2010 3:56 pm

Re: adobe font families

Post by jimbo »

Done
Post Reply