3

I would like to know if it is possible to specify another country than my home country as the reference for the tag \today. I need to submit works in a different time zone so when I submit it, sometimes the day isn't right any more in this specific country since the reference for the tag \today is another time zone's country.

moewe
  • 175,683

1 Answers1

3

I think that I misunderstood your question as at first I thougtht that you wanted to be able to switch the language that is used by the \today command. Inspired partly by this post, if this is what you want then you can do this using the datetime2 package:

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[french,british]{babel}
\usepackage[showdow,useregional]{datetime2}
\begin{document}
\selectlanguage{french} \today

\selectlanguage{british} \today

\end{document}

This produces:

enter image description here

Rereading your question, it seems that, instead, you want to change the actual time that is used this looks a little trickier...

  • 1
    @marmot Yes, I agree -- see my last comment:) Was planning to come back and answer the real question when I finish doing what I am supposed to be doing now... –  Sep 16 '18 at 05:13