在 pdfLaTex 中使用自定义字体

在 pdfLaTex 中使用自定义字体

我想知道是否有一种方法可以将 ttf 格式的自定义字体导入 pdfLaTex 而无需更改编译引擎?

我在 Overleaf 上找到了一篇文章:https://www.overleaf.com/learn/latex/Questions/I_have_a_custom_font_I'd_like_to_load_to_my_document._How_can_I_do_this%3F#If_you.27re_using_pdfLaTeX_or_LaTeX

这给出了一个解决方案,但我不确定如何在 TexMaker 中应用同样的东西。

作为参考,以下是我的序言:

\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{listings}
\usepackage{titling}
\usepackage{setspace}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.15}
\usetikzlibrary{arrows}
\usetikzlibrary{calc}
\usepackage{cancel}
\usepackage{lmodern}
\usepackage{fancyhdr}
\usepackage{xcolor}
\usepackage{colortbl}
\setlength{\headheight}{15pt}
\usepackage{indentfirst}
\setlength{\parindent}{0pt}
\usepackage{hhline}
\usepackage[left=1.8cm,right=1.8cm,top=1.9cm,bottom=1.9cm]{geometry}

我尝试导入的字体可以在这里找到: https://fonts.google.com/specimen/M+PLUS+1p

相关内容