I am trying to write xor difference which is a Delta character with a XOR as a superscript.
I did it the simplest way as:
Code: Select all
$\Delta^{\oplus}$
Code: Select all
$\Delta^{\oplus}$
Code: Select all
\[
\Delta\!\!^{\scriptscriptstyle\oplus}
\]
Code: Select all
\documentclass{article}
\newcommand*{\xordiff}{%
\Delta\!^{\scriptscriptstyle\oplus}
}
\begin{document}
\[
\xordiff
\]
\end{document}