Here is my code -
Code: Select all
\documentclass{article}
\usepackage[utf8]{inputenc}
\begin{document}
\title{My title}
\maketitle
\end{document}
Code: Select all
\documentclass{article}
\usepackage[utf8]{inputenc}
\begin{document}
\title{My title}
\maketitle
\end{document}
article
's (documented) default of the date is \today
. You can explicitly set an empty date using \date{}
(note the empty argument). However, this would print an empty date, so the place is used as if there would be a date. If you need a more individual title, you cannot use \maketitle
but design and implement it manually. For a in-head-title (which is the default of article
) with only a title but no date and no auther, you could e.g. use something simple like:
Code: Select all
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{blindtext}
\begin{document}
\begin{center}
\LARGE\bfseries My title
\bigskip
\end{center}
\tableofcontents
\section{My first section}
\blindtext
\end{document}
titlepage
, e.g.:
Code: Select all
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{blindtext}
\begin{document}
\begin{titlepage}
\centering
\vspace*{.25\textheight}
\LARGE\textbf{My title}
\bigskip
\large\textbf{My subtitle}
\end{titlepage}
\tableofcontents
\section{My first section}
\blindtext
\end{document}
Code
button in the toolbar (please do not use the MWE button, because it has another meaning, nor the LaTeX button, which should be used for inline code only not for multiple lines of code). For more information about text formation in the forum, see the BBCode help page.