Is there a possibility to shear (any) LaTeX text or the output of a mathematical formula as it would be obtained as a result from looking at a different angle/viewport?
I do not mean mere rotating of text, that would not be sufficient.
Is there a possibility to shear (any) LaTeX text or the output of a mathematical formula as it would be obtained as a result from looking at a different angle/viewport?
I do not mean mere rotating of text, that would not be sufficient.
One option:
\documentclass{article}
\usepackage{tikz}
\newcommand\MyText[2][]{%
\tikz\node[#1] {#2};%
}
\begin{document}
\MyText[xslant=1.4]{\Huge Some text}
\par\noindent
\MyText[xslant=0.5,yslant=1.5]{\Huge Some text}
\par\noindent
\MyText[xslant=1,yslant=0.5,rotate=-30]{\Huge Some text}
\end{document}

tikzbased solution, but I am not a frequent user oftikzfeatures, so I dropped it due to thinking it would be to difficult. Most probably, there is no 'pureLaTeX` solution, without graphical bypassing? – Feb 16 '14 at 07:19