文件版本计数器

文件版本计数器

我正在尝试创建文档的版本计数器,以指示用户正在阅读哪个版本。基于此答案: 从文件向文档添加版本号我成功创建了这个计数器。但是,我想将此计数器的外观从版本 1、2、...n 更改为版本 1.1.1、1.1.2、...1.1.n

有人能帮帮我吗?

我的 MWE 如下:

\documentclass[10pt,twoside,titlepage]{article}

\newcounter{versionNumber}



\makeatletter 
% At the end write the current value back to the `.aux` file
\AtEndDocument{%
\immediate\write\@auxout{%
\string\setcounter{versionNumber}{\number\value{versionNumber}}%
}%
}

\makeatother
% Step the counter at the beginning
\AtBeginDocument{%
\stepcounter{versionNumber}
}

\begin{document}

 This is the version \theversionNumber.

 \end{document}

相关内容