I wish for my Latex Title to be condensed so that it takes up less room on the page.
Here is my current source:
\documentclass[12pt]{article}
\usepackage[margin=1in]{geometry}
\usepackage{amsmath,amsthm,amssymb}
\usepackage{graphicx,ctable,booktabs}
% ----------------------------------------------------------------------------------------------------------------------------------------------
% Commands
%-----------------------------------------------------------------------------------------------------------------------------------------------
\newcommand{\justif}[2]{&{#1}&\text{#2}}
\newcommand{\N}{\mathbb{N}}
\newcommand{\Z}{\mathbb{Z}}
\newcommand{\R}{\mathbb{R}}
\begin{document}
% --------------------------------------------------------------
% Start here
% --------------------------------------------------------------
\title{This is a title that need not take up half the page! (How do I fix this?)}%replace X with the appropriate number
%if necessary, replace with your course title
\maketitle
This is the rest of my document...
\end{document}
- How do I get the title to take up less space?
If you need more information let me know. Thanks in advance!

