I am following the directions from this SE question to change the text in an amsthm "Proof" to 증명, which is the Korean word for the same.
If I put in Latin text, it works just fine.
\documentclass[12pt]{article}
\usepackage{amsthm}
\usepackage{kotex}
\renewcommand*{\proofname}{My proof}
\begin{document}
\begin{proof}
To get a contradiction, suppose that $3 = 4$.
\end{proof}
\end{document}
prints My proof. To get ... However, changing the third line to
\renewcommand*{\proofname}{증명}
prints 증명 To get a contradiction, suppose that 3=4. with the dot missing. On the other hand,
\renewcommand*{\proofname}{증명.}
prints 증명.. To get a contradiction, suppose that 3=4. with two dots!
How do I get just one dot?
