如何使用 Latex 编写上述内容?
答案1
您可以使用包cases
中的环境amsmath
。
说明如何执行此操作的代码是
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
P_v(E/k,T) =
\begin{cases}
1 & \text{if $T\geq 0$} \\
0 & \text{if $T = 0$} \\
-1 & \text{if $T\rightarrow\infty$}
\end{cases}
\]
\end{document}
答案2
\documentclass[preview,border=12pt,12pt]{standalone}% change it back to your own document class
\usepackage{amsmath}
\usepackage{array}
\begin{document}
\[P_v(E/k,T)=
\begin{cases}
1-a_vT+N_{k/Q}(v)T^2, & \mbox{good reduction} \\
1-T, & \mbox{split multicative reduction}\\
1+T, & \mbox{non split multicative reduction}\\
1, & \mbox{aditive reduction}
\end{cases}
\]
\end{document}
输出将会像