我正在尝试编译一个文档。这是我的 preamble/main.tex 文件。
\documentclass[10pt]{article} % 11pt font
\usepackage[%
colorlinks = true,
citecolor = blue,
linkcolor = blue,
urlcolor = blue,
unicode,
]{hyperref}
% 1in margins
\usepackage[margin=1in]{geometry}
\usepackage{setspace}
\singlespacing
\usepackage[tiny,compact]{titlesec}
\titleformat{\section}[runin]{\bfseries}{\thesection}{1em}{}
\titleformat{\subsection}[runin]{\bfseries}{\thesubsection}{1em}{}
\usepackage{amsmath}
\usepackage[final]{microtype}
\usepackage{xcolor}
\usepackage{hyperref}
\usepackage{amssymb}
\usepackage{cleveref}
\usepackage{rotating}
\usepackage{tablefootnote}
\newcommand{\note}[1]{\textsf{\textcolor{red}{#1}}}
\newcommand{\comment}[1]{}
\usepackage{etoolbox}
\usepackage{tikz}
\usepackage{caption}
\usepackage[%
autocite = plain,
backend = biber,
doi = true,
url = true,
giveninits = true,
hyperref = true,
maxbibnames = 99,
maxcitenames = 99,
sortcites = true,
style = numeric,
]{biblatex}
\input{bibliography-mimosis}
\addbibresource{references.bib}
\begin{document}
但我收到了这个警告
1Package microtype Warning: Unable to apply patch
脚注'`
在 begin{document}
写有
我该如何纠正该警告信息?
提前致谢
亚历克斯
答案1
@Ulrike Fischer 我采纳了你的建议
我告诉 microtype 它不能使用此行来修补脚注
\usepackage[final,nopatch=footnote]{microtype}
谢谢