I am currently writing a project report, and have come across a strange thing.
While making the title page, when I insert the title,
if I wrote \textbf{\LARGE{Multi-Server Authentication Scheme Using Biometrics}}
the output came as this:
But if I change the code to \LARGE{\textbf{Multi-Server Authentication Scheme Using Biometrics}}, the output looks like this:
Although the above solved my problem, I am curious to know why this happens. The rest of the code needed to fully reproduce this is:
\documentclass[12pt,a4paper]{report}
\begin{document}
\begin{center}
{here goes the above codes for the title}
\end{center}
\end{document}



\LARGE \textbf{Multi-Server Authentication Scheme Using Biometrics}or{\bfseries \LARGE Multi-Server Authentication Scheme Using Biometrics \par}will give you the desired output. For a more in-depth explanation you can have a look here: https://tex.stackexchange.com/a/48743/134144 – leandriis May 11 '19 at 07:54