I would like to have two (or three) equations in the same line, side-by-side. I tried to do it with the multicol package:
\documentclass[a4paper]{article}
\usepackage{multicol}
\begin{document}
\begin{multicols}{2}
\begin{equation*}
K_P=\frac{0.9}{\mathcal{R} t_d}=0.40
\end{equation*} % here I get the 'underfull' warning
\break
\begin{equation*}
t_I=\frac{t_d}{0.3}=57.3
\end{equation*}
\end{multicols}
\end{document}
P.S. Also, I noticed a large vertical space between the text and the equations. Can I reduce it?


