奇怪的交叉点 \cap 符号

奇怪的交叉点 \cap 符号

每当我在 tex 中使用 \cap 时,我都会得到: 在此处输入图片描述

(我不喜欢)而不是:

在此处输入图片描述

有什么方法可以生成第二个交叉符号吗?\cup 也会出现同样的情况。

编辑:这是我一直使用的:

\documentclass[a4paper,14pt,spanish]{article}
\usepackage{extsizes}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage[T1]{fontenc}
\usepackage{amsmath,amsthm,amsfonts,amssymb,amsbsy}
\usepackage{graphicx,color}
\usepackage{pifont,ulem}
\usepackage{multicol,enumerate,prettyref}
\usepackage{enumitem}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{geometry}
\usepackage{mathrsfs}  
\usepackage{thmtools}
\usepackage{tikz}
\DeclareMathOperator{\nullspace}{null}
\DeclareMathOperator{\range}{rango}
\DeclareMathOperator{\re}{Re }
\DeclareMathOperator{\im}{Im }
\geometry{verbose,a4paper,tmargin=1.5cm,bmargin=2.2cm,lmargin=2.1cm,rmargin=1.9cm,headheight=0cm,headsep=0cm}
\setlength\parindent{0pt}
\theoremstyle{definition}
\newtheorem{teo}{Teorema}
\newtheorem{coro}{Corolario}
\newtheorem{defi}{Definici\'on}
\newtheorem{lema}{Lema}
\newtheorem{prop}{Proposici\'on}
\newtheorem{nota}{Nota}
\newtheorem{obs}{Observación}

\newrefformat{fig}{la figura \ref{#1}}
\newrefformat{teo}{el teorema  \ref{#1}}
\newrefformat{lema}{el lema  \ref{#1}}
\newrefformat{prop}{la proposici\'on  \ref{#1}}
\newrefformat{coro}{el corolario  \ref{#1}}
\newrefformat{sec}{la secci\'on \ref{#1}}
\newrefformat{cap}{el cap\'{i}tulo \ref{#1}}
\newrefformat{def}{la definici\'on  \ref{#1}}
\usepackage{mathabx}
\usepackage{blindtext}
\usepackage{multicol}
% comando recta
\usepackage{fancyhdr}
\usepackage{lipsum}

答案1

请始终考虑提供 MWE。这样做通常可以确定问题的原因。

我在这里为你做了这件事。我用你的默认序言设置了一个文档,添加了一个正文(\begin{document} \[ a\cap b\] \end{document})并进行了编译。问题重现了,所以这是一个在职的例如。剩下的就是最小。因此,删除一个又一个的包,看看问题是否仍然存在。这样,您会得到以下 MWE:

\documentclass{article}
\usepackage{mathabx}

\begin{document}
\[a\cap b\]
\end{document}

显然该mathabx包负责重新定义符号。

如何解决这个问题?我们将\cap在 中存储 的原始定义\oldcap,加载mathabx,然后恢复旧的\cap。您必须对 执行相同的操作\cup

\documentclass{article}
\let\oldcap\cap
\usepackage{mathabx}
\let\cap\oldcap

\begin{document}
\[a\cap b\bigcup\]
\end{document}

结果

相关内容