
答案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
and\@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}