5

Following on from the post Using TIPA with fontspec, how would I go about using IPA glyphs with XeLaTeX using the actual Unicode UTF-8 characters instead of using the tipa re-encoding? That is, using tipa you can say

\textipa{f@"nEtIks}

but I'd like just to be able to type

fə′nɛtɪks

or even

\textipa{fə′nɛtɪks}

that is, using the actual UTF-8 characters, not the tipa symbolic notation. Is this possible?

Peter Flynn
  • 2,870

1 Answers1

5

As long as you have a font with the characters, why not?

enter image description here

The above being the output from

\documentclass{article}

\usepackage{fontspec}
\setmainfont{Arial}
\begin{document}

fə′nɛtɪks

\end{document}
David Carlisle
  • 757,742