I tried a few things:
\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.
Page Layout ⇒ Frontpage layout
NEW: TikZ book now 40% off at Amazon.com for a short time.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Frontpage layout
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 (see attachment).
Code: Select all
\usepackage[cleanlook,english]{isodate}
- Attachments
-
- title-xmpl.pdf
- The result of the sample code.
- (75.88 KiB) Downloaded 336 times
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
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}