LaTeX 字体识别

LaTeX 字体识别

我一直在努力辨认这种美丽的字体

在此处输入图片描述

从 Pdf 文件的属性来看,我认为它是 Arial !我在一些论坛上发现它是一种商业字体,而好的替代品是 helvet(我正在使用 Ubuntu)!但编译后,它看起来不一样了!

以下是 PDF 显示的字体列表:

在此处输入图片描述

我以为它是 Arial,因为它是占主导地位的字体!但我想我错了,我怎样才能在 LateX 中使用这种字体?

答案1

也许是cmbrightg并且o对应:

在此处输入图片描述

答案2

我认为是的cmbright。以下是上述相同文本的输出。

在此处输入图片描述

\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{lettrine}
\usepackage[margin=1.2in]{geometry}
\usepackage{setspace}
\doublespacing
\usepackage{cmbright}
\begin{document}

\lettrine[lines=2, findent=3pt, nindent=0pt]{S}{}mart 
devices are rapidly emerging as popular appliances with increasingly powerful computing, networking, and sensing capabilities. Perhaps the most successful examples of such devices so far are smartphones and tablets, which in their current generation are far more powerful than early personal computers (PCs). One of the key differences between such “smart" devices and traditional “non-smart" appliances is that they offer the possibility to easily incorporate third-party applications through online markets (Figure 1.1 depicts such differences)\footnote{here}.

\end{document}

答案3

看起来像标准的现代计算机。但是无衬线字体并不总是容易区分。

\documentclass{article}
\usepackage[T1]{fontenc}
\begin{document}
\sffamily
devices are rapidly emerging as popular\\
networking
\end{document}

在此处输入图片描述

相关内容