How can i make a new command that increases the space in between the letters. I do not want to use the already existing commands like \textsc, \Large or \footnotesize; and if it's possible I prefer a command with an argument ...
\documentclass[a4paper]{memoir}
\usepackage[italian]{babel}
\usepackage[T1]{fontenc}
\usepackage[babel=true,tracking=true]{microtype}
\SetTracking{ encoding = *}{ 400 }
\begin{document}
\textls{this is a test}
\end{document}
Is it possible recreate this setting in microtype with the new command? LetterSpace=40 WordSpace=2
Look at my answer and tell me if the commnet are rigth please. Thanks. whith this configuration i have the default letter spacing in all text and command, so no influence on any part of the document right?
\documentclass[a4paper]{memoir}
\usepackage[tracking=true]{microtype}
\newcommand{\textlsLarge}[1]{{\Large\textls[400]{#1}}}
\begin{document}
\textlsLarge{this is a test} % new spacing command that use the space specified in newcommand (400)
{\Large this is a test} % no influence on the large command
\end{document}

microtypes\textls{<Some text>}? – lockstep Aug 9 '12 at 17:04LetterSpace=40is equal to 400 in microtype? is possible to set alsoWordSpace=in microtype? – FormlessCloud Aug 9 '12 at 17:13