witharrows 包将方程式左对齐

witharrows 包将方程式左对齐

我正在使用witharrows包来记录我解方程的步骤,如下所示:

    \begin{enumerate}[label=(\alph*)]
    \item
    \begin{flalign*}
    \begin{WithArrows}[format=l, jot=4pt]
    \sin^2x &= 3 \cdot \cos^2x \Arrow[]{$\div \cos^2x$} &\\[4pt]
    \frac{\sin^2x}{\cos^2x} &= 3
    \end{WithArrows}
    \end{flalign*}
    \end{enumerate}

我希望等式左对齐,因此我在最后也设置了一个锚点&

结果居中并且箭头与方程式重叠,我不确定为什么: 在此处输入图片描述

我收到以下错误:

Package witharrows Error: You should use the command \Arrow only in the last(witharrows) {WithArrows}. ^^I\end{flalign*}
Package witharrows Error: Your environment {WithArrows} has 1 columns and

我不明白。如果
能帮我解释一下它的含义以及如何解决它,我将不胜感激。
提前致谢。

编辑: 完整示例: https://pastebin.com/hshSaUra

答案1

也许你想要的是:

在此处输入图片描述

\documentclass{article}

\usepackage{witharrows}
\usepackage{enumitem}
\usepackage{amsmath}

\begin{document}

\begin{enumerate}[label=(\alph*)]
\item
$\begin{WithArrows}[format=l, jot=4pt]
\sin^2x = 3 \cdot \cos^2x \Arrow[]{$\div \cos^2x$} \\[4pt]
\frac{\sin^2x}{\cos^2x} = 3
\end{WithArrows}$
\end{enumerate}

\end{document}

相关内容