我写了一个文档,使用 tcb-theorems 将定理包含在文本中。我想试试如果标题是用我使用的无衬线字体写的,我的文档会是什么样子。所以我的问题是:我如何将下面写的 tcbtheorem 环境的标题(也许还有文本)的样式从衬线字体更改为无衬线字体?
\documentclass[a4paper, 11pt]{book}
\usepackage[a4paper,left=3cm,right=3cm,top=3cm,bottom=3cm]{geometry}
\usepackage{lmodern}
\usepackage{tcolorbox}
\tcbuselibrary{theorems}
\newtcbtheorem[number within=section]{theorem}{Theorem}
{colback=blue!25,colframe=blue!25!black,fonttitle=\bfseries}{th}
\begin{document}
afasdsf
\begin{theorem}{Some Titel}{}
Some Text.
\end{theorem}
\end{document}