文本中數學公式的適當大小

文本中數學公式的適當大小

我使用這段程式碼在兩列文字中插入一個數學公式。

($Prob_{SVM}-Prob_{MLP}$)

在此輸入影像描述

和普通的文字相比,是不是有點大了,不太適合呢?我該如何修復它?

答案1

這是一個解決方案和一些具有類似輸出的假代碼。

\documentclass[11pt,a4paper]{report}
\usepackage{amsmath}
\DeclareMathOperator{\Prob}{Prob}
\begin{document}
% best way
$( \Prob_{\text{SVM}} - \Prob_{\text{MLP}} )$

% fake
$( \text{Prob}_{\text{SVM}} - \text{Prob}_{\text{MLP}} )$

% ugly: product of constants P r o b
$( Prob_{\text{SVM}} - Prob_{\text{MLP}} )$
\end{document}

在此輸入影像描述

相關內容