Mathbb 字体中的奇怪书法

Mathbb 字体中的奇怪书法

我想添加黑板字母字体。但是,这样做的话字体看起来非常俗气,我想要一些更时尚的字体。请参阅图片以供参考:

这就是我所拥有的:

在此处输入图片描述

这就是我要的:

在此处输入图片描述

任何帮助都将不胜感激,以下是 MWE:

\documentclass[usenames,dvipsnames,aspectratio=169]{beamer} % --> loads xcolor and hyperref

%----------------------------------------------------------------------------------------------
% PACKAGES
%----------------------------------------------------------------------------------------------

% Loaded by default in beamer (and many others...)
%\usepackage{
%   amsthm
%   color
%   enumerate
%   fourier
%   hyperref
%   xcolor
%   graphicx        % A more advanced package for images and figures
%}

\usepackage{
    fourier,            % For typesetting
    newtxtext,      % To set the fonts to Times New Roman
    import,         % to import files
    caption,            % To include captions in tables and figures
    subcaption,     % To include subcaptions in tables and figures  
    float,          % Improves floating objects: figures and tables
    nicematrix,         % To make nice tables
    multicol,       % For multicolum slides
    ragged2e,       % New commands and environments for ragged tex
    mathtools,      % Loads and enhances the features of amsmath
    amssymb,            % Enhances symbols in math environment
    cancel,         % to cross a term in an equation
    marvosym,       % Adds Marting Vogel's symbols: euro, comunicaiton,...
}                   
    
%TO BE REMOVED
    %\let\marvosymLightning\Lightning   
    %This sequence of packages controls the mathematical tools of latex
            %\usepackage[makeroom]{cancel}  % to cross a term in an equation



%----------------------------------------------------------------------------------------------
% START OF THE PRESENTATION
%----------------------------------------------------------------------------------------------

\begin{document}
 
    
    \begin{frame}
        \begin{align*}
                \mathbb{NE}
        \end{align*}
    \end{frame}
    
\end{document}

相关内容