LaTeX 在换行时偶尔会用 $\Gamma$ 替换破折号

LaTeX 在换行时偶尔会用 $\Gamma$ 替换破折号

我正在处理一份大型报告,并注意到输出 PDF 通常在行尾包含 $\Gamma$,而实际上应该是 `-'。然而,情况并不总是如此,如以下屏幕截图所示:出现 $\Gamma$ 的屏幕截图 没有出现 $\Gamma$ 的屏幕截图

我曾尝试将整个序言复制到一个空白文档中,其中只包含上面的定义 3.3,然后它就可以正确打印(换行符处没有 $\Gamma$)。尽管如此,我还是在下面附上了我的序言,希望对您有所帮助:

\documentclass[a4paper, 11pt]{report}


\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{geometry}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage[many]{tcolorbox}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{verbatim}
\usepackage{titling}
\usepackage{tikz}
\usepackage{tikz-cd}
\usepackage{hyperref}
\usepackage{soul}
\usepackage{color}
\usepackage{setspace}
\usepackage{wrapfig}
\onehalfspacing
\usepackage{csquotes}
\usepackage{varwidth}

  \usepackage[
    backend=biber,
    style=alphabetic,
  ]{biblatex}

 \addbibresource{bib.bib}


\geometry{margin = 2.54 cm}

\theoremstyle{plain}
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{prop}[theorem]{Proposition}
\newtheorem{remark}[theorem]{Remark}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{lemma}[theorem]{Lemma}

\theoremstyle{definition}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{example}[theorem]{Example}

\numberwithin{equation}{chapter}


\newcommand{\Hom}[2] {
    \mathrm{Hom}(#1, #2)
}
\newcommand{\id}{
    \mathrm{Id}
}

\newcommand{\tr}{
    \mathrm{Tr\,}
}

\renewcommand{\char}{
    \mathrm{char\,}
}

\setlength{\parindent}{0 pt}

\tcbset{colback=green!10!white,colframe=green!40!black}


\title{[Title]}

\author{\textbf{Author}\\ [Name]}

\date{\today}


不幸的是,我无法可靠地重现此问题,因此我没有最小的工作示例。如果您对我可能尝试的方法有任何想法,那就太好了!最后,我已将报告分解为多个文件,所以问题可能出在命令上\input

感谢您的帮助!

相关内容