\documentclass[11pt]{article}
\usepackage{xfrac, array, tabu, multirow, graphicx, setspace, dcolumn, tikz}
\usepackage[fleqn]{mathtools}
%the argument for d specifies the maximum number of decimal places
\usepackage[ngerman]{babel}
\usepackage[applemac]{inputenc}
\begin{document}
\begin{align}
\text{Z}&= \sum\frac{{(\text{y}_\text{i}_\text{z}-\bar{\text{y}}})}{\text{s}_\text{y}\_text{i}}\\
\end{align}
\end{document}
我想降低两个表达式,在本例中是 y(降低 i)和降低 z。提前感谢帮助
答案1
虽然强调双下标不是一个好的做法,但如果您的符号需要它,您可以使用包自定义下标的删除stackengine
,以使其成为您认为最不具视觉冲击力的形式。我创建了宏\doublesub
,其基线删除由可设置的堆栈间隙控制(在下面的示例中显示为 1pt、2pt 和 3pt):
\documentclass{article}
\usepackage{stackengine}
\setstackgap{L}{2pt}
\def\stacktype{L}
\newcommand\doublesub[2]{%
\stackunder{}{$\scriptstyle #1$\stackunder{}{$\scriptstyle #2$}}}
\begin{document}
\setstackgap{L}{1pt}
\[
Z = \sum \frac{y\doublesub{i}{z}-\bar{y}}{s\doublesub{y}{i}}
\]
\setstackgap{L}{2pt}
\[
Z = \sum \frac{y\doublesub{i}{z}-\bar{y}}{s\doublesub{y}{i}}
\]
\setstackgap{L}{3pt}
\[
Z = \sum \frac{y\doublesub{i}{z}-\bar{y}}{s\doublesub{y}{i}}
\]
\end{document}
您还应该考虑双下标的替代方法,例如,采用y_{i(z)}
括号中的术语作为第二个“下标”的符号。