텍스트 정렬에는 문제가 있지만 방정식에는 문제가 없습니다.

텍스트 정렬에는 문제가 있지만 방정식에는 문제가 없습니다.
\begin{align*}
\\ \text{Let } arcsin(x) & = \theta
\\\text{But } \theta \text{ is a function of x so we can write }
\\ arcsin(x) & = \theta(x)
\\ x & = sin(\theta(x))
\\ \frac{d}{dx}x & = \frac{d}{dx}sin(\theta(x))

\\ \text{Imagine f(x) = sin(x) and g(x) = } \theta(x).
\\ \text{Thus, f'(g(x))g'(x) = cos(} \theta(x))\theta'(x).
\\\text{So overall, you differentiated sin(} \theta) \text{ with respect to } \theta.
\end{align*} 

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

위의 내용은 Notion에서 작성했습니다. 모든 방정식을 정렬했지만 텍스트가 정렬되지 않았습니다. 이 문제를 해결하기 위해 고심하고 있습니다.

저는 LaTeX와 이 커뮤니티를 처음 접했기 때문에 질문의 형식이 잘못된 경우 사과드립니다.

답변1

환경에서 처음 두 줄과 마지막 줄을 align*완전히 제거하고 중간 줄 중 하나를 \intertext래퍼에 배치하는 것이 좋습니다. (그런데 저는 조판 문제만 다루고 있습니다.~ 아니다관련된 수학. 그러므로 에 대해서는 언급하지 않겠습니다 \frac{d}{dx}x.)

\sin아, 꼭 , \cos, \arcsin보다는 sin, cos, 로 써주세요 arcsin.

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

\documentclass{article}
\usepackage{amsmath} % for 'align*' env. and '\intertext' macro
\begin{document}

\noindent
Let $\arcsin(x) = \theta$. Because $\theta$ is a function of $x$, we can write
\begin{align*}
\arcsin(x) &= \theta(x) \\ 
x &= \sin(\theta(x)) \\ 
\frac{d}{dx}x &= \frac{d}{dx}\sin(\theta(x))\,.\\ 
\intertext{Put $f(x) = \sin(x)$ and $g(x) = \theta(x)$. Thus}
f'(g(x))g'(x) &= \cos(\theta(x))\theta'(x).
\end{align*}
So overall, you differentiated $\sin(\theta)$ with respect to $\theta$. 

\end{document}

관련 정보