5

I want to install two fonts tgchorus and fouriernc into a document. The font tgchorus for content of chapters, section, subsection and fouriernc for remain. I don't know to install. How must I do?

minthao_2011
  • 4,534
  • 7
  • 36
  • 61

1 Answers1

6

You can try the following.

\documentclass[11pt]{book}
\usepackage[english]{babel}
\usepackage{lipsum}
%%
\usepackage{titlesec}
\titleformat{\chapter}[display]
    {\fontfamily{qzc}\selectfont\Huge}
    {\chaptertitlename\ \thechapter:}{0pt}{\huge}
%
\usepackage{fouriernc}
\pagestyle{empty}
\begin{document}

\chapter{These Real Numbers}
\lipsum[1-2]

\end{document}

\fontfamily{qzc}\selectfont chooses "TeX Gyre Chorus" without loading \usepackage{tgchorus}.

enter image description here

But you'll get all sorts of values about the size of the font being requested. I'm not sure you can overcome that.

Speravir
  • 19,491
A.Ellett
  • 50,533
  • I don't understand, before I could do, but now, I can not do. I receive the massage not find font qzt. – minthao_2011 Jun 07 '14 at 23:57
  • How can I make font bigger and bold font for section in this line? \titleformat{\section}{\renewcommand{\rmdefault}{qzc}\normalfont\Large}{\thesection}{1em}{} – minthao_2011 Aug 19 '15 at 04:18