答案1
\documentclass[a4paper,12pt]{article}
\usepackage{mathtools,amssymb}
\begin{document}
\[BS(t)=\frac1N \textstyle\sum_{i=1\ldots N}
\begin{cases}
(0-\hat{S}(t/z_i))^2 & \textup{if } t_i\leq t\\
(1-\hat{S}(t/z_i))^2 & \textup{if } t_i > t
\end{cases}\]
\end{document}
使用的字体是 Cambria Math(使用 XeLaTeX 引擎)。下面是使用此字体的版本。您可以观察到它们相似或相同。添加到之前的 MWE 我们有:
\usepackage{unicode-math}
\usepackage{fontspec}
\setmathfont{Cambria Math}
\documentclass[a4paper,12pt]{article}
\usepackage{mathtools,amssymb}
\usepackage{unicode-math}
\usepackage{fontspec}
\setmathfont{Cambria Math}
\begin{document}
\[BS(t)=\frac1N \textstyle\sum_{i=1\ldots N}
\begin{cases}
(0-\hat{S}(t/z_i))^2 & \textup{if } t_i\leq t\\
(1-\hat{S}(t/z_i))^2 & \textup{if } t_i > t
\end{cases}\]
\end{document}
答案2
@Sebastiano 的回答给出了 OP 所说的内容说他们想要的。这里有一个替代方案,可能更接近原帖的应该想要。:-) 显然,OP 可以自由选择不同的符号来\mathcal{I}
指示指示函数 [双关语]。
\documentclass{article} % or some other suitable document class
\begin{document}
Put $\mathcal{I}(t,t_i)=0$ if $t_i<t$ and $1$ if $t_i\ge t$.
The Brier Score is given by
\[
\mathrm{BS}(t) = \frac{1}{N} \sum_{i=1}^N
\bigl(\mathcal{I}(t,t_i)-\hat{S}(t/z_i)\bigr)^2 \,.
\]
\end{document}