왼쪽 여백을 무시하고 중앙 수학 방정식을 왼쪽으로 이동하는 방법은 무엇입니까?

왼쪽 여백을 무시하고 중앙 수학 방정식을 왼쪽으로 이동하는 방법은 무엇입니까?

다음 방정식이 있습니다.여기에 이미지 설명을 입력하세요

오른쪽에 너무 가까워서 인쇄하는 동안 끼일 수 있으므로 왼쪽으로 조금 이동해야 합니다.

해당 방정식은 구문을 사용하고 있습니다 $$ R=... $$. 어떻게 왼쪽으로 이동할 수 있나요?

편집하다

구문 으로 변경한 후 \[ ... \]:

\begin{description}
\item[Model matrix] \hfill \\
...
\begin{itemize}
\item Rotation matrix - used to rotate vertex (vertices) by a specifed angle $\alpha$ around specified axis, where each from 3 axes has its own rotation matrix
\[
R_x = \begin{bmatrix} 1 & 0 & 0 & 0 \\ 0 & \cos(\alpha) & -\sin(\alpha) & 0 \\ 0 & \sin(\alpha) & \cos(\alpha) & 0 \\ 0 & 0 & 0 & 1 \end{bmatrix},
\newline
R_y = \begin{bmatrix} \cos(\alpha) & 0 & \sin(\alpha) & 0 \\ 0 & 1 & 0 & 0 \\ -\sin(\alpha) & 0 & \cos(\alpha) & 0 \\ 0 & 0 & 0 & 1 \end{bmatrix},
\newline
R_z = \begin{bmatrix} \cos(\alpha) & -\sin(\alpha) & 0 & 0 \\ \sin(\alpha) & \cos(\alpha) & 0 & 0 \\ 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1 \end{bmatrix}
\]
\end{itemize}

답변1

다음과 같은 음수 공백을 삽입하여 목록의 누적 들여쓰기를 조정합니다 \@totalleftmargin.

여기에 이미지 설명을 입력하세요

\documentclass{article}
\usepackage[margin=1in,showframe]{geometry}% Just for this example
\usepackage{amsmath}
\begin{document}
\begin{description}
  \item[Model matrix] \hfill \\
    \ldots

    \begin{itemize}
      \item Rotation matrix - used to rotate vertex (vertices) by a specifed angle $\alpha$ around specified axis, where each from 3 axes has its own rotation matrix
      \[
        \makeatletter
        \hspace*{-\@totalleftmargin}
        \makeatother
        R_x = \begin{bmatrix} 1 & 0 & 0 & 0 \\ 0 & \cos(\alpha) & -\sin(\alpha) & 0 \\ 0 & \sin(\alpha) & \cos(\alpha) & 0 \\ 0 & 0 & 0 & 1 \end{bmatrix},
        \quad
        R_y = \begin{bmatrix} \cos(\alpha) & 0 & \sin(\alpha) & 0 \\ 0 & 1 & 0 & 0 \\ -\sin(\alpha) & 0 & \cos(\alpha) & 0 \\ 0 & 0 & 0 & 1 \end{bmatrix},
        \quad
        R_z = \begin{bmatrix} \cos(\alpha) & -\sin(\alpha) & 0 & 0 \\ \sin(\alpha) & \cos(\alpha) & 0 & 0 \\ 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1 \end{bmatrix}
      \]
    \end{itemize}
\end{description}

\[
  R_x = \begin{bmatrix} 1 & 0 & 0 & 0 \\ 0 & \cos(\alpha) & -\sin(\alpha) & 0 \\ 0 & \sin(\alpha) & \cos(\alpha) & 0 \\ 0 & 0 & 0 & 1 \end{bmatrix},
  \quad
  R_y = \begin{bmatrix} \cos(\alpha) & 0 & \sin(\alpha) & 0 \\ 0 & 1 & 0 & 0 \\ -\sin(\alpha) & 0 & \cos(\alpha) & 0 \\ 0 & 0 & 0 & 1 \end{bmatrix},
  \quad
  R_z = \begin{bmatrix} \cos(\alpha) & -\sin(\alpha) & 0 & 0 \\ \sin(\alpha) & \cos(\alpha) & 0 & 0 \\ 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1 \end{bmatrix}
\]

\end{document}

또는 원하는 만큼 방정식을 왼쪽으로 이동합니다. 예를 들어 -\leftmargin가장 깊은 들여쓰기만 제거합니다.

관련 정보