I've added notitlepage option to not get my page counter reset ( according to suggestion : https://tex.stackexchange.com/a/44955/7128 )
but my abstract lost formatting !
Now it has line spacing and margins like rest of document.
How to achieve default look of abstract when notitlepage option is used?
\documentclass[pdftex,a4paper,12pt,twoside,openany]{report}
%\documentclass[pdftex,a4paper,12pt,twoside,openany,notitlepage]{report} % <--- switch to this to see difference
\usepackage{lipsum}
\begin{document}
\linespread{1.6} % interline 2.0
\begin{abstract}
\lipsum[1-3]
\end{abstract}
\chapter{CH}
\lipsum[1-8]
\end{document}
How to achieve same look of abstract with notitlepage as without that option, wile preserving same formatting of rest of document ?
$ texdef -t latex 'abstract'command returns:\abstract: \long macro:->\if@twocolumn \section *{\abstractname }\else \small \begin {center}{\bfseries \abstractname \vspace {-.5em}\vspace {\z@ }}\end {center}\quotation \fi- it looks like sth I'm looking for. Advice how to apply this? – Grzegorz Wierzowiecki Feb 20 '12 at 08:54notitlepageoption. Better using thesetspacepackage for playing with the leading. – egreg Feb 20 '12 at 10:16