答案1
如果您希望数学字母为斜体 sans,可以使用\usepackage{cmbright}
。与 不同mathastext
,这里还提供 sans 希腊文支持。
\documentclass[a4paper]{article}
\usepackage[margin=1.5cm]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{refcount}
\usepackage{tgheros}
\renewcommand\familydefault{\sfdefault}
\usepackage{cmbright}
\begin{document}
\[
\frac{(x + 3)^2(x-1)}{x^2 + 1} \le \alpha
\]
\end{document}
该包的另一种替代方案cmbright
是arev
:
答案2
答案3
答案4
我做到了,但我无法处理小于或等于符号:)请帮帮我
\documentclass{beamer}
\usepackage{tgheros}
\usepackage{mathastext}
\usepackage{MnSymbol}
%
\makeatletter
\mathchardef\standardplus=\mathcode`+
\DeclareRobustCommand{\tauyecoplus}{%
\mathbin{\mathpalette\tauyeco@plus\relax}%
}
\newcommand{\tauyeco@plus}[2]{
\raisebox{-0.05\height}{\scalebox{1.4}{\hspace{-0.1mm}$\m@th#1\standardplus$}}%
}
\begingroup\lccode`~=`+ \lowercase{\endgroup\let~}\tauyecoplus
\AtBeginDocument{\mathcode`+="8000 }
\makeatother
%
\newcommand{\thickfrac}[2]{\genfrac{}{}{1.pt}{0}{#1}{#2}}
\newcommand\bigfrac[3][1.0pt]{%
{\thickfrac{\hspace{#1}#2\hspace{#1}}{\hspace{#1}#3\hspace{#1}}}}
\let\oldfrac\frac
\let\frac\bigfrac
%
\begin{document}
$$\frac{(x+3)^2(x-1)}{x^2+1}\leq 0$$
\end{document}