我遇到的问题是,我的 LuaLaTeX 生成的 PDF 显然没有嵌入它使用的所有字体(我打印文档的网站上是这么说的)。
因此,我将 LuaLaTeX 与 fontspec 包一起使用,并采用以下附加设置
\defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase}
\setmainfont{Calibri}
\setmonofont{Lucida Sans Typewriter}
之前,我意外地将输入包放在了我的文档中,所以我将其删除了,但显然没有帮助。
这是我的完整序言,以防相关:
\documentclass[12pt, a4paper]{scrartcl}
\usepackage{fontspec}
\defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase}
\setmainfont{Calibri}
\setmonofont{Lucida Sans Typewriter}
\usepackage[ngerman]{babel}
\usepackage{graphicx}
\usepackage{tabu}
\usepackage{float}
\usepackage{tabularx}
\usepackage[]{amsmath}
\setlength{\parindent}{0pt}
\usepackage{hyperref}
\usepackage[]{fancyhdr}
\pagestyle{fancy}
\usepackage{xcolor, colortbl}
\usepackage{mathtools}
\usepackage{enumitem}
\usepackage{hyperref}
\usepackage{color}
\usepackage{tikz}
\usetikzlibrary{calc}
\usetikzlibrary{arrows}
\usepackage{mathtools}
\definecolor{pblue}{rgb}{0.13,0.13,1}
\definecolor{pgreen}{rgb}{0,0.5,0}
\definecolor{pred}{rgb}{0.9,0,0}
\definecolor{pgrey}{rgb}{0.46,0.45,0.48}
\usepackage[]{calc}
\usepackage[]{fp}
\usepackage[onehalfspacing]{setspace}
\usepackage{sectsty}
\usepackage{pdfpages}
\usepackage{listings}
\usepackage{nameref}
\usepackage{ltablex}
我已经在 Google 上搜索了很多次,但似乎找不到解决方案,有人可以帮忙吗?