date - LaTeX command for last modified -


is there latex command prints "last modified" date of actual document? since latex projects consist of more 1 file command ideally prints date of actual file, not of project.

unfortunately, tex not provide commands such information; way such information

  1. by running non-tex script create tex file before running latex , including file in main latex document somehow, or
  2. by running external script from tex (which works if so-called write18 or shellescape feature enabled; you'd have consult manual of tex implementation this, , not have stubborn sysadmin).

it possible extended texs support file info commands (luatex perhaps?), it's not part of tex proper.


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -