[Tex/LaTex] Keeping beamer in English while supporting Chinese characters

beamercjkinput-encodingsunicode

\documentclass{beamer}
\usepackage{ctex}

\begin{document}

\title{Test}
\author{My name (我的名字)}
\date{\today}

\begin{frame}
    \titlepage
\end{frame}

\end{document}

Here is the current output:
enter image description here

I am giving a presentation in English. I only want to support the Chinese names in the \author{} field. But now the \date{} is also shown in Chinese format.

How can I keep the date in English as well?

Thanks!

Best Answer

For ctex version 1.x:

\usepackage[noindent,nocap]{ctex}

For ctex version 2.x:

\usepackage[scheme=plain]{ctex}