I've faced with a situation like below in IEEEconf 2-column template:
\documentclass[letterpaper, 10pt, conference]{IEEEconf}
\usepackage{graphicx}
\usepackage{mathptmx}
\usepackage{amsmath}
\usepackage{amssymb}
\title{My Title*}
\author{Guy$^{1}$
\thanks{*This work was not supported by any organization}% <-this % stops a space
\thanks{$^{1}$Guy is with Hell, {\tt\small guy@hell.edu}}%
}
\begin{document}
\maketitle
\thispagestyle{empty}
\pagestyle{empty}
\begin{abstract}
ABSTRACT
\end{abstract}
\section{INTRODUCTION}
\noindent\begin{minipage}{.5\linewidth}
\begin{equation}
\begin{cases}
\theta_{i}^{h^{-}} = \frac{\displaystyle 2(i-1)\pi}{\displaystyle m_{c}^{\hat{x}}}\\
\theta_{i}^{h^{+}} = \frac{\displaystyle 2i\pi}{\displaystyle m_{c}^{\hat{x}}}\\
\end{cases}
\end{equation}
\end{minipage}%
\begin{minipage}{.5\linewidth}
\begin{equation}
\begin{cases}
\theta_{j}^{v^{-}} = \frac{\displaystyle 2(j-1)\pi}{\displaystyle m_{c}^{\hat{v}}}\\
\theta_{j}^{v^{+}} = \frac{\displaystyle 2j\pi}{\displaystyle m_{c}^{\hat{v}}}\\
\end{cases}
\end{equation}
\end{minipage}
\end{document}
I'm gonna decrease the distance between right equation with its label (i.e. (3)), such that everything will be placed in a straight line.
What is the best approach to do that?
Update 1: result of @Zarko's code:






amsmath, there is a command\raisetag{,dimen>}that can be applied if a tag is moved away from its "normal" position, which this one is. try\raisetag{1.5\baselineskip}just before the second\end{equation}. documented intexdoc amsmath, section 3.8. – barbara beeton Jan 15 '17 at 20:50