答案1
该vowel
软件包确实会产生像素化的图表,据我所知,没有办法使用该软件包来避免这种情况。为了说明这一点,我放大了第 1 页上的图表文档:
vowel
我建议不要使用tikz
,这是一个功能强大的图形软件包,拥有大量文档和支持性的用户社区。以下是基本元音图表的示例:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}
\coordinate (hf) at (0,3); % the high front vertex
\coordinate (hb) at (4,3); % the high back vertex
\coordinate (lb) at (4,0); % the low back vertex
\coordinate (lf) at (2,0); % the low front vertex
\draw (hf) -- (hb) -- (lb) -- (lf) -- cycle; % draws the trapezoid
\draw ($(hf)!1/3!(lf)$) -- ($(hb)!1/3!(lb)$); % the high-mid line
\draw ($(hf)!2/3!(lf)$) -- ($(hb)!2/3!(lb)$); % the low-mid line
\draw ($(hf)!0.5!(hb)$) -- ($(lf)!0.5!(lb)$); % the center line
\end{tikzpicture}
\end{document}
生成的图像比使用以下方法生成的图像像素化程度低得多vowel
:
有关如何在此图表上放置元音的讨论,请参阅TikZ/PGF 语言学元音表。