答案1
一种解决方法是移动后面\setlength{\mathindent}{0pt}
的行\begin{document}
。我在这里添加封装几何图形只是为了演示目的。
\documentclass[fleqn]{amsart}
\usepackage[showframe]{geometry} % for showing actual frame in this example; uncomment this line for your real paper
\setlength{\parindent}{0pt}
\begin{document}
\setlength{\mathindent}{0pt}
\underline{Impedance Z Parameters:}
\[V_1 = z_{11}I_1 + z_{12}I_2\]
\[V_2 = z_{21}I_1 + z_{22}I_2\]
\end{document}
答案2
我建议使用amsmath
和\@mathmargin
代替\mathindent
,参考以下标签:
\documentclass[fleqn]{amsart}
\usepackage{amsmath}
\makeatletter
\def\@mathmargin{0pt}
\makeatother
\begin{document}
\underline{Impedance Z Parameters:}
\[V_1 = z_{11}I_1 + z_{12}I_2\]
\[V_2 = z_{21}I_1 + z_{22}I_2\]
\end{document}