[Tex/LaTex] Textbf Not working

fonts

I am writing my Master Thesis in latex but I am experiencing some issues.
I am using a custom document class, linked here

The issue I am experiencing is that \textbf and \textit are not working. Unfortunately I do not know where to look and how to start "debugging" the issue. I do not get any errors (some warnings, though).

Could you please help me?

EDIT: an non working example. the problem seems to be the package that is used to define the title style.

    \documentclass{Thesis}

    \usepackage{tgtermes}


    \begin{document}



        abc\textbf{abc}


   \end{document}

Best Answer

Your log-file says

LaTeX Font Info:    No file OT1qtm.fd. on input line 862.

LaTeX then falls back to cmr and so you are missing the bold font. The missing file is from the TeX-Gyre fonts. You will have to install them, or remove the code which change to this font, or add something like \usepackage{mathptmx} in your document to switch to another font.