It was recommended that I include amsmath package to use \tag{} (which works). When I do this however, it somehow changes my predefined spacing; I would like everything to be left aligned, no left spacing for beginning of paragraphs, single line space between all equations, all paragraphs.
Sample code below; if you comment out amsmath line, you'll see the output I was aiming for. My question is what additional commands do I use for amsmath to this kind of output?
\documentclass[12pt,fleqn]{article}
\usepackage{amsmath}
\setlength{\parindent}{0pt}
\usepackage{graphicx}
\usepackage{cancel}
\usepackage{listings}
\usepackage[latin5]{inputenc}
\usepackage{color}
\setlength{\parskip}{8pt}
\setlength{\parsep}{0pt}
\setlength{\headsep}{0pt}
\setlength{\topskip}{0pt}
\setlength{\topmargin}{0pt}
\setlength{\topsep}{0pt}
\setlength{\partopsep}{0pt}
\setlength{\mathindent}{0cm}
\begin{document}
Some line
\[ y = x^2 \]
Another line
\[ y = x^2 \]
\[ y = x^2 \]
One more line
\end{document}
