> ## Documentation Index
> Fetch the complete documentation index at: https://resources.latex-cloud-studio.com/llms.txt
> Use this file to discover all available pages before exploring further.

# LaTeX in Japanese

> Set up Japanese LaTeX workflows with XeLaTeX/LuaLaTeX and CJK font support.

Use this setup to typeset documents in japanese with stable language rules and typography.

## Compiler Recommendation

Use XeLaTeX or LuaLaTeX for this language to ensure robust Unicode and font support.

## XeLaTeX / LuaLaTeX Setup

```latex xelatex-japanese.tex theme={null}
\documentclass{article}
\usepackage{fontspec}
\usepackage{xeCJK}
\setCJKmainfont{Noto Serif CJK JP}
\setmainfont{TeX Gyre Termes}

\begin{document}
\section{Overview}
Compile with XeLaTeX or LuaLaTeX for Japanese documents.
\end{document}
```

## Practical Notes

* Keep one compiler across the entire project.
* Verify fonts are available in local or cloud environments.
* For multilingual bibliographies, use Unicode-safe workflows.

## Related Pages

* [Multi-language documents](/learn/latex/how-to/multi-language-documents)
* [Choosing a compiler](/learn/latex/basics/choosing-compiler)
* [Bibliography and citations](/learn/latex/bibliography-citations)
