扉页上的日期

扉页上的日期

所以我想为我的文档创建一个标题页,并在上面打印最后编辑日期,但我似乎无法做到。我发现有人遇到过类似的问题,但不知何故,他们无法为我提供解决方案。

这是我的代码

\documentclass{article}
\begin{document}
\begin{titlepage}
\begin{center}
    \vspace*{1cm}

    \Huge
    \textbf{Thesis Title}

    \vspace{0.5cm}
    \LARGE
    Thesis Subtitle

    \vspace{1.5cm}

    \textbf{Author Name}

    \vfill

    A thesis presented for the degree of\\
    Doctor of Philosophy

    \vspace{0.8cm}

    \Large
    Department Name\\
    University Name\\
    Country\\
    \date 

\end{center}
\end{titlepage}
\end{document}

我曾尝试使用标题包,但它以英文打印日期,而我想要法文的。

答案1

\documentclass[11pt,a4paper]{article}    
\usepackage[french]{babel}
...
\today % date in French

在开始文档之前尝试一下

相关内容