3

I need to print the IPA symbol for the labiodental flap ⱱ (Unicode U+2C71) and it is not available in the tipa package for phonetic symbols. Is there a way I can use the Unicode hex in the input so I get the symbol as the output?

Jonas Stein
  • 8,909
user154735
  • 33
  • 3

1 Answers1

1

If you can use LuaLaTeX and have access to a suitable font, such as Junicode, you can print out the character by issuing the directive

\char"2C71

A full MWE (minimum working example):

% !TEX TS-program = lualatex
\documentclass{article}
\usepackage{fontspec}
\setmainfont{Junicode} % any font that has an entry at U+2C71
\begin{document}
\char"2C71
\end{document}
Mico
  • 506,678