[Tex/LaTex] Text before maketitle

header-footerpositioningtitles

enter image description here

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}

Best Answer

Based on the image you provided, you need to create a custom header that includes some content. The easiest way to do this, depending on your requirements or limitations, would be to use the fancyhdr package. For example, creating a "title" header you could use:

enter image description here

\documentclass[twocolumn]{article}
\usepackage{lipsum}% http://ctan.org/pkg/lipsum
\usepackage{fancyhdr}% http://ctan.org/pkg/fancyhdr
\fancypagestyle{title}{%
  \setlength{\headheight}{22pt}%
  \fancyhf{}% No header/footer
  \renewcommand{\headrulewidth}{0pt}% No header rule
  \renewcommand{\footrulewidth}{0pt}% No footer rule
  \fancyfoot[C]{\thepage}% Page number in Centre of footer
  \fancyhead[L]{\small\begin{tabular}{@{}l}Psycological Assessment​​​​​​​​​​​​​​​​​​​​​​\\2011, Vol.\ 23​​​​​​​, No.\ 1, 64--79\end{tabular}}
  \fancyhead[R]{\small\begin{tabular}{@{}r}\copyright~2001​​​​​​​​​​​​​​​​​​​​​​​​​​​ American Psycological Association\\1040-1234567890~XYZ:\ 8472302\end{tabular}}
}%
\title{Here is my title}
\author{Some Author}
\date{\today}
\begin{document}
\maketitle
\thispagestyle{title}

​\lipsum
\end{document}​​​​​

If your document class provides an interface to the headers (for conference or paper/article submissions, say), it's best to use that.

Read the fancyhdr documentation for more information on the commands used and how to modify the respective header/footer locations/contents.