右腿带符号 n 的 TIPA 问题

右腿带符号 n 的 TIPA 问题

我可以用 TIPA 软件包输入所有符号,但用右腿输入不了 n。我通常使用\textipa{code of the symbol},它适用于我在 TIPA 手册中尝试过的所有代码,但不能用于\textnrleg。我甚至尝试从手册中复制单词然后输入,\textipa{}但不起作用。

\documentclass[12pt]{article}


\usepackage[ngerman]{babel}
\usepackage[a4paper, text={16.5cm, 25.2cm}, centering]{geometry}
\usepackage[sfdefault]{ClearSans}
\usepackage[utf8]{inputenc}
\setlength{\parskip}{1.2ex}
\setlength{\parindent}{0em}

\usepackage{tipa}
\usepackage[ampersand]{easylist}


\begin{document}

Grad der Öffnung

\begin{easylist}[itemize]

& semi-ouvert [\textipa{E}]
& [\textipa{Z}]
& [\textipa{K}]
& [\textipa{\textltailn}]
& [\textipa{\~E}]
& [\textipa{\textnrleg}]

\end{easylist}


\end{document}

在此处输入图片描述

答案1

此字符仅在您加载包时才可用tipx。因此您应该使用:

\usepackage[T1]{tipa}
\usepackage{tipx}

这是有文档记录的,但在文档中很容易被忽略。包中的符号列表tipx在附录 B 中给出。在带注释的符号列表(附录 A)的介绍中出现了以下行:

如果是tipx字体符号,则代码编号带下划线。

您可以在这里看到:

在此处输入图片描述

答案2

该解决方案的 Unicode 版本(使用 lualatex 或 xelatex 编译)如下所示:

Noto Sans 字体

可以使用任何合适的 Unicode 字体。

例如,CMU Serif:

CMU Serif 字体

平均能量损失

\documentclass[12pt]{article}
\usepackage{xcolor}
\usepackage{fontspec}
\usepackage[ngerman]{babel}
\usepackage[a4paper, text={16.5cm, 25.2cm}, centering]{geometry}
%%\usepackage[sfdefault]{ClearSans}
\setmainfont{Noto Serif}
\newfontfamily\fipa{Noto Sans}[Colour=red]
\newfontfamily\fipab{CMU Serif}%'tipa font'
\newcommand\directipa[1]{{\fipa #1}}
\newcommand\mytilde{^^^^0303}

%\usepackage[utf8]{inputenc}
\setlength{\parskip}{1.2ex}
\setlength{\parindent}{0em}

%\usepackage{tipa}
\providecommand\XeTeXpicfile{ROSS, grmmble:-)}% with luatex that means "pretending" to be xetex just while you load the package
%https://tex.stackexchange.com/questions/357686/does-fontspec-no-longer-provide-the-textipa-command
\usepackage{xunicode}
\def\useTIPAfont{\fipa}

\usepackage[ampersand]{easylist}


\begin{document}

Grad der Öffnung

\begin{easylist}[itemize]

& semi-ouvert [\textipa{E}]; direct input = [\directipa{ɛ}]%\directipa for the font
& [\textipa{Z}]; direct input = [\directipa{ʒ}]
& [\textipa{K}]; direct input = [\directipa{ʁ}]
& [\textipa{\textltailn}]; direct input = [\directipa{ɲ}]
& [\textipa{\~E}]; direct input = [\directipa{ɛ^^^^0303}] or [\directipa{ɛ\mytilde}] or [\directipa{ɛ̃}]
& [\textipa{\textnrleg}]; direct input = [\directipa{ƞ}]

\end{easylist}

\newpage
\def\useTIPAfont{\fipab}

Grad der Öffnung

\begin{easylist}[itemize]

& semi-ouvert [\textipa{E}]
& [\textipa{Z}]
& [\textipa{K}]
& [\textipa{\textltailn}]
& [\textipa{\~E}]
& [\textipa{\textnrleg}]

\end{easylist}


\end{document}

附录

也可以使用直接输入,因为它已经是 Unicode 了。MWE 已经更新。

直接输入

相关内容