我如何注释音节的重量和重音?

我如何注释音节的重量和重音?

参见 Hayes 1995 (韵律重音理论) 中的例子:音节重量和重音分析

我不需要完全复制他的符号,但我希望在 Sharelatex 中找到一种方法(最好使用标准编译器)对音节重量和重音进行类似紧凑且可读的单行分析。

他的符号表示每个音节一个字符,重音节用大长音符号,轻音节用大短音符号,重音和尖音表示主重音和次重音。任何其他通常可读的符号也可以,但如果可能的话,我不想通过更改编译器来破坏我现有的 Sharelatex 文档。希望有一个常用的符号和包。

如果我必须更换编译器,请告诉我必须删除哪些包并将其添加到我的文档中。

答案1

看起来好像没人真正关心这个问题,但我在过去的几个小时里想出了一个合理的答案,所以它在这里:根本不使用 tipa,但它包含在这里是因为我使用它来保持示例字体的外观的一致性。

\usepackage{tipa}

\newcommand{\UL}{\textipa{\smile}}
\newcommand{\SL}{\textipa{\'{\smile}}}
\newcommand{\UH}{\textipa{\textemdash}}
\newcommand{\SH}{\textipa{\'{\textemdash}}}

Samples with macro :
\begin{itemize}
\item {unstressed light /\UL/}
\item {stressed light /\SL/}
\item {unstressed heavy /\UH/}
\item {stressed heavy /\SH/}
\end{itemize}

A moraic trochee is either
/\SL \UL/ or /\SH/

From the example: /\UL \SL \UL/    \emph{at\'{o}mi}

答案2

尝试使用支持这些 Unicode 字符的字体(例如布里尔):

  U+2013 EN 破折号
  U+23D1 韵律短音符
́   U+0301 组合锐音符
̀   U+0300 组合重音符

\documentclass[border=8pt]{standalone}
\usepackage{fontspec}
\setmainfont{Brill}

\def\hightie{\raisebox{2pt}\t}
\def\longum{–}
\def\brevis{⏑}

\begin{document}
% input Unicode characters directly
/ –̀ ⏑́ ⏑ /                           \qquad
% or via commands
/ \`\longum\ \'\brevis\ \brevis\ /  \qquad
% using \hightie because of the ascender on b
\textit{m\hightie bèːléti}          \qquad
‘belt’
\end{document}

答案3

tipa 包提供了几个可能解决您的问题的变音符号。

相关内容