[Tex/LaTex] uppercase font for whole document

fonts

Is there in Latex something like Technic Font in Adobe/OpenOffice?
I want basically the whole document in uppercase, incl. the headlines (like those 'Chapter 1') etc. by declaring one package or just something simple for declaration at the beginning. I will go crazy if I have to use \textsc{…} for every single paragraph! (Plus it does not change the headings.)

Example of Technic Font created with Adobe Family below.
enter image description here

..and if I try using uppercase only font, the following thing happens:
enter image description here

It only prints out the capital letters. It does not convert the normal letters into uppercase.

Best Answer

It's quite easy to get as ugly as possible typesetting, not only with MS® Word™, but also with XeLaTeX. Just ride your imagination.

\documentclass{article}
\usepackage{fontspec}
\usepackage{lipsum}

\setmainfont{Alegreya Sans SC}

\begin{document}

\section{A Section Title}

\lipsum[1-2]

Enough!

\end{document}

enter image description here

You don't like Alegreya? Here's a lighter version:

\documentclass{article}
\usepackage{fontspec}
\usepackage{lipsum}

\setmainfont{TeX Gyre Adventor}[Letters=SmallCaps]

\begin{document}

\section{A Section Title}

\lipsum[1-2]

Enough!

\end{document}

enter image description here

Related Question