\documentclass{article}
\usepackage{amsmath}
\usepackage{mathtools}
\begin{document}
\begin{equation}
A=\frac{\splitfrac{a+b+5}{c+d}}{e}
\end{equation}
\end{document}
我如何对齐分子以便“c”从“a”开始?
答案1
这里有一个解决方案,它定义了一个名为的宏\leftfrac
,其作用类似于,\splitfrac
只是它使行左对齐。
\documentclass{article}% or some other suitable document class
%\usepackage{amsmath} % 'amsmath' is loaded automatically by 'mathtools'
\usepackage{mathtools} % for '\splitfrac' macro
\newcommand\leftfrac[2]{%
\begingroup\renewcommand\arraystretch{0.72}
\begin{array}{@{}l@{}} #1\\#2 \end{array}\endgroup}
\begin{document}
\begin{equation}
A=\frac{\splitfrac{a+b+5}{c+d}}{e}
=\frac{ \leftfrac{a+b+5}{c+d}}{e}
\end{equation}
\end{document}