I am trying to rescale a letter in the Display. I tried to use the \scalebox{#}[#]{\mathscr{H}} (\mathscr{H} is the letter I am trying to rescale). But I think that only works for non-maths letters?
There are questions on here about resizing symbols etc, but they are for making them bigger or smaller, I want to make it 'thinner'.
Any help would be appreciated.
MWE:
\documentclass[12pt,a4paper]{book}
\usepackage{geometry}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\newcommand{\H}{\scalebox{0.75}[1]{\mathscr{H}}}
\begin{document}
This is the letter that I am trying to make it work for $\H$.
\end{document}


geometry,inputenc, orbabelare needed, but the packages that define\scaleboxand\mathscrare missing. – Heiko Oberdiek Jul 28 '17 at 19:29