I have been having difficulty inserting my Arabic transcripts and translations into my paper written in English. In order to typeset the Arabic I have been using polyglossia; however, in my paper, I have also used tipa for IPA symbols. Since tipa requires utf8 and polyglossia is not compatible with utf8, the two are incompatible, and I have not found a way to compile them together.
I am willing to change both or either package; I just need to be able to compile the document together.
Any help is appreciated.
The Arabic works like this:
\documentclass{article}
\usepackage[utf8]{inputenc}
%\usepackage{tipa} %IPA
%\usepackage{utf8}
\usepackage{fontspec}
\usepackage{polyglossia}
\setmainlanguage{english}
\setotherlanguage{arabic}
\newfontfamily\arabicfont[Script=Arabic]{Times New Roman}
\begin{document}
\begin{Arabic}
الجملة مثال
\end{Arabic} \\
\begin{english}
al-\textipa{Z}umla mi\textipa{T}aal
\end{english}
\end{document}
The IPA works like this:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tipa} %IPA
\usepackage{utf8}
%\usepackage{fontspec}
%\usepackage{polyglossia}
%\setmainlanguage{english}
%\setotherlanguage{arabic}
%\newfontfamily\arabicfont[Script=Arabic]{Times New Roman}
\begin{document}
\begin{Arabic}
الجملة مثال
\end{Arabic} \\
\begin{english}
al-\textipa{Z}umla mi\textipa{T}aal
\end{english}
\end{document}
tipaand ASCII-only input for IPA symbols as a relic of the past. Besidesal-\textipa{Z}umlais not the most elegant input. Is there any reason why yoou don't just use the unicode symbols directly?al-ʒumla. Use CMU Serif as the English font – Au101 Sep 21 '18 at 12:19