使用元音包时出现的“像素化”图表

使用元音包时出现的“像素化”图表

我正在使用该vowel包,图表看起来“像素化”,如下所示: “像素化”元音表 图表这里对我来说看起来完全没问题,但是当我通过从这里,我得到了同样的事情: 当我生成手册时也是一样 这是我的 MWE:

\documentclass[10pt]{article}
\usepackage{vowel}
\begin{document}
\begin{vowel}
\end{vowel}
\end{document}

答案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 语言学元音表

相关内容