我非常喜欢用 来$\C$
表示复数集,就像我用来$\R$
表示实数一样——无论是\mathbb
还是\mathbf
。
其他几个包使用它们自己的定义\C
:(t2aenc.def
从 调用\usepackage[T2A,T1]{fontenc}
);;mismath.sty
以及hyperref.sty
它调用的某个包。
我的解决方法如下面的 MWE 所示。
问题:有没有更简单的方法来实现这一点——无需反复重新定义\C
?
笔记:
- 我不太可能需要
\C
使用babel
T2A。我不确定如何hyperref
使用\C
。(这是塞尔维亚克罗地亚语和斯洛文尼亚语中的双重音符号。) - 我正在使用 pdflatex 和不是xelatex 或 lualatex!
资料来源:MWE:
\documentclass{article}
\usepackage[T2A,T1]{fontenc}
\usepackage[russian,french,german,polish,main=english]{babel}
% Avoid \lll clash with def in amssymb.sty:
\makeatletter
\let\polish@l=\ll
\let\polish@L=\LLL
\let\lll\relax \let\LLL\relax % undefine them
\def\plll{\polish@l}
\def\pLLL{\polish@L}
\makeatother
\usepackage{amsmath,amssymb}
% Choose ONE of the following two defs:
%\newcommand{\numsys}[1]{\mathbb{#1}}
\newcommand{\numsys}[1]{\mathbf{#1}}
% First
\makeatletter
\def\my@textormath{%
\ifmmode
\expandafter\@secondoftwo
\else
\expandafter\@firstoftwo
\fi}
\ifcsname C\endcsname
\let\oldC\C
\def\C{\my@textormath{\oldC}{\numsys{C}}}
\fi
\makeatother
\usepackage{mismath} % defines \Z, \Z, \Q, \R, \C with mathbf
\usepackage[pdftex]{hyperref}
\makeatletter
\def\my@textormath{%
\ifmmode
\expandafter\@secondoftwo
\else
\expandafter\@firstoftwo
\fi}
\@ifpackageloaded{hyperref}{% then
\let\newerC\C
\def\C{\my@textormath{\newerC}{\numsys{C}}}}%
{}
\makeatother
\renewcommand{\N}{\numsys{N}}
\renewcommand{\Z}{\numsys{Z}}
\renewcommand{\Q}{\numsys{Q}}
\renewcommand{\R}{\numsys{R}}
\begin{document}
$\N \subset \Z \subset \Q \subset \R \subset \C$
\end{document}
答案1
如果你想让你的定义获胜,尽可能晚地添加
\AtBeginDocument{\def\C{\numsys{C}}}