General ⇒ [spacing issue] lower the title - how to do?
-
- Posts: 3
- Joined: Tue Jul 29, 2008 4:21 pm
[spacing issue] lower the title - how to do?
I am looking to lower the title of my paper (as against being at the very top of the first page). How do I lower the title? I tried using \vspace, \medskip etc. None worked. Could you please let me know how to do this?
Here is what I am trying to do..but, doesn't work....
=========================================
\documentclass{acm_proc_article-sp}
\usepackage{graphicx}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{verbatim} % For multi-line comments
\begin{document}
\vspace{50mm} -- does not work!!
\title{Wireless Ad-Hoc Networks}
\begin{comment}
\numberofauthors{3}
.....
.....
\bigskip -----> does not work
\maketitle
=======================================
Thanks,
sri.
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
[spacing issue] lower the title - how to do?
welcome to the board!
A simple way would be to include \vspace in \title:
Code: Select all
\title{\vspace{50mm}Wireless Ad-Hoc Networks}
Stefan
-
- Posts: 3
- Joined: Tue Jul 29, 2008 4:21 pm
Re: [spacing issue] lower the title - how to do?
-Sri.