在写这一段的时候我想把它们对齐\leq
,但我不知道该怎么做,下面是我使用的代码:
\textbf{Théoriquement :}\\
On sait que l'expression mathématique d'une tension s'écrit sous la forme suivante :
$$u(t)=U_m \cos(2\pi f t)$$
Pour que le signal modulant aura une expression mathématique, on pose $U_m=A\left(m\cos(2\pi f_s t)+1\right)$
\begin{align*}
-1&\leq \cos(2\pi f_s t)\ \ \ \ \ \ \leq 1\\
-m&\leq m\cos(2\pi f_s t)\ \ \ \leq m\\
1-m&\leq m\cos(2\pi f_st)+1\ \ \leq 1+m\\
A(1-m)&\leq A\left(m\cos(2\pi f_s t)+1\right)\leq A(1+m)
\end{align*}
有什么有用的想法吗?
答案1
align*
我建议对和进行以下改进eqparbox
,以便中间项位于 \leq 符号的中心:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage{amsmath}
\usepackage{eqparbox}
\newcommand\eqmathbox[2][M]{\eqmakebox[#1]{$\displaystyle#2$}}
\begin{document}
\textbf{Théoriquement :}\\
On sait que l'expression mathématique d'une tension s'écrit sous la forme suivante :
\[ u(t)=U_m \cos(2\pi f t) \]
Pour que le signal modulant ait une expression mathématique, on pose $U_m=A\bigl(m\cos(2\pi f_s t)+1\bigr)$
\begin{align*}
-1&\leq \eqmathbox{\cos(2\pi f_s t)} \leq 1\\
-m&\leq\eqmathbox{ m\cos(2\pi f_s t)} \leq m\\
1-m&\leq \eqmathbox{m\cos(2\pi f_st)+1} \leq 1+m\\
A(1-m)&\leq \eqmathbox{A\bigl(m\cos(2\pi f_s t)+1\bigr)}\leq A(1+m)
\end{align*}
\end{document}