1

I would like to use this font for LateX MikTeX distribution. How do I go about it ? I have very limited experience with using different fonts or changing fonts.

Is this font available ? if not, I would be very grateful for any other input.

Red
  • 10,181
Tom
  • 31

1 Answers1

2

You can use fonts that are installed in your operating system with XeTeX. The easiest way to load these fonts into LaTeX is with the fontspec package. Here is a minimal document demonstrating this.

\documentclass{article}
\usepackage{fontspec}
\setmainfont[Mapping=tex-text]{Kozuka Gothic Pro L}

\begin{document}
This is some text in Kozuka Gothic Pro.
\end{document}

For more information on fontspec, see its package documentation.

This question has already been asked here.

ChrisS
  • 13,529