Page Layout ⇒ Frontpage layout
Frontpage layout
\usepackage[cleanlook]{isodate}
produces a date in this format: December 30, 2008
\usepackage[english]{isodate}
produces a date in this format: 30th December 2008
\usepackage[newzealand]{isodate}
produces a date in this format: 30 December 2008
adding \uspackage{babel} before any of the \usepackage[]{isodate} lines however, produces a date in this format again: December 30, 2008 or 30th December 2008 for [english]
using \usepackage[english]{isodate} and then \cleanlookdateon \today does produce the correct date (as per page 5, section 1.8), but \usepackage[cleanlook]{isodate} does not work for me.
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Frontpage layout
Code: Select all
\usepackage[cleanlook,english]{isodate}
- Attachments
-
- title-xmpl.pdf
- The result of the sample code.
- (75.88 KiB) Downloaded 360 times
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Frontpage layout
localghost wrote:In my MWE the language option english is given globally in the list for the document class to pass it also to the babel package. The cleanlook option is given when loading the package in the preamble. Both options together should yield the desired result.
Code: Select all
\documentclass[a4paper,12pt]{report}
\usepackage[cleanlook, english]{isodate} % for formatting the date of \today
\usepackage{xcolor} % Driver-independent color extensions for LaTeX and pdfLaTeX.
\begin{document}
\begin{titlepage}
\centering
\vspace*{11\baselineskip}
\large
\bfseries
Big Title\\
\normalfont
\small
Sub Title\\
\vfill
My Name\\
(student number)\\[2\baselineskip]
\textbf{\today}\\[2\baselineskip]
Word Count: {\color{red}\input{wordcount.tex}}\\
\end{titlepage}
\end{document}