2
%% AMS-LaTeX Created by Wolfram Mathematica 9.0 : www.wolfram.com

\documentclass{article}
\usepackage{amsmath, amssymb, graphics, setspace}

\newcommand{\mathsym}[1]{{}}
\newcommand{\unicode}[1]{{}}

\newcounter{mathematicapage}
\begin{document}

$\unicode{8bbe}\unicode{6709}\unicode{4e8c}\unicode{6b21}\unicode{591a}\unicode{9879}\unicode{5f0f}$

\begin{equation}
f(x,y)=x^2+x y+y^2
\end{equation}

\end{document}

I cannot see the Unicode words/Chinese words.

I use WinEdt/CTex

1 Answers1

4

If you use a proper font with a modern TeX engine (XeTeX or LuaTeX), it is not difficult to typeset any Unicode glyph.

XeLaTeX is preferred for Chinese. To type Chinese, you should read this post: How does one type Chinese in LaTeX?

Mathematica's output is not very well. It is better to fix the problem in some Mathematica way, if possible. Anyway, this is a patch for your code:

% UTF-8 encoding!
% Compile with XeLaTeX!
\documentclass{article}
\usepackage{amsmath, amssymb, graphics, setspace}

\usepackage{xeCJK}
\setCJKmainfont{SimSun}

\newcommand{\unicode}[1]{\uppercase{\text{\symbol{"#1}}}}

\newcounter{mathematicapage}
\begin{document}

$\unicode{8bbe}\unicode{6709}\unicode{4e8c}\unicode{6b21}\unicode{591a}\unicode{9879}\unicode{5f0f}$

\begin{equation}
f(x,y)=x^2+x y+y^2
\end{equation}

\end{document}
Leo Liu
  • 77,365