Latexit - 使用 \displaystyle 进行更大的内联数学运算

Latexit - 使用 \displaystyle 进行更大的内联数学运算

我正在使用 Latexit 为一些 PowerPoint 幻灯片生成乳胶。Latex 是一个公式编辑器,可以轻松生成公式并将其导出为 PNG、PDF、SVG 等,以便在其他程序中使用,而无需自己创建完整文档。它的网站是:

https://www.chachatelier.fr/latexit/

我的问题:我似乎无法让内联数学字符更大使用\displaystyle

this is a test sentence for $\mathcal{D}$ inline math $f$ in $g$ this sentence.

呈现为:

在此处输入图片描述

我希望字符更大、更粗等等。

我的最小工作示例说明问题由下面的模板和上面的行组成。

我的模板是:

\documentclass[10pt]{article}
%\usepackage[utf8]{inputenc} %useful to type directly diacritic characters
\usepackage{fontspec}
\setmainfont{Roboto}
\usepackage[usenames]{color} %used for font color
\usepackage{amssymb} %maths
\usepackage{amsmath} %maths
\usepackage{xcolor}


% Seaborn Colors
\definecolor{seabornBlue}{RGB}{76,114,176}
\definecolor{seabornGreen}{RGB}{85,168,104}
\definecolor{seabornRed}{RGB}{196,78,82}

% FLAT UI COLORS
\definecolor{orangePumpkin}{RGB}{211,84,0}
\definecolor{orangeCarrot}{RGB}{230,126,34}
\definecolor{blueBelizeHole}{RGB}{41,128,185}
\definecolor{redAlizarin}{RGB}{231,76,60}
\definecolor{redNasturcianFlower}{RGB}{232,65,24}

% Color shortcuts
\newcommand{\blue}[1]{\textcolor{blueBelizeHole}{#1}}
\newcommand{\green}[1]{\textcolor{seabornGreen}{#1}}
\newcommand{\red}[1]{\textcolor{redNasturcianFlower}{#1}}
\newcommand{\orange}[1]{\textcolor{orangeCarrot}{#1}}
\newcommand{\vecb}[1]{\mathbf{#1}}

答案1

我没有 Roboto 字体,所以我无法准确测试这一点,但可以使用以下前言:

\documentclass[10pt]{article}
\usepackage[svgnames]{xcolor} %used for font color
\usepackage{fontspec}
\setmainfont[Scale=MatchLowercase]{DejaVu Sans}
\usepackage{amssymb} %maths

我得到以下输出:

代码输出

因此请尝试将选项添加[Scale=MatchLowercase]到您的\setmainfont命令中。

使用 Roboto 字体我得到了类似的结果:

在此处输入图片描述

相关内容