
Ich möchte so etwas wie doppelte Quotienten erhalten, also so etwas wie das hier, G\X/H
wobei X
eine Gruppe ist und G,H
Untergruppen von sind X
. Mit
\sideset{_{G}}{^{X}}{\mathop\backslash}
Ich verstehe G\X
, aber ich habe keine Ahnung, wie ich es bekomme G\X/H
.
Weiß jemand, wie das geht?
Antwort1
Ich glaube, Sie müssen Folgendes nicht verwenden \sideset
(es erfordert einen mathematischen Operator als drittes Argument):
\documentclass{article}
\usepackage{amsmath}
\begin{document}
This is my solution:
\[
_{G}\backslash^{X}/_{H}
\]
This only to show the difference w.r.t. the solution suggested in the comment:
\[
G\backslash X/H
\]
\end{document}