我正在尝试编写一组方程式并在“=”符号处对齐。我想将一些方程式的定义拆分为多行,因为它们与大小写有关。
我的问题是分割线不对齐。
\documentclass{article}
\usepackage{amsmath,amssymb}
\begin{document}
\begin{align}
A_t & = a_t + b_t \\
B_t & = \Big\{ \begin{split}
& A, \quad t = 0 \\
& B_{t-1}, \quad t \neq 0
\end{split}
\end{align}
\end{document}
在这个简化的例子中,B 的分裂定义太靠右了
在我理想的输出中,拆分定义应该位于大括号旁边。在 Overleafs 可视化编辑器中运行相同的代码让我可以按我想要的方式对齐,但文档看起来仍然很奇怪。
我还没有找到使用对齐和拆分来实现这一点的方法。如果有人知道如何实现它,或者有其他工具可以实现相同的目标,我将不胜感激。
答案1
如有疑问,请使用aligned
而不是split
\documentclass{article}
\usepackage{amsmath,amssymb}
\begin{document}
\begin{align}
A_t & = a_t + b_t \\
B_t & = \Big\{ \begin{aligned}
& A, \quad t = 0 \\
& B_{t-1}, \quad t \neq 0
\end{aligned}
\end{align}
\end{document}
或者在符合条件的情况下:
\documentclass{article}
\usepackage{amsmath,amssymb}
\begin{document}
\begin{align}
A_t & = a_t + b_t \\
B_t & = \Big\{ \begin{aligned}
& A, \quad& t = 0 \\
& B_{t-1}, & t \neq 0
\end{aligned}
\end{align}
\begin{align}
A_t & = a_t + b_t \\
B_t & = \begin{cases}
A, \quad& t = 0 \\
B_{t-1}, & t \neq 0
\end{cases}
\end{align}
\end{document}