I'm trying to put three equations in the same line.
I used the tabularx package as was advised by this post: How to place and number 3 short equations in one line?.
However since I am using equation with different heights, they do not align well vertically.
I manage to solve this using \vspace but I would like to know if there is a more elegant solution. Here is the code I used:
\documentclass[11pt,a4paper]{article}
\usepackage{amsmath}
\usepackage{tabularx}
\usepackage[margin=0.25in]{geometry}
\begin{document}
\noindent\begin{tabularx}{\textwidth}{@{}XXX@{}}
\vspace{0.1mm}
\begin{equation}
Euc(P,Q)= \left( \sum_{i=1}^n \left| p_i - q_i \right|^2 \right)^{1/2}
\label{eqn:1}
\end{equation} &
\vspace{1.5mm}
\begin{equation}
Canb(P,Q)=\sum_{i=1}^n \frac{|p_i-q_i|}{|p_i|+|q_i|}
\label{eqn:2}
\end{equation} &
\vspace{5.8mm}
\begin{equation}
Man(P,Q)=\sum_{i=1}^n |p_i-q_i|
\label{eqn:3}
\end{equation}
\end{tabularx}
\end{document}



;-)The line is very cluttered and makes it difficult to see the numbers themselves. – egreg Feb 16 '14 at 22:28