The length of formula in attached code is getting too long, I would wish to break it short. I try to insert a break after the \rightsquigarrow by failed.
How should I insert a break?
\documentclass[conference]{IEEEtran}
\usepackage{amsmath, amssymb, url, proof}
\newcommand{\srule}[3]{
\infer[ (#1) ]
{#3}
{#2}
\bigskip
}
\begin{document}
{\centering
\begin{minipage}{1\textwidth}
\srule{if2}
{ \bigwedge\limits_{i=1}^n t_1 \leq t_i}
{(t_1\Rightarrow P_1,\ldots,t_n\Rightarrow P_n),C,D)
\stackrel{\tau}\rightsquigarrow
(P_1, C \land \bigwedge\limits_{i=1}^n t_1 \leq t_i,D+t_1))}
\end{minipage}
}
\end{document}



if2in math mode, do you? At the moment it looks like the variablesiandf. – Hendrik Vogt Aug 05 '12 at 09:09