In the following code, I would like to show two different formatting styles: one using the package nath output, and another showing the default output.
How can I do that?
% Source : http://tex.stackexchange.com/questions/1023/vertically-asymmetric-size-variation-for-parentheses
\documentclass[10pt,a4paper]{article}
\usepackage[utf8x]{inputenc}
\usepackage{ucs}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{nath} % The usefull package.
\newcommand{\formulaOne}{\sum_{0 \le i \le m \\ 0 < j < n} P(i,j)}
\newcommand{\formulaTwo}{1 + \frac{1 + x^2}{1 - \frac{x}{2}}}
\begin{document}
\section{With nath}
\begin{equation}
( \formulaOne ) = [ \formulaTwo ]
\end{equation}
\section{Without nath}
\begin{equation}
\left( \formulaOne \right) = \left[ \formulaTwo \right]
\end{equation}
\end{document}
