I'm using this template for a poster presentation. In the main result block/alertblock, the math symbols do not appear in the desired size. Any help in resolving this is much appreciated.
\documentclass{beamer}
\usepackage{beamerposter}
\usetheme{confposter}
\usepackage{lmodern}
\usepackage{exscale}
\title{.}
\author{.}
\institute{.}
\begin{document}
\begin{frame}
$$\mathcal{D}$$
\[ \sum x \]
\end{frame}
\end{document}
\mathscr{} not the same size as the other symbols:
\documentclass[final]{beamer}
\usepackage{graphicx}
\usepackage{enumerate}
\usepackage{mathrsfs}
\usepackage{amsmath}
\usepackage{amssymb}
\DeclareMathOperator{\sinc}{sinc}
\usepackage[scale=1.24]{beamerposter}
\usetheme{confposter}
\usepackage{lmodern}
\usepackage{exscale}
\setbeamercolor{block title}{fg=ngreen,bg=white}
\setbeamercolor{block body}{fg=black,bg=white}
\setbeamercolor{block alerted title}{fg=white,bg=dblue!70}
\setbeamercolor{block alerted body}{fg=black,bg=dblue!10}
\newlength{\sepwid}
\newlength{\onecolwid}
\newlength{\twocolwid}
\newlength{\threecolwid}
\setlength{\paperwidth}{48in}
\setlength{\paperheight}{36in}
\setlength{\sepwid}{0.024\paperwidth}
\setlength{\onecolwid}{0.22\paperwidth}
\setlength{\twocolwid}{0.464\paperwidth}
\setlength{\threecolwid}{0.708\paperwidth}
\setlength{\topmargin}{-0.5in}
\usepackage{booktabs}
\title{Hello}
\author{}
\institute{}
%----------------------------------------------------------------------------------------
\begin{document}
\addtobeamertemplate{block end}{}{\vspace*{2ex}} % White space under blocks
\addtobeamertemplate{block alerted end}{}{\vspace*{2ex}} % White space under highlighted (alert) blocks
\setlength{\belowcaptionskip}{2ex} % White space under figures
\setlength\belowdisplayshortskip{2ex} % White space under equations
\begin{frame}[t]
\begin{columns}[t]
\begin{column}{\sepwid}\end{column}
\begin{column}{.29\textwidth}
\begin{alertblock}{Abstract}
\end{alertblock}
\begin{block}{Introduction}
\end{block}
\begin{block}{Background material}
\begin{itemize}
\item Note
\[
(\mathscr{A}_r f )(x)=100 x.
\]
\end{itemize}
\end{block}
\end{column} % End of the first column
\begin{column}{\sepwid}\end{column} % Empty spacer column
\begin{column}{.38\textwidth}
\begin{block}{Materials}
\end{block}
\end{column} % End of the second column
\begin{column}{\sepwid}\end{column} % Empty spacer column
\begin{column}{.29\textwidth}
\begin{block}{Conclusion}
\end{block}
\begin{block}{Additional Information}
\end{block}
\end{column}
\end{columns}
\end{frame}
\end{document}

\sum, why all the text and images etc?) In fact, all you need is\documentclass{beamer} \usepackage{beamerposter} \usetheme{confposter} \title{.} \author{.} \institute{.} \begin{document} \begin{frame} \[ \sum x \] \end{frame} \end{document}, and removingconfposteralso removes the problem. (That is why we ask for minimal examples, it makes it a lot clearer where the problem actually is.) – Torbjørn T. Mar 11 '18 at 10:43beamerthemeconfposter.sty, at least the version I have, does\RequirePackage{lmodern}, so it's likely the same problem I referred to in your previous question (now deleted?), and you can try the same fix, as mentioned in e.g. https://tex.stackexchange.com/questions/119660/\usepackage{exscale}. – Torbjørn T. Mar 11 '18 at 10:47\mathcal/\mathscr? (Now that you mention it I remember you saying something about that in your previous question, but there is no mention of them in this question, and they do not appear in the code.) – Torbjørn T. Mar 11 '18 at 17:14$$..$$, see https://tex.stackexchange.com/q/503 – samcarter_is_at_topanswers.xyz Mar 11 '18 at 17:22confposteryou are using? With the one I found on the internet I cannot compile you MWE because of "no line here to end" errors. – samcarter_is_at_topanswers.xyz Mar 11 '18 at 21:38