
My goal is to put text before \maketitle as well as on left side, and on the right. They should be on the same level. I've tried \begingroup -- doesn't work:
\documentclass[a4paper,10pt, twoside, twocolumn]{article}
\usepackage[utf8]{inputenc}
\usepackage[MeX]{polski}
\usepackage{tocloft}
\makeatletter
\renewcommand\@seccntformat[1]{\csname the#1\endcsname.\quad}
\renewcommand\numberline[1]{#1.\hskip0.7em}
\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}}
\makeatother
\usepackage[%
headheight=25pt,
includeheadfoot,
margin=2cm
]{geometry}
\usepackage{hyperref}
\hypersetup
{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=gray,
pdfmenubar=false,
pdftex
}
\frenchspacing
\title{Tytul}
\author{Iksinski}
\date{some date}
\begin{document}
\begin{flushright}
right text
\end{flushright}
\begin{flushleft}
left one
\end{flushleft}
\begingroup
\let\newpage\relax% Void the actions of \newpage
\maketitle
\endgroup
\maketitle
\end{document}


\maketitlein your example image. There is contents in the header of the page and stuff (abstract and keywords) below it though, but that's not what you're after in your problem description. – Werner Aug 7 '12 at 19:26