我想要获得字符“ʟ̟”(带有 + 变音符号的小型大写字母 L)。
我正在使用 TIPA 包。当我将 L 的 TIPA 与变音符号的 TIPA 结合起来时,我的代码无法编译。我收到错误! Argument of \T3\; has an extra }.
梅威瑟:
\documentclass[]{article}
\usepackage{tipa}
\begin{document}
This works: \textipa{\;L}
And this works: \begin{IPA}\;L\end{IPA}
And this works: \textscl
This diacritic works: \begin{IPA} \|+l \end{IPA}
%But this stops it compiling \begin{IPA} \|+\;L \end{IPA}
\end{document}
答案1
使用
\textipa{\|+{\;L}}
带有附加括号。
\|
执行的命令\@omniaccent
需要两个参数,因此\|+\;L
第二个参数是\;
,这是错误的。