\documentclass{article}
\usepackage{pstricks,pst-xkey,pst-asr,graphicx}\psset{everyasr=\tiershortcuts}
\begin{document}
\asr pem \endasr
\end{document}
你好呀
我如何在 之间使用 IPA 符号\asr \endasr
?例如,从上面的代码,我想将其设为 \asr页\结束。
先感谢您。
答案1
只需加载定义 IPA 符号的包tipa
并使用它们即可
\asr p{\textepsilon}{\textltailm} \endasr
平均能量损失
\documentclass{article}
\usepackage{pstricks,pst-xkey,pst-asr,graphicx}\psset{everyasr=\tiershortcuts}
\usepackage{tipa}
\begin{document}
\asr p{\textepsilon}{\textltailm} \endasr
\end{document}
输出
答案2
您可以直接使用Unicode IPA 键盘布局或者从在线 IPA 选择器粘贴(参见我的答案到使用 Charis SIL 访问 IPA 字符以了解这些选项的讨论)。使用fontspec
声明具有所需字符的 Unicode 字体,然后使用 XeLaTeX 而不是 LaTeX 运行文件。请参阅排版音标:Unicode 还是 tipa?了解使用 Unicode 而非 的原因列表tipa
。
\documentclass{article}
\usepackage{pstricks}
\usepackage{pst-xkey}
\usepackage{pst-asr}
\psset{everyasr=\tiershortcuts}
\usepackage{fontspec} % you need this to be able to use a system font in XeLaTeX or LuaLaTeX
\setmainfont{Charis SIL} % you can load any font you have on your system
\begin{document}
\asr pɛɱ \endasr % no extra markup needed for the IPA characters
\end{document}