Add a version number to the title of a LaTeX document

前端 未结 8 1406
攒了一身酷
攒了一身酷 2021-02-04 07:17

The title section of my LaTeX documents usually look like

\\title{Title}
\\author{Me}
%\\date{}      %// Today\'s date will appear when this is commented out.

\         


        
8条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-04 07:27

    The easiest way to do exactly what I wanted to do was to simply use:

    \title{Title}
    \author{Me}
    \date{\today\\v1.2}
    
    \begin{document}
    \maketitle
    

提交回复
热议问题