使用 XeTeX 编译时,为什么有些字母会变得拉伸和扭曲?

使用 XeTeX 编译时,为什么有些字母会变得拉伸和扭曲?

使用 Helvetica 字体通过 XeTeX 进行编译时,某些字母会垂直拉伸(例如:f 和大写字母),某些字母会变大(例如:j),括号与文本略微不对齐,并且看起来略微模糊,可读性较差。我无法完全解释原因,但看起来确实不太好看。

您必须打开下面的图像并放大才能明白我的意思。

在此处输入图片描述

这很遗憾,因为我想使用 psvectorian 包,它仅与 XeTeX 兼容。

是不是因为我的前言中某些内容导致 XeTeX 看起来很糟糕,还是 XeTeX 看起来不如 PDFLatex 好看?

我的序言:

\usepackage[T1]{fontenc} % This gives us the pound sign
\usepackage{helvet}
\usepackage[english]{babel} %
\usepackage[utf8]{inputenc}
\usepackage{amsmath} 
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage{authblk} % multiple authors
\usepackage[top=1in, bottom=1.25in, left=1.25in, right=1.25in]{geometry}
\usepackage[toc,page]{appendix}
\usepackage{subfiles}
\usepackage{blindtext}
\usepackage{tikz} % For Latex flowcharts
\usetikzlibrary{shapes,arrows,positioning,backgrounds}
\usepackage{booktabs} %nicer tables
\usepackage{caption} %nicer captions
\usepackage{xcolor} 
\usepackage{color}
\usepackage{listings}%to insert code extracts
\usepackage{parskip}
\usepackage{lipsum} %random text filler
\usepackage{float}%exact placement of floats
\usepackage[hidelinks]{hyperref} %make contents page of pdf hyperlinks. Load at end of preamble

\renewcommand{\familydefault}{\sfdefault} %change the font
\linespread{1.5}

我正在使用 ShareLaTeX 编写文档。

相关内容