I need a crossed out word in Latex like here:
How to cross out a word in LaTex
But I need to rotate my cross 45 degrees. Whenever I add a rotate=45, I also rotate my word, which is not what I want:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shapes}
\usepackage{rotating}
\newcommand*{\mycancel}[2][draw]{%
\begin{tikzpicture}
\node[cross out,rotate=45,inner sep=0pt,outer sep=0pt, #1]{#2};
\end{tikzpicture}
}
\begin{document}
\mycancel{A}
\end{document}

Rotate doesn't help:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shapes}
\usepackage{rotating}
\newcommand*{\mycancel}[2][draw]{%
\begin{tikzpicture}
\node[cross out,rotate=45,inner sep=0pt,outer sep=0pt, #1]{#2};
\end{tikzpicture}
}
\begin{document}
\mycancel{\begin{rotate}{315}A\end{rotate}}
\end{document}


