可能重复:
将和号下的长数学文本分成不同的行?
我的文档的最小示例。我正在使用重新设计的exists
。
\documentclass{article}
\usepackage{amsfonts}
\usepackage{amsmath}
\let\stdexists\exists
\renewcommand{\exists}{\mathop{\vphantom{\sum}\mathchoice
{\vcenter{\hbox{\huge$\stdexists$}}}
{\vcenter{\hbox{\Large$\stdexists$}}}{\stdexists}{\stdexists}}\displaylimits}
\begin{document}
\begin{equation}
\exists_{j\in S j\neq i}\exists_{n \in \mathbb{N}} {p_{ij}}^{(n)}>0
\end{equation}
\end{document}
此代码给出输出:
我需要的是:
我怎样才能做到这一点?
答案1
使用\substack
命令amsmath 包。
\documentclass{article}
\usepackage{amsfonts}
\usepackage{amsmath}
\let\stdexists\exists
\renewcommand{\exists}{\mathop{\vphantom{\sum}\mathchoice
{\vcenter{\hbox{\huge$\stdexists$}}}
{\vcenter{\hbox{\Large$\stdexists$}}}{\stdexists}{\stdexists}}\displaylimits}
\begin{document}
\begin{equation}
\exists_{\substack{j\in S \\ j\neq i}}\exists_{n \in \mathbb{N}} {p_{ij}}^{(n)}>0
\end{equation}
\end{document}