[Tex/LaTex] Horizontal alignment of equation and text

alignhorizontal alignment

I want to make a list of Quantum Mechanics formula like the format of the following picture. But I am confused about how to make the equations align to the left while the text to the right. Usually, if I use environment like, Align or Equation, the equation will be at the center.

I know I can use fleqn package, but it does not align the equations to the left enough as wee see from the picture I attached. My thought to approach this is to usefleqn, then put in the align environment, then use a bunch of \qquad to align for the text part, which is on the right side of the page. But I think this is silly.

Can anyone give me an example of this format? Or does anyone know if there are some cool packages for me to use so that my formula list would look as nice as this one?

enter image description here

Best Answer

Or you can use the flalign* environment provided by the amsmath package:

\documentclass{article}
\usepackage{amsmath}
\usepackage[per-mode=symbol]{siunitx}
\usepackage[english]{babel}
\usepackage{blindtext}% dummy text
\begin{document}
\begin{flalign*}
  &c=\frac1{\sqrt{\epsilon_0\mu_0}}=\SI{3e8}{\m\per\s} &&\text{speed of light}\\
  &\epsilon_0=\SI{8.85e-12}{C^2\per \N\m^2} &&\text{permittivity in vacuum}\\
  &\mu_0 =\SI{4\pi e-7}{\N\per\A^2} &&\text{permeability in vacuum}
\end{flalign*}
\blindtext
\end{document}

enter image description here

Related Question