Text Formattinghow to use industrie font

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
renato07
Posts: 12
Joined: Sat Feb 07, 2015 8:37 pm

how to use industrie font

Post by renato07 »

Hi,
I need to use a particular font on my article (industrie).
I don't remember how I've to set it.

Can someone help me to solve this stupid issue?

Thank you

Renato

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
MjK
Posts: 89
Joined: Fri Jan 28, 2022 6:09 pm

how to use industrie font

Post by MjK »

The easiest is, to use either LuaLaTeX or XeLaTeX instead of PDFLaTeX. Then you can use fontspec after installing the font on your computer. If the font is installed as system font, you can load it either by font name, e.g.:

Code: Select all

\documentclass{article}
\usepackage{fontspec}
\setmainfont{TeX Gyre Schola}

\usepackage{mwe}

\begin{document}
\blindtext
\end{document}
or per font file name:

Code: Select all

\documentclass{article}
\usepackage{fontspec}
\setmainfont{TeXGyreScholaX-Regular.otf}

\usepackage{mwe}

\begin{document}
\blindtext
\end{document}
Note: In the examples I've used TeX Gyre Schola instead of your font, because I do not know it nor if it is free and how to get it.

See the manual of package fontspec for more information about loading fonts and setting up font features.
My main topics are KOMA-Script and other questions related to my packages. If I reply to any other topic or if you've not yet added a minimal working example, please do not expect any further response. And please don't forget to tag examples as code.
Post Reply