General ⇒ How to create a header for an asbtract
How to create a header for an asbtract
Thank you
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
How to create a header for an asbtract
welcome to the LaTeX Community board!
I assume you do not use the notitlepage option, your abstract is set on its own page. Here is one try to change the default behaviour. I redefined the abstract environment, only inserted the \inserttext command, where you could write your lines. The example:
Code: Select all
\makeatletter
\renewenvironment{abstract}{%
\titlepage
\null\vfil
\inserttext
\@beginparpenalty\@lowpenalty
\begin{center}%
\bfseries \abstractname
\@endparpenalty\@M
\end{center}}%
{\par\vfil\null\endtitlepage}
\makeatother
\newcommand\inserttext{\noindent some lines\vfil}
Stefan
Re: How to create a header for an asbtract
Thanks again!