有人能告诉我如何在西里尔字母上方找到重音符号(或所有重音符号)的正确位置吗?
有了这个
|| \textbf{\mbox{сп\`{о}р-ен}, -ни} \textit{прил.\,м.} || \textbf{спор\`{я}} \textit{гл.}
我越来越
我正在使用 polyglossia 包、Linux Libertine 字体和 TeXworks。使用拉丁字母一切正常
编辑
\documentclass{article}
\usepackage{fontspec}
\setmainfont[Numbers={OldStyle},Ligatures=TeX]{Linux Libertine}
\usepackage{polyglossia}
\setmainlanguage{czech}
\setotherlanguage{bulgarian}
\begin{document}
\textbulgarian{
|| \textbf{\mbox{сп\`{о}р-ен}, -ни} \textit{прил.\,м.} || \textbf{спор\`{я}} \textit{гл.}
}
\end{document}
答案1
只是为了跟进评论(并且出于好奇),以下是 Noto Serif 中的相同文本:
\documentclass{article}
\usepackage{fontspec}
\setmainfont[Ligatures=TeX]{Noto Serif}
\usepackage{polyglossia}
\setmainlanguage{czech}
\setotherlanguage{bulgarian}
\begin{document}
\textbulgarian{
|| \textbf{\mbox{сп\`{о}р-ен}, -ни} \textit{прил.\,м.} || \textbf{спор\`{я}} \textit{гл.}
}
\end{document}