[Tex/LaTex] How to include “Bookman Old Style” font as a main font in the Ph.D thesis

fonts

I am unable to figure out simple solution to add "Bookman Old Style" as a main font in my latex document. I have used below line but does not give me required font.

\usepackage{bookman}

Could not find any Simple correct answer for this. Pl. suggest how to do it.

I am using windows, pdflatex.

thank you

Best Answer

The Bookman font does not need XeLaTeX or LuaLaTeX at all, it can be used with LaTeX/PdfLaTeX of course.

\documentclass[10pt]{book}

\usepackage{bookman}
\usepackage{blindtext}



\begin{document}
\Large
\chapter{Bookman font test}

\blindtext[10]

\end{document}

A look into the log or on the output screen during a compilation run shows whether the fonts are included:

enter image description here

enter image description here