如何在 LaTeX 中创建 IPA 音标表

如何在 LaTeX 中创建 IPA 音标表

这是我用作灵感的表格。我不需要相同的布局,但我希望你能提出一个想法:

在此处输入图片描述

我不需要符号下面的例句,例如“豆”、“月亮”、“亲爱的”等。

这是我目前在 LaTeX 中创建的内容tabular:我添加了所有需要的符号的框。因此,这是最终的单元格数量:

在此处输入图片描述

不过我想创建这样的东西:

在此处输入图片描述

我想要灰色而不是黑色的带圈字母。

另外,如果右侧没有足够的空间,我希望标题为“英语 IPA 图表”或只是“IPA 图表”,下面有两个示例。

我还希望表格之间有一些间距,并将粗体\hline水平线设为黑色,并将其他水平线和垂直线设为浅灰色,就像现在这样。

这是我的 LaTeX 代码:

\documentclass[a4paper, 12pt]{article}

\usepackage{geometry}
\usepackage{array}
\usepackage{fontspec}
\usepackage{booktabs}
\usepackage{xcolor}
\usepackage{colortbl}

\newcolumntype{P}[1]{>{\centering\arraybackslash}p{#1}}
\arrayrulecolor{lightgray}

\geometry{a4paper, landscape, left=1in, right=1in, top=0.5in, bottom=0.65in}

\renewcommand{\arraystretch}{2.8}

\setmainfont{Charis SIL}

\begin{document}
    \begin{tabular}{P{5em}|P{5em}|P{5em}|P{5em}|P{5em}|P{5em}}
        \multicolumn{6}{c}{\Large The Simple Vowels}\\
        \specialrule{1.6pt}{1pt}{1pt}
        \fontsize{30pt}{30pt}\selectfont a & \fontsize{30pt}{30pt}\selectfont c & \fontsize{30pt}{30pt}\selectfont e & \fontsize{30pt}{30pt}\selectfont g & \fontsize{30pt}{30pt}\selectfont i & \fontsize{30pt}{30pt}\selectfont k\\ 
        \hline
        \fontsize{30pt}{30pt}\selectfont b & \fontsize{30pt}{30pt}\selectfont d & \fontsize{30pt}{30pt}\selectfont f & \fontsize{30pt}{30pt}\selectfont h & \fontsize{30pt}{30pt}\selectfont j & \fontsize{30pt}{30pt}\selectfont l\\ 
        \specialrule{1.6pt}{1pt}{1pt}
    \end{tabular}

    \begin{tabular}{P{5em}|P{5em}|P{5em}|P{5em}|P{5em}}
        \multicolumn{5}{c}{\Large The Diphthongs}\\
        \specialrule{1.6pt}{1pt}{1pt}
        \huge aa & \huge bb & \huge cc & \huge dd & \huge ee\\ 
        \specialrule{1.6pt}{1pt}{1pt}
    \end{tabular}\\\\

    \begin{tabular}{P{5em}|P{5em}|P{5em}}
        \multicolumn{3}{c}{\Large Stop Consonants}\\
        \specialrule{1.6pt}{1pt}{1pt}%
        \fontsize{30pt}{30pt}\selectfont a & \fontsize{30pt}{30pt}\selectfont c & \fontsize{30pt}{30pt}\selectfont e\\ 
        \hline
        \huge b & \huge d & \huge f\\
        \specialrule{1.6pt}{1pt}{1pt}
    \end{tabular}
    \begin{tabular}{P{5em}|P{5em}}
        \multicolumn{2}{c}{\Large Continuant Consonants}\\
        \specialrule{1.6pt}{1pt}{1pt}
        \huge a & \huge c\\ 
        \hline
        \huge b & \huge d\\
        \specialrule{1.6pt}{1pt}{1pt}
    \end{tabular}
    \begin{tabular}{P{5em}|P{5em}|P{5em}}
        \multicolumn{3}{c}{\Large The Sibilant Sounds}\\
        \specialrule{1.6pt}{1pt}{1pt}
        \huge a & \huge c & \huge e\\ 
        \hline
        \huge b & \huge d & \huge f\\
        \specialrule{1.6pt}{1pt}{1pt}
    \end{tabular}\\\\

    \begin{tabular}{P{5em}|P{5em}|P{5em}|P{5em}|P{5em}}
        \multicolumn{3}{c}{\Large The Glide Sounds}\\
        \specialrule{1.6pt}{1pt}{1pt}
        \huge a & & & &\\ 
        \hline
        & \huge b & \huge c & \huge d & \huge e\\ 
        \specialrule{1.6pt}{1pt}{1pt}
    \end{tabular}
    \begin{tabular}{P{5em}|P{5em}|P{5em}}
        \multicolumn{3}{c}{\Large The Nasal Sounds}\\
        \specialrule{1.6pt}{1pt}{1pt}
        & & \\ 
        \hline
        \huge a & \huge b & \huge c\\ 
        \specialrule{1.6pt}{1pt}{1pt}
    \end{tabular}
\end{document}

我将不胜感激任何帮助。我不一定需要带有垂直文本的“元音”和“辅音”列。即使您能给我一些提示或一些示例代码(不是完整代码),我该如何开始或继续,我也会很感激。

相关内容