Tagged Questions
5
votes
2answers
84 views
\uppercase does not work with \IfSubStr?
I'm using \IfSubStr macro of xstring package to decide if user given options contains some letter and if they do I take some actions.
I want case independent test on whether user options contain ...
5
votes
1answer
289 views
Generate labels using xstring and \Makelowercase
I am trying to write a command that allows me to reference a subsection with a generated label.
The idea is that when I declare a step \step{Long Name With Many Uppercase Letters}, the generated ...
5
votes
2answers
171 views
\StrMid and \MakeUppercase problem
What's wrong with this:
\documentclass{minimal}
\usepackage{xstring}
\begin{document}
\newcommand{\cim}{c1095}
\StrMid{\MakeUppercase{\cim}}{1}{1}
\StrMid{\cim}{2}{100}
\end{document}
...