I am trying to know what font size is used in equation block:
\begin{equation}
...
\end{equation}
And I stuck because I cannot found it anywhere on the Internet. Not even know how to change the size of equation, but how to know the default or current font size. I found that in equation block \displaystyle font style is used, but I don't know what size it is using.
Here is my settings in TeX code (I used Basic Paper in Overleaf):
% !TeX encoding = UTF-8
% !TEX program = xelatex
\documentclass{article}
\usepackage{polyglossia}
\setdefaultlanguage{russian}
\setotherlanguage{english}
\newfontfamily\russianfont[Script=Cyrillic]{Times New Roman}
\usepackage{amsmath}
\usepackage{fontspec}
\usepackage{unicode-math}
\setmathfont{Latin Modern Math}
\usepackage{indentfirst}
11ptor12pt, the whole document will be typeset in a larger font. You can selectively choose a larger font for the equation by saying something like{\LARGE\begin{equation}...\end{equation}}. – gernot Dec 11 '16 at 16:28\documentclass{article}you must use class option11ptor12pt. – Sebastiano Dec 11 '16 at 16:28