I try to get irony punctuation mark in LaTeX with CMU font. This symbol is in Unicode: ⸮ (U+U+2E2E)
So I search a way to get a correct rendering with CMU of this symbol. But the problem is the emphasis rendering of the irony mark.
As irony punct is just a mirrored interrogation mark, I use the \reflectbox command from graphicx, like in this MWE:
\documentclass{minimal}
\usepackage{graphicx}
\newcommand\irony{\,\reflectbox{?}}
\begin{document}
Roman : Lorem ipsum dolor\irony
Emphasis : \emph{Lorem ipsum dolor\irony}
Bold : \textbf{Lorem ipsum dolor\irony}
\end{document}
But the problem is the emphasis rendering:
The emphasis form of the irony mark is slanted to left, when the text is slanted to right.
When the ideal form is the one with the validation check mark bellow:
So, is it possible to get this rendering when the \irony command is in emphasis environment or command?





[Scale=MatchUppercase]is probably as good as you're going to get for a lot of symbols. – Davislor Jun 15 '18 at 02:25