While I intend to change the font of only a line in the document using one of the fonts presented in the LaTeX Font Catalogue (https://tug.org/FontCatalogue/mathfonts.html) (for example, concmath: https://tug.org/FontCatalogue/computerconcrete/), but the font of the whole of document will be changed.
I do as follows:
\usepackage{concmath}
\usepackage[T1]{fontenc}
\newenvironment{concmath}{\fontfamily{concmath}\selectfont}{\par}
\begin{document}
The font of this text must be remained as it is by default.
\begin{concmath}
I want to change only the font of this line using one of the fonts in The LaTeX Font Catalogue.
\end{concmath}
The font of this text must be remained as it is by default.
\end{document}
P.S. I am using LNCS as template and TeXstudio as editor.
