[Tex/LaTex] How to use gothic font as the initial font

fonts

I know

\textgt{sometext}

gives gothic font.

But I have to only use gothic font, so I do not want to write \textgt for every sentence.

So I decided to set inital font as gothic, but I don't know how to do this.

Best Answer

Using special font packages this can be done with special commands such as \gothfamily or egothfamily etc. The precise command depends on the font and the package and if XeLaTeX/LuaTeX or PDFLaTeX is used.

See bookhand fonts for more examples on those kind of fonts.

\documentclass[12pt]{article}
\usepackage{egothic}%
\usepackage{pgothic}%
\usepackage{yfonts}%
\usepackage{blindtext}

\begin{document}

\gothfamily
\blindtext

\egothfamily
\blindtext

\pgothfamily
\blindtext

\end{document}

enter image description here