有人知道如何才能得到+
下标中的小数、\overline
上的短数和底部半范数中的\mathbb{N}
粗数,如下面的符号所示吗?\verts
答案1
以下是一些可能的解决方案。
\smallerplus
如果需要缩小尺寸,并且\shorteroverline{<symbol>}
需要更短的上划线,请使用加号。
语法\fatnorm
是
\fatnorm*{<formula>}
对于“自动扩展版本”\fatnorm[<size>]{<formula>}
对于手动指定的大小;默认值为“无”,但也<size>
可以是\big
、\Big
或。\bigg
\Bigg
\documentclass{article}
\usepackage{amssymb,amsmath}
%% service macros
\newcommand{\shorteroverline}[1]{%
{\mkern1mu\overline{\mkern-1mu#1\mkern-1mu}\mkern1mu}}
\newcommand{\smallerplus}{\mathchoice
{\scriptstyle+}
{\scriptscriptstyle+}
{\scriptscriptstyle+}
{\scriptscriptstyle+}
}
%% N with shorter bar and smaller plus
\newcommand{\Nbarplus}{\shorteroverline{\mathbb{N}}_{\smallerplus}}
%% fat norm
\makeatletter
\newcommand{\@fatnormbar}{\vrule\@width 1.2\p@}
\newcommand{\fatnorm}{\@ifstar\@xfatnorm\@fatnorm}
\newcommand{\@xfatnorm}[1]{%
\left.\kern-\nulldelimiterspace
\@fatnormbar
#1
\@fatnormbar
\right.\kern-\nulldelimiterspace
}
\newcommand\@fatnorm[2][]{%
\mathopen{\vphantom{#1|}\mkern2mu\@fatnormbar\mkern2mu}
#2
\mathclose{\vphantom{#1|}\mkern2mu\@fatnormbar\mkern2mu}
}
\makeatother
\begin{document}
$\Nbarplus$
$\displaystyle\fatnorm*{\frac{1}{2}}
\fatnorm{v}\fatnorm[\big]{v}\fatnorm[\Big]{v}$
\end{document}
\@fatnormbar
如果您想要不同的粗标准条宽度,请更改图中数字。
答案2
由于您没有附加 MWE,我将完整地提供给您:
\documentclass{scrbook}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{dsfont}
\usepackage{amsmath}
\newcommand{\minus}{{}^{-}}
\newcommand{\plus}{{}^{+}}
\newcommand{\bigvert}{\mathop{\rule{1ex}{1em}}}
\makeatletter
\newsavebox\myboxA
\newsavebox\myboxB
\newlength\mylenA
\newcommand*\xoverline[2][0.75]{%
\sbox{\myboxA}{$\m@th#2$}%
\setbox\myboxB\null% Phantom box
\ht\myboxB=\ht\myboxA%
\dp\myboxB=\dp\myboxA%
\wd\myboxB=#1\wd\myboxA% Scale phantom
\sbox\myboxB{$\m@th\overline{\copy\myboxB}$}% Overlined phantom
\setlength\mylenA{\the\wd\myboxA}% calc width diff
\addtolength\mylenA{-\the\wd\myboxB}%
\ifdim\wd\myboxB<\wd\myboxA%
\rlap{\hskip 0.5\mylenA\usebox\myboxB}{\usebox\myboxA}%
\else
\hskip -0.5\mylenA\rlap{\usebox\myboxA}{\hskip 0.5\mylenA\usebox\myboxB}%
\fi}
\makeatother
\begin{document}
\begin{equation}
\mathds{R}_\mathrm{\plus}
\end{equation}
\begin{equation}
\xoverline{\mathds{N}}
\end{equation}
\begin{equation}
\bigvert \cdot \bigvert {}_\infty
\end{equation}
\end{document}
希望这适合您(尽管它可能不是一个非常紧凑的解决方案)。