通过 tipaman 包添加长元音纯

通过 tipaman 包添加长元音纯

我想添加第五个元音

在此处输入图片描述

您可以在这里下载脚本

https://ctan.org/tex-archive/fonts/tipa/tipa

我做得对吗

    \documentclass[a4paper,12pt,pdftext]{book}
\usepackage[french]{minitoc}
\setcounter{minitocdepth}{1}
\usepackage[french]{babel} 
\usepackage[T1]{fontenc} 
  \usepackage{graphicx}
\usepackage{libertine}
\usepackage[colorlinks=true,linkcolor=blue,urlcolor=black,bookmarksopen=true]{hyperref}
\usepackage{bookmark}
%\usepackage{tipa}
\usepackage{tipaman}
%---PACKAGES-------------------------------------------------------------------


\begin{document}

\ipxitem{\textinvscripta :}{Inverted script A}%
  {}%
  {\tbs textinvscripta}{}{\PSG}{'041}

 \textipa{/ \textinvscripta : /}

\end{document}

答案1

您似乎正在寻找\textlengthmark应该替换冒号的东西:

示例输出

\documentclass[a4paper,12pt,pdftext]{book}
\usepackage[french]{minitoc}
\setcounter{minitocdepth}{1}
\usepackage[french]{babel}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{libertine}
\usepackage[colorlinks=true,linkcolor=blue,urlcolor=black,bookmarksopen=true]{hyperref}
\usepackage{bookmark}
%\usepackage{tipa}
\usepackage{tipaman}
%---PACKAGES-------------------------------------------------------------------


\begin{document}

\ipxitem{\textinvscripta\textlengthmark}{Inverted script A (plus long)}%
  {}%
  {\tbs textinvscripta}{}{\PSG}{'041}

 \textipa{/\textinvscripta\textlengthmark/}

\end{document}

相关内容