请帮助我解决以下问题。
我想写出以下等式
$$\phi(U)_{\substack{\cap\\ \mathbb{R}}}$$
而我的问题是\cap
和\mathbb{R}
没有出现在下 \phi
。
我能怎么做?
答案1
我不知道项目\cap
和\mathbb{R}
应该排版在一起还是一个在另一个之上。我想你可能需要以下两种可能性之一:
该\mathclap
指令让它的参数“突出”到左侧和右侧,\phi
而不会在两侧引入不必要的空格。
\documentclass{article}
\usepackage{mathtools} % for \mathclap and \substack macros
\usepackage{amsfonts} % for \mathbb macro
\begin{document}
\[
\mathop{\phi}_{\mathclap{\cap\mathbb{R}}}(U)
\quad
\mathop{\phi}_{\substack{\cap\\ \mathbb{R}}}(U)
\]
\end{document}
顺便说一句,不要$$
在 LaTeX 文档中使用;而应使用\[
and \]
。
答案2
我不确定你的目标是什么。不过任务很简单:
\documentclass{article}
\usepackage{amsmath,amssymb}
\begin{document}
\[
\underset{\substack{\cap\\\mathbb{R}}}{\phi(U)}
\]
\end{document}
如果您不想减小尺寸,请使用array
:
\documentclass{article}
\usepackage{amsmath,amssymb}
\begin{document}
\[
\begin{array}[t]{@{}c@{}}
\phi(U)\\
\cap\\
\mathbb{R}
\end{array}
\]
\end{document}
答案3
这是您想要实现的输出吗?
\documentclass{amsart}
\begin{document}
\begin{displaymath}
\mathop{\phi(U)}_{\substack{\cap\\ \mathbb{R}}}
\end{displaymath}
\end{document}
您需要制作\phi(U)
一个数学运算符来使限制起作用。
另一个可能更好的解决方案是:
\begin{displaymath}
\underset{\substack{\cap\\ \mathbb{R}}}{\phi(U)}
\end{displaymath}