我正在使用 TeXnicCenter 并使用 pdflatex 导出(使用文件.bat
)。我想添加一个带有表面的图形(填充为灰色)。我注意到,一旦添加图形,字体质量就会很差。我的例子很简单:
\documentclass{article}
\usepackage{tikz}
\usepackage{tikz-3dplot}
\usepackage{lipsum}
\title{Title}
\author{Authors}
\begin{document}
\maketitle
\section*{Section}
Let us define the slope as
\begin{equation}
m = \frac{\Delta y}{\Delta x} = \frac{y_{2} - y_{1}}{x_{2} - x_{1}}
\label{Eq:slope}
\end{equation}
\lipsum[1]
\begin{tikzpicture}[scale=0.7]
\coordinate (O) at (0,0,0);
\coordinate (PHL) at (2.05,2.32,1.5);
\coordinate (PHR) at (2.363,2.475,1.5);
\coordinate (PLL) at (2.31,1.91,1.5);
\coordinate (PLR) at (2.67,2.097,1.5);
\filldraw[draw=gray,fill=gray,fill opacity=0.1] (PHL) -- (PHR) -- (PLR) -- (PLL) -- cycle;
\draw[-latex] (O) node[left]{\scriptsize $O$} -- (0,0,4);
\draw[-latex] (O) -- (4,0,0);
\draw[-latex] (O) -- (0,4,0);
\end{tikzpicture}
\end{document}
带有和不带有该线的结果如下\filldraw
:
当我添加该\filldraw
行时,它看起来像是旧书的不良副本/扫描件。一旦我将其删除,它就好多了。我以为这是不同软件包的问题,但对于一个简单的示例,我仍然遇到这个问题。
我尝试添加\usepackage[T1]{fontenc}
或\usepackage{lmodern}
但没有任何改变。欢迎提出任何想法!