当我从 LYX 生成 PDF 文件时。我的 PDF 文件文本颜色显示为灰色,如第一张图所示。我想要黑色文本,如第二张图所示,即 WORD 生成的 PDF。
\documentclass[12pt,english]{article}
`\usepackage[LGR,T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{color}
\definecolor{document_fontcolor}{rgb}{0, 0, 0}
\color{document_fontcolor}
\usepackage{babel}
\usepackage{float}
\usepackage{textcomp}
\usepackage{pdfpages}
\usepackage{tipa}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage{subscript}
\doublespacing
\usepackage[unicode=true,
bookmarks=true,bookmarksnumbered=false,bookmarksopen=false,
breaklinks=false,pdfborder={0 0 0},backref=false,colorlinks=false]
{hyperref}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands.
\DeclareRobustCommand{\greektext}{%
\fontencoding{LGR}\selectfont\def\encodingdefault{LGR}}
\DeclareRobustCommand{\textgreek}[1]{\leavevmode{\greektext #1}}
\DeclareFontEncoding{LGR}{}{}
\DeclareTextSymbol{\~}{LGR}{126}
%% Because html converters don't know tabularnewline
\providecommand{\tabularnewline}{\\}
%% A simple dot to overcome graphicx limitations
\newcommand{\lyxdot}{.}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
\numberwithin{equation}{section}
\@ifundefined{date}{}{\date{}}
\@ifundefined{showcaptionsetup}{}{%
\PassOptionsToPackage{caption=false}{subfig}}
\usepackage{subfig}
\makeatother
\begin{document}
答案1
假设它实际上是由 LaTeX 创建的第一张图像和由 Word 创建的第一张图像,我认为以下内容将是一个足够的 MWE(实际上,不是最小但差不多):
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{setspace}
\doublespacing
\usepackage{lipsum}
\begin{document}
\paragraph{Heading}
\lipsum[1]
\end{document}
如果是,这只是默认字体,前提是您使用的是T1
字体编码(推荐)。您可能从中获取字体cm-super
,如上图所示,这是我编译的字体。
如果没有T1
编码,您将获得默认的内置字体:
两种情况下,字体均为 Computer Modern Roman。第一种情况下,字体为扩展的 type1 版本;第二种情况下,字体为默认的 Metafont 版本。
Computer Modern Roman 是一种相对较浅的字体。不是以灰色排版。如果打印出来,它可能会看起来更暗,但它仍然是一种相对较浅的字体。
使用双倍行距也会使文本看起来更浅:尽管字体显然也更粗,但 Word 中的图像没有此功能。
这是使用默认间距的结果(当然,行间距仍然比 Word 使用的大):
但是,如果你想要颜色更深的字体,只需选择设计更重的字体即可。例如:
\usepackage{kpfonts}
\usepackage{tgschola}
\usepackage{tgpagella}
\usepackage{venturis2}
\usepackage{paratype}