\documentclass[svgnames,A4paper,8pt]{beamer} % dvipsnames gives more built-in colors
\usepackage{ragged2e}
\usetheme{Ilmenau}
\useoutertheme{miniframes} % Alternatively: miniframes, infolines, split
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\definecolor{UBCblue}{rgb}{0.04706, 0.13725, 0.26667} % UBC Blue (primary)
\usecolortheme[named=UBCblue]{structure}
\usepackage[english]{babel}
\usepackage{chemfig}
\begin{frame}[t]\vspace{4pt}
\begin{block}{Logistic regression(to estimate the likelihood of choosing for solid fuel by the households)}
\vspace{0.5em}
\scriptsize Let be the conditional mean \psi and dependent variable Y given explanatory variable X, $\Pr(Y \mid X)$)
\begin{itemize}
\item{}
\item{Sample size: 22,126}
\end{itemize}
\end{block}
\end{frame}
Asked
Active
Viewed 23 times
1
campa
- 31,130

{}to format it. But could you also say what your question is? – Teepeemm Sep 26 '22 at 20:25\psiis a math-mode macro. – campa Sep 26 '22 at 20:26svgnamesto all packages, writexcolor={svgnames}to only pass it to the package you want. The optionA4paperis a) calleda4paperand b) makes no sense in beamer as beamer uses a custom paper format. – samcarter_is_at_topanswers.xyz Sep 26 '22 at 20:40\itemdoes not take an argument, instead of\item{...}you should write\item ...– samcarter_is_at_topanswers.xyz Sep 26 '22 at 20:41\usepackage[T1]{fontenc}, which doesn't allow the full range of font sizes, and so when you use both8ptin the document class options and\scriptsizeat the same time, it ends up using a different, bold, font. You could load thefix-cmpackage to fix this and similar issues:\usepackage{fix-cm}. (Or switch to a different font altogether.) – frabjous Sep 26 '22 at 20:498ptand\scriptsize: the resulting text is just too small for a presentation. – frabjous Sep 26 '22 at 20:54\RequirePackage{fix-cm}prior to\documentclass...which is what the package documentation suggests. – frabjous Sep 26 '22 at 21:01