我怎样才能编辑下面的分数,使“x”变得更大?
\documentclass{minimal}
\usepackage{amsmath}
\begin{document}
\(\tfrac{x_{\left(\tfrac{n}{2}\right)} + x_{\left(\tfrac{n}{2} + 1\right)}}{2}\)
\end{document}
答案1
您可以使用\dfrac
来强制 LaTeX 使用全尺寸分数。我还鼓励您去掉括号,甚至在索引中使用分数时使用 (参见第一种情况)n/2
。\frac{n}{2}
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
p = \begin{cases}
\dfrac{x_{n/2} + x_{n/2+1}}{2}, & \text{falls $n$ gerade}\\[1em]
\dfrac{x_{\frac{n}{2}+1} + x_{\frac{n}{2}+2}}{2}, & \text{falls $n$ ungerade}
\end{cases}
\]
\end{document}
得出:
答案2
在某些方面类似于@ttnick 的第一个解决方案,只不过我会把这个\frac{1}{2}
术语放在剩余材料的前面。
您是否同意,置于剩余材料之前的版本\frac{1}{2}
更具可读性?
\documentclass{article}
\usepackage{amsmath} % for 'cases' environment
\begin{document}
\[
\begin{cases}
\frac{1}{2}( x_{n/2} + x_{n/2 + 1}) &\text{falls $n$ gerade,}\\[\jot] % ok
\frac{x_{n/2} + x_{n/2 + 1}}{2} &\text{falls $n$ gerade.} % not quite ok
\end{cases}
\]
\end{document}