我怎样才能将数组进一步左移?

我怎样才能将数组进一步左移?

我想将数组向左移动约 3 或 4 厘米。了解如何将其对齐到页面左侧也很有用。

代码如下:

\documentclass{article}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
    \section*{Question 10}
    \begin{figure}[h!]
        \includegraphics[width=\linewidth]{"D:/.../question 10".png}
    \end{figure}
    Let $K\hat{P}L = x$ and $K\hat{Q}M = y$. Required to prove: $\triangle KPL ||| \triangle KMQ$.
    \linebreak
    \[ \begin{array}{rll}
        & O\hat{M}Q=y & (\text{isoc.} \triangle, OQ=OM)\\
        \Rightarrow \ & P\hat{O}M = 2y & (\text{ext.} \angle \triangle)\\
        \Rightarrow \ & \text{reflex} \angle P\hat{O}M =360^{\circ}-2y & (\angle \text{'s around a point})\\
        \Rightarrow \ & 2P\hat{L}M = 360^{\circ}-2y & (\angle \text{at cntr}= \times 2)\\
        \Rightarrow \ & P\hat{L}M = 180^{\circ}-y\\
        \Rightarrow \ & K\hat{L}P = y & (\angle \text{'s on st. line})\\
    \end{array} \]
    So, in $\triangle KPL$ and $\triangle KMQ$
    \[ \begin{array}{rll} 
        1. & \hat{K} \text{ is common}\\
        2. & K\hat{L}P=y=K\hat{Q}M\\
        \vspace{4mm}
        \therefore & \triangle KPL ||| \triangle KMQ & (A.A.)
    \end{array} \]
\end{document}

我想将第二个数组进一步向左对齐。

该文件如下所示: LaTeX 格式

其次,该命令似乎\vspace{2mm}不起作用。我怎样才能在最后两行之间留出更多空间?

第三,“让”字和“所以”字为什么不对齐?

答案1

您可以使用导弹flalign*将方程式左对齐。

\begin{flalign*}
& equation &
\end{flalign*}

&您可以使用该方法本身来对齐各个部分flalign*,但我将其留作练习。

您可以使用以下方式添加垂直空间\\[4mm]

Let缩进,因此不与 对齐So。使用\noindent

代码:

\documentclass{article}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
    \section*{Question 10}
    \begin{figure}[h!]
        \includegraphics[width=0.2\linewidth]{example-image}
    \end{figure}
    \noindent Let $K\hat{P}L = x$ and $K\hat{Q}M = y$. Required to prove: $\triangle KPL ||| \triangle KMQ$.
    \begin{flalign*}
    &\begin{array}{rll}
        & O\hat{M}Q=y & (\text{isoc.} \triangle, OQ=OM)\\
        \Rightarrow \ & P\hat{O}M = 2y & (\text{ext.} \angle \triangle)\\
        \Rightarrow \ & \text{reflex} \angle P\hat{O}M =360^{\circ}-2y & (\angle \text{'s around a point})\\
        \Rightarrow \ & 2P\hat{L}M = 360^{\circ}-2y & (\angle \text{at cntr}= \times 2)\\
        \Rightarrow \ & P\hat{L}M = 180^{\circ}-y\\
        \Rightarrow \ & K\hat{L}P = y & (\angle \text{'s on st. line})\\
    \end{array} &
    \end{flalign*}
    So, in $\triangle KPL$ and $\triangle KMQ$
    \begin{flalign*}
     &\begin{array}{rll}
        1. & \hat{K} \text{ is common}\\
        2. & K\hat{L}P=y=K\hat{Q}M\\[4mm]
        \therefore & \triangle KPL ||| \triangle KMQ & (A.A.)
    \end{array} &
    \end{flalign*}
\end{document}

在此处输入图片描述

相关内容