我想用 {a_n} 表示一组向量,后面跟着一个包含两个元素的小列,即集合的大小和 n=1,就像一些书中通常写的那样。我该如何创建该列?我尝试使用 \stackrel{N}{n=1},但它看起来很大。还有其他方法吗?
答案1
您指的是下面这样的东西吗?
\documentclass{article}
\begin{document}
\[
\{a_n\}_{n=1}^{N}
\]
\end{document}
答案2
或许是这个?
\documentclass{article}
\begin{document}
$a_n \big\vert^{N}_{n=1}$
\end{document}
答案3
如果没有 MWE,也许您想要的是这样的?:
\documentclass{article}
\begin{document}
$\left. \right|^{N}_{n=1}$
\end{document}
或者使用a_n
向量:
\documentclass{article}
\begin{document}
$a_n\left.\right|^{N}_{n=1}$
\end{document}