I have to share presentation slides with a co-worker. They are created daily in ConTeXt.
Throughout the slides, I have placed \date, which is an important part of the slides, but that is the date when compiled.
I compile the slides at the start of a presentation, but my co-worker doesn't know how to compile them herself and might use them on different days.
Is there a way to put a "live" changing date in the slide, that shows today's date, no matter what day the PDFs are opened?
\todaycommand in the file as PDF literal, and update that image daily - either through ConTeXt or as postprocessing withpdftkor similar. See https://stackoverflow.com/questions/36318312/pdf-with-an-external-image-using-xobject, https://tex.stackexchange.com/questions/277984/superellipse-with-pdfliterals, https://tex.stackexchange.com/questions/213655/insert-and-ref-uncompressed-pdf-literals-in-latex-document. – Marijn May 07 '19 at 09:13pdftocairo -svg SomeFile.pdf SomeFile.svgiterated over every page). Then embed each page's svg code into an html file and add some javascript to make the date dynamic (you'd have to find the date in the svg file's ad hoc (?) text encoding…). Then instruct your co-worker to present the slides using a web browser in fullscreen mode. – May 07 '19 at 16:24