I have the following in my TeX:
\subsection{Buch 1 問題の日本語}
In my Table of Contents it is correctly displayed but in the subsection itself you can only see 1.1 Buch 1. I guess this is because the subsection title is bold in the main text and the Table of Contents text is not.
Some kind of solution to this to force the 問題の日本語 part not to be bold?
Minimal working example: (use XeLatex)
\documentclass[12pt]{scrartcl}
\usepackage{xltxtra}
\usepackage[ngerman]{babel}
\usepackage{setspace}
\onehalfspacing
\setmainfont[ItalicFont=Arial Kursiv]{Arial Unicode MS}
\begin{document}
\tableofcontents
\section{bla}
\subsection{Buch 1 問題の日本語}
\end{document}

xelatexyou should use the packagepolyglossiaand notbabel– Herbert Feb 9 '12 at 18:47