如何在 LaTeX 文件中自动生成日期?

如何在 LaTeX 文件中自动生成日期?

我尝试使用该datetime包,但它没有以我想要的格式显示日期。我想要的是类似这样的格式August 30, 2015

我该怎么做呢?

答案1

您可以使用datetime2包裹:

\documentclass[english]{article}
\usepackage{babel}
\usepackage[useregional]{datetime2}

\begin{document}

\today

\end{document}

在此处输入图片描述

datetime

\documentclass{article}
\usepackage{datetime}

\newdateformat{monthdayyeardate}{%
  \monthname[\THEMONTH]~\THEDAY, \THEYEAR}

\begin{document}

\monthdayyeardate\today

\end{document}

相关内容