I am trying to define a command that writes the word "FACTORING" in sans serif. I did define the command as follows:
\newcommand{\FACTORING}{\textsf{FACTORING}}
But the when I use the command "FACTORING" does not have any distance to the following letters (see the following small document.) Could you please tell me what I am doing wrong?
\documentclass[a4paper, 11pt, oneside]{book}
\makeatletter
\makeatother
\usepackage[a4paper,left=3cm,right=3cm,top=3cm,bottom=3cm]{geometry}
\usepackage[style=numeric,firstinits,sorting=none]{biblatex}
\usepackage{etoolbox}
\usepackage{fancyhdr}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage{latexsym}
\usepackage{lmodern} % The Font Type
\usepackage{mdframed}
\usepackage{titlesec}
\usepackage[absolute,overlay]{textpos}
\newcommand{\FACTORING}{\textsf{FACTORING}}
\begin{document}
ssssssssssssssss \FACTORING aaaaaa.
\end{document}

ss \FACTORING\ aa. – Sigur Jun 19 '20 at 22:14