テキストの配置に問題があるが、数式の配置には問題がある

テキストの配置に問題があるが、数式の配置には問題がある
\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

最初の2行と最後の行を環境から完全に取り除きalign*、中間の行の1つを\intertextラッパーに配置することをお勧めします。(ちなみに、ここではタイプセットの問題のみを取り上げています。ない関連する数学。したがって、 についてはコメントしません\frac{d}{dx}x

あ、ぜひ、、、、と書くのではなく\sin、、、、と書いてください。\cos\arcsinsincosarcsin

ここに画像の説明を入力してください

\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}

関連情報