数式環境にテキスト行を追加する

数式環境にテキスト行を追加する

私は LaTex の新規ユーザーです。1. このコードのどこが間違っているのか、誰か教えてください。

\begin{equation*}
T_{Loop Filter}(s)=K_{p}+\frac{K_{i}}{s}\\
The overall transfer function of given PLL can be given as\\
\frac{{\phi}_{c}(s)}{{\phi}(s)}=\frac{T_{Loop Filter}(s)*\frac{1}{s}}{1+\frac{T_{Loop Filter}(s)*\frac{1}{s}}\\
\frac{\phi_{c}(s)}{\phi(s)}=\frac{K_{p}(s)+K_{i}}{s^{2}+K_{p}(s)+K_{i}}\\
In general transfer function for a second order closed loop control system is given as\\
T_{second order}=\frac{{\omega}^2+{2{\delta}{\omega}s}{s_{2}+2{\delta}{\omega}s+{\omega}^{2}}\\
On comparing {\omega}={sqrt{K_i}}  {\delta}=\frac{K_p}{2\sqrt{K_{i}}}
\end{equation*}

次のエラーが発生します

「暴走引数? {1+\frac {T_{ループフィルタ}(s)*\frac {1}{s}}\ \frac {\phi _{c}(s)}{\phi \ETC。! \fracの使用をスキャン中にファイルが終了しました

  1. \begin{equation}研究論文(または\begin{eqnarray}または$$またはまたは)のための方程式を書くための専門的な方法は何ですか?\begin{OtherStyle}
  2. コマンドを使わずに\begin{equation}環境内にテキスト行を直接追加できますか?
  3. 数式環境で、中央揃え(Under \begin{equation})と特定の文字を基準にした配置( )を使用する方法。\begin{Align}

答え1

flalign* と \intertext{} があなたにとって非常に良いと思います。

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{flalign*}
& & T_{Loop Filter}(s)&=K_{p}+\frac{K_{i}}{s} & & \\
\intertext{The overall transfer function of given PLL can be given as}
& & \frac{{\phi}_{c}(s)}{{\phi}(s)}&=\frac{T_{Loop Filter}(s)*\frac{1}{s}}{1+\frac{T_{Loop Filter}}(s)*\frac{1}{s}} & & \\
& & \frac{\phi_{c}(s)}{\phi(s)}&=\frac{K_{p}(s)+K_{i}}{s^{2}+K_{p}(s)+K_{i}} & & 
\intertext{In general transfer function for a second order closed loop control system is given as}
& & T_{second order}&=\frac{{\omega}^2+{2{\delta}}{\omega}s}{s_{2}+2{\delta}{\omega}s+{\omega}^{2}} & & \\
& \rlap{\text{On comparing}} & {\omega}&={sqrt{K_i}}  {\delta}=\frac{K_p}{2\sqrt{K_{i}}} & &
\end{flalign*}
\end{document}

答え2

}コードに不足があります。

これは動作するはずです:

\[
T_{Loop Filter}(s)=K_{p}+\frac{K_{i}}{s}
\]
The overall transfer function of given PLL can be given as
\[
\frac{{\phi}_{c}(s)}{{\phi}(s)}=\frac{T_{Loop Filter}(s)*\frac{1}{s}}{1+\frac{T_{Loop Filter}}(s)*\frac{1}{s}}
\]
\[
\frac{\phi_{c}(s)}{\phi(s)}=\frac{K_{p}(s)+K_{i}}{s^{2}+K_{p}(s)+K_{i}}
\]
In general transfer function for a second order closed loop control system is given as
\[
T_{second order}=\frac{{\omega}^2+{2{\delta}}{\omega}s}{s_{2}+2{\delta}{\omega}s+{\omega}^{2}}
\]
On comparing
\[ 
{\omega}={sqrt{K_i}}  {\delta}=\frac{K_p}{2\sqrt{K_{i}}}
\]

すべてを試したわけではない}ので、いくつか追加される可能性があります。

答え3

flalign{} 環境下で \intertext{} の内側と外側で $ Equation $ を使用できますか。この 2 行のせいで、すべての方程式が左揃えになってしまいました。この点について助けてください。追加する前に、中央に対して適切に揃えてください。 \begin{flalign*} & & \frac{Y(s)}{R(s)}&=\frac{{\omega}^2+{2{\delta}}{\omega}{s}}{s^{2}+2{\delta}{\omega}{s}+{\omega}^{2}} & & \ \end{flalign*} 下のテキストを追加した後、中央ではなく左揃えになります {\intertext{比較について}} ${\omega}={\sqrt{K_i}}$ \quad ${\delta}=\frac{K_p}{2\sqrt{K_{i}}}$\

関連情報