Last active
February 8, 2019 14:34
-
-
Save wawando/c286607487249e670f9b2f840d7a1df8 to your computer and use it in GitHub Desktop.
Write japanese letter in latex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[12pt]{article} | |
\usepackage[utf8]{inputenc} | |
\usepackage{CJKutf8} | |
\newenvironment{japanese}{% | |
\begin{CJK}{UTF8}{} | |
\CJKfamily{goth}% | |
\CJKtilde | |
\CJKnospace | |
}{\end{CJK}} | |
\begin{document} | |
\begin{japanese} | |
こんにちは! | |
\end{japanese} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment