LaTeX (XeLaTeX を使用) で特殊なギリシャ文字を入力する必要がありますが、方法がわかりません。
\documentclass[14pt]{book}
\usepackage[a4paper,left=0.5cm,right=0.5cm,top=0.8cm,bottom=0.5cm,footskip=0.1cm,headsep=0.2cm]{geometry}
\usepackage{titlesec}
\usepackage{polyglossia}
\usepackage{fontspec}
%\defaultfontfeatures{Ligatures=TeX}
\setmainlanguage{english}
\usepackage{hyperref}
%\usepackage{longtable}
\usepackage{textcomp}
\usepackage{expex}
\usepackage{epltxfn}
\setmainfont{KadmosU}
\usepackage{covington}
\makeatletter
\usepackage{url}
\pagenumbering{Roman}
\begin{document}
ῐ̔́
ῑ̔́
\twoacc['|\={ι}]
\twoacc[\'|\={ι}]
\end{document}
最初と 2 番目を入力したいのですが (Wikipedia から貼り付けただけです)、最後の 2 つにはパッケージ「convington」を使用しますが、3 つの発音区別符号を組み合わせることができる場所が見つかりません (2 つでこれを行うことができます)。
そこで、3 つ(さらにそれ以上)の発音区別符号を配置する方法を知りたいのです。
答え1
それぞれの組み合わせに対して正しい調整方法を見つける必要があります。\kk
マクロはカーニングを追加して、上部のアクセントの相対的な位置を修正します。
\documentclass{article}
\usepackage{fontspec}
% since I don't have the font installed on my system, I placed it in the working directory
\setmainfont{KadmosU}[Extension=.ttf,Path=./]
% use the following line if you have it among the system fonts
%\setmainfont{KadmosU}
% adapted from https://tex.stackexchange.com/a/361120/4427
\DeclareRobustCommand{\combinedaccent}[2]{%
\leavevmode\vbox{\offinterlineskip
\ialign{\hfil##\hfil\cr
\hidewidth#1\hidewidth\relax\cr
\noalign{\vskip -1ex}
#2\cr
}%
}%
}
\newcommand{\dasia}{\raisebox{0.15ex}{\symbol{"A0}\symbol{"0314}}}
\newcommand{\psili}{\raisebox{0.15ex}{\symbol{"A0}\symbol{"0313}}}
\newcommand{\barys}{\symbol{"A0}\symbol{"0300}}
\newcommand{\oxys}{\symbol{"A0}\symbol{"0301}}
\newcommand{\kk}[1]{\kern#1em\relax}
\begin{document}
\combinedaccent{\dasia\oxys\kk{-0.15}}{\u{ι}}
\combinedaccent{\dasia\oxys\kk{-0.15}}{\={ι}}
\combinedaccent{\dasia\oxys\kk{-0.15}}{\={ι}}
\combinedaccent{\kk{0.15}\psili}{\={ι}}
\combinedaccent{\kk{0.25}\oxys}{\={ι}}
\end{document}