看板LaTeX
标 题[问题] 请问一个特殊符号的打法?
发信站(null) (Mon Apr 29 13:59:33 2013)
转信站ptt!news.ntu!ctuews.n!news.nctu!stanfordtanford.edu!s14no753294qam.0!n
First, you need a font that supports such symbol. Check the following websi=
te
http://www.fileformat.info/info/unicode/char/3011/fontsupport.htm
Second, do what follows (I use xelatex becaues utf)=20
%The Chinese character may be garbbled (funny)
\documentclass[12pt]{article}
\usepackage{fontspec}
\usepackage{xeCJK}
\setmainfont{Times New Roman}
\setCJKmainfont{=E6=A8=99=E6=A5=B7=E9=AB=94} %kaiu.ttf bkai
\begin{document}
\char"3010 text here \char"3011
\end{document}
1F:推 Terrykho:感谢!原来要用\char打code! 04/30 10:03