子群的内部直积

子群的内部直积

我想写出子群的内部直积。

看起来很像,$$\prod_{i=1}^{n} M_i,$$但是产品符号里面有一个点。

谁能帮我?

答案1

使用来自的代码https://tex.stackexchange.com/a/52673/4427,这里有两种选择。

\documentclass{article}

\makeatletter
\def\moverlay{\mathpalette\mov@rlay}
\def\mov@rlay#1#2{\leavevmode\vtop{%
   \baselineskip\z@skip \lineskiplimit-\maxdimen
   \ialign{\hfil$\m@th#1##$\hfil\cr#2\crcr}}}
\newcommand{\charfusion}[3][\mathord]{
    #1{\ifx#1\mathop\vphantom{#2}\fi
        \mathpalette\mov@rlay{#2\cr#3}
      }
    \ifx#1\mathop\expandafter\displaylimits\fi}
\makeatother

\newcommand{\dirprod}{\charfusion[\mathop]{\prod}{\cdot}}
\newcommand{\dirprodA}{\charfusion[\mathop]{\prod}{\bullet}}

\begin{document}

\[
\dirprod_{i=1}^{n} M_i,
\]
\[
\dirprodA_{i=1}^{n} M_i,
\]

\end{document}

在此处输入图片描述

普通 TeX 需要进行一些细微的改动。

相关内容