\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\begin{document}
\begin{equation}
\begin{split}
\det\begin{pmatrix}
x^3-x^2+5x-9 && 3x^2+20\sqrt{x}+2e^x\\
x^8+3x^5-6x^3+9&& e^x+\sin x+\cosh x+\tanh x
\end{pmatrix}
\\
=\hfill\frac{f(p,q,x)}{x-2p^2q+p^x+q}
\end{split}
\end{equation}
\end{document}
我的代码中的问题是第二行从页面中间开始。我不知道为什么。我想将所有行与页边距的左边距对齐。
有什么方法可以使所有行都向左对齐。
请帮忙
答案1
我可能会用
\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\begin{document}
\begin{multline}
\det\begin{pmatrix}
x^3-x^2+5x-9 && 3x^2+20\sqrt{x}+2e^x\\
x^8+3x^5-6x^3+9&& e^x+\sin x+\cosh x+\tanh x
\end{pmatrix}\\
=\frac{f(p,q,x)}{x-2p^2q+p^x+q}
\end{multline}
\end{document}
但如果你想让它左对齐
\documentclass[10pt,a4paper,fleqn]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\begin{document}
\begin{equation}
\begin{aligned}
&\det\begin{pmatrix}
x^3-x^2+5x-9 && 3x^2+20\sqrt{x}+2e^x\\
x^8+3x^5-6x^3+9&& e^x+\sin x+\cosh x+\tanh x
\end{pmatrix}\\
&=\frac{f(p,q,x)}{x-2p^2q+p^x+q}
\end{aligned}
\end{equation}
\end{document}
答案2
split
建立两列,一列右对齐,一列左对齐。
看着这个怪物,我认为最好将数字放在底部,从顶部矩阵中删除列间空间以使其适合文本宽度,并在单独的环境中equation
使用嵌套的完成其余操作aligned
。
避免未加修饰\bigg
,查看代码以了解需要什么(l
左边是,r
右边是)。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
\setlength{\arraycolsep}{0pt}
\det\begin{pmatrix}
x-pq-p+3-(q-1)\bigl(\frac{x+2-n}{x-n+2-l}\bigr) & (1-p)\bigl(2+\frac{l}{x-n+2-l}\bigr)\\[1ex]
(1-q)\bigl(2+\frac{l}{x-n+2-l}\bigr) & x-pq-q+3-(p-1)\bigl(\frac{x+2-n}{x-n+2-l}\bigr)
\end{pmatrix}
\end{equation*}
Applying the row operation $R_1\gets R_1-R_2$ on the above we get
\begin{equation}
\begin{aligned}[b]
&=\det\begin{pmatrix}
x-pq-p+q+2 & -x+pq+q-p-2\\[1ex]
(1-q)\bigl(2+\frac{l}{x-n+2-l}\bigr) & x-pq-q+3-(p-1)\bigl(\frac{x+2-n}{x-n+2-l}\bigr)
\end{pmatrix}
\\[2ex]
&=\biggl(x-pq-p+q+2\biggr)\biggl\{x-pq-q+3-(p-1)\biggl(\frac{x+2-n}{x-n+2-l}\biggr)\biggr\}
\\
&\qquad-\biggl\{(-x+pq+q-p-2)(1-q)\biggl(2+\frac{l}{x-n+2-l}\biggr)\biggr\}
\end{aligned}
\end{equation}
\end{document}