3

I'm trying to get the near-close near-front unrounded vowel symbol into LaTeX (in the context of a dictionary-style definition). It looks like " i " but without the dot.

The closest I've got is \textsc{i}, which as you probably know is not right.

3 Answers 3

6

Use the tipa package for phonetic symbols.

\documentclass{article}
\usepackage{tipa}
\begin{document}
\textipa{I}
\end{document}

enter image description here

If you want an i without the dot, use \i:

\documentclass{article}
\begin{document}
\i
\end{document}

enter image description here

4

Search for its unicode, check the fonts which support it (or look, if it already exists on your machine), and include it with \symbol{} of the package fontspec.

This requires Xe- or LuaLaTeX:

% arara: lualatex

\documentclass{article}
\usepackage{fontspec}
\setmainfont{Linux Libertine O}

\begin{document}    
    \symbol{"026A}
\end{document}

enter image description here

1
  • @Shaun, you can use this solution without needing to use \symbol if you have a Unicode-enabled TeX editor (most are these days). You can just input ɪ directly in the editor, using an IPA keyboard or copy-and-pasting from an online IPA picker. This way you can easily write something like /ðɪs ɪz ə sɛntɨnts/ without using any LaTeX commands. Commented Nov 12, 2014 at 16:21
3

I think you're looking for \textsci in the tipa package.

\documentclass{standalone}
\usepackage{tipa}
\begin{document}
I \textsc{i} \textsci
\end{document}

enter image description here

1
  • 1
    \textsci is the same as \textipa{I}. The tipa package defines (all?) symbols in two ways: (1) Using shortcut characters in IPA environments (\textipa{...}), (2) Using longer macros in text environments (e.g. \textsci). Commented Nov 11, 2014 at 14:34

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.