[Tex/LaTex] How to change fonts within the sciposter class

fontssciposter

It seems like the font choice is somehow embedded in the document class itself; I've tried choosing fonts the usual way, but with no effect.

Best Answer

This works for me:

\documentclass{sciposter}

\usepackage{libertine}
\usepackage[T1]{fontenc}

\begin{document}
\Huge Hello
\end{document}

The problem might be that you loaded a font package that doesn't provide a sans-serif font, e.g. mathpazo or fourier. In that case you need to add the following to your preamble:

\renewcommand{\familydefault}{\rmdefault}

This makes the serif font the default font. The standard for sciposter is to use the sans-serif font as default.

Related Question