Discussion:
No newpage after \maketitle??
(too old to reply)
Johs32
2006-06-18 14:35:16 UTC
Permalink
Is there some way to start writing on the same page after using \maketitle?

\documentclass[a4paper,12pt]{article}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[danish]{babel}
\usepackage{graphicx}
\usepackage{verbatim}
%\usepackage[active]{srcltx}
\usepackage[top=30mm,left=15mm]{geometry}
\usepackage{amsmath}
\pagestyle{headings}
\author{Bond}
\title{Hello}
\begin{document}
\maketitle
this is my text

\end{document}

'this is my text' gets printed on page two, I would it to be printed on the
same page as the titel and author, is that possible?

Johs
Mr. Big
2006-06-18 15:57:42 UTC
Permalink
Post by Johs32
Is there some way to start writing on the same page after using \maketitle?
\documentclass[a4paper,12pt]{article}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[danish]{babel}
\usepackage{graphicx}
\usepackage{verbatim}
%\usepackage[active]{srcltx}
\usepackage[top=30mm,left=15mm]{geometry}
\usepackage{amsmath}
\pagestyle{headings}
\author{Bond}
\title{Hello}
\begin{document}
\maketitle
this is my text
\end{document}
'this is my text' gets printed on page two, I would it to be printed on the
same page as the titel and author, is that possible?
Johs
Your example prints it on the same page. It should when you are using
article.cls
Have you tried exactly this code ? (perhaps you used book instead, then
it prints it on page two)
Ralf Stubner
2006-06-18 15:31:17 UTC
Permalink
Post by Johs32
Is there some way to start writing on the same page after using \maketitle?
\listfiles
Post by Johs32
\documentclass[a4paper,12pt]{article}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[danish]{babel}
\usepackage{graphicx}
\usepackage{verbatim}
%\usepackage[active]{srcltx}
\usepackage[top=30mm,left=15mm]{geometry}
\usepackage{amsmath}
\pagestyle{headings}
\author{Bond}
\title{Hello}
\begin{document}
\maketitle
this is my text
\end{document}
'this is my text' gets printed on page two, I would it to be printed on the
same page as the titel and author, is that possible?
article.cls uses a separate titlepage only when the option 'titlepage is
used. Indeed, your example porduces only one page here, using the
following packages (most of them are probably unrelated):

*File List*
news.tex
article.cls 2004/02/16 v1.4f Standard LaTeX document class
size12.clo 2004/02/16 v1.4f Standard LaTeX file (size option)
inputenc.sty 2004/02/05 v1.0d Input encoding file
latin1.def 2004/02/05 v1.0d Input encoding file
fontenc.sty
t1enc.def 2004/02/22 v1.99f Standard LaTeX file
babel.sty 2004/11/20 v3.8d The Babel package
danish.ldf 2004/02/19 v1.3p Danish support from the babel system
graphicx.sty 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
keyval.sty 1999/03/16 v1.13 key=value parser (DPC)
graphics.sty 2001/07/07 v1.0n Standard LaTeX Graphics (DPC,SPQR)
trig.sty 1999/03/16 v1.09 sin cos tan (DPC)
graphics.cfg 2005/02/03 v1.3 graphics configuration of teTeX/TeXLive
dvips.def 1999/02/16 v3.0i Driver-dependant file (DPC,SPQR)
verbatim.sty 2003/08/22 v1.5q LaTeX2e package for verbatim enhancements
geometry.sty 2002/07/08 v3.2 Page Geometry
geometry.cfg
amsmath.sty 2000/07/18 v2.13 AMS math features
amstext.sty 2000/06/29 v2.01
amsgen.sty 1999/11/30 v2.0
amsbsy.sty 1999/11/29 v1.2d
amsopn.sty 1999/12/14 v2.01 operator names
***********

)
Output written on news.dvi (1 page, 404 bytes).


cheerio
ralf

Loading...