有人知道如何在 LaTeX 中准确获得实数集的符号吗?
附加图片:
在这幅图中,你可以看到整数、实数和复数的集合的符号。我认为这肯定是一个包。
答案1
这些符号没有确切的字体,因为这些符号是由字母组成的。图片清楚地显示,特别是 Z 和 C 符号是该符号的穷人版本。所有三个符号都是由两个移位字母生成的:
\documentclass{article}
\newcommand*{\CC}{%
\textsf{C\kern-1ex C}%
}
\newcommand*{\RR}{%
\textsf{I\kern-.3ex R}%
}
\newcommand*{\ZZ}{%
\textsf{Z\kern-1ex Z}%
}
\begin{document}
\textbf{a)} nad \ZZ,
\textbf{b)} nad \RR,
\textbf{c)} nad \CC
\end{document}
比较的替代方案
包裹amssymb
\documentclass{article}
\usepackage{amssymb}
\begin{document}
\textbf{a)} nad $\mathbb{Z}$,
\textbf{b)} nad $\mathbb{R}$,
\textbf{c)} nad $\mathbb{C}$
\end{document}
包裹fourier
\documentclass{article}
\usepackage{fourier}
\begin{document}
\textbf{a)} nad $\mathbb{Z}$,
\textbf{b)} nad $\mathbb{R}$,
\textbf{c)} nad $\mathbb{C}$
\end{document}
包裹dsfont
\documentclass{article}
\usepackage{dsfont}
\begin{document}
\textbf{a)} nad $\mathds{Z}$,
\textbf{b)} nad $\mathds{R}$,
\textbf{c)} nad $\mathds{C}$
\end{document}
无衬线版本dsfont
\documentclass{article}
\usepackage[sans]{dsfont}
\begin{document}
\textbf{a)} nad $\mathds{Z}$,
\textbf{b)} nad $\mathds{R}$,
\textbf{c)} nad $\mathds{C}$
\end{document}
字体“Segoe UI Symbol”(LuaTeX/XeTeX)
\documentclass{article}
\usepackage{fontspec}
\newfontface\SymbolFont{Segoe UI Symbol}
\begin{document}
\textbf{a)} nad {\SymbolFont\symbol{"2124}},
\textbf{b)} nad {\SymbolFont\symbol{"211D}},
\textbf{c)} nad {\SymbolFont\symbol{"2102}}
\end{document}
字体“FreeSans”(LuaTeX/XeTeX)
\documentclass{article}
\usepackage{fontspec}
\newfontfamily\SymbolFont{FreeSans}
\begin{document}
\textbf{a)} nad {\SymbolFont\symbol{"2124}},
\textbf{b)} nad {\SymbolFont\symbol{"211D}},
\textbf{c)} nad {\SymbolFont\symbol{"2102}}
\end{document}