大于小于大于等于小于等于
大于号:\textgreater
小于号: \textless
大于等于:\geq
小于等于:\leq
插入表格
在 LaTeX 中插入表格_Xovee-CSDN博客_latex插入表格
\begin{table}[h!]
\begin{center}
\captionsetup{font={scriptsize}}
\caption{Confidence level and corresponding $\alpha$ and $Z$ values}\label{1}
\begin{tabular}{ c c c }
\hline
confidence level & $\alpha / 2$ & $Z_{1-\frac{\alpha}{2}}$ \\
\hline
80\% & 0.1 & 1.282 \\
90\% & 0.05 & 1.645 \\
95\% & 0.025 & 1.96 \\
98\% & 0.01 & 2.326 \\
99\% & 0.005 & 2.576 \\
\hline
\end{tabular}
\end{center}
\end{table}
可选参数:
{\tiny }
{\scriptsize }
{\footnotesize }
{\small }
{\normalsize }
{\large }
{\Large }
{\LARGE }
{\huge }
{\Huge }
集合中的属于符号
\in
字体加粗
\textbf{} 加粗文字
\bm{} 加粗公式,头文件\usepackage{bm}
表格文字垂直居中
80\% & \makecell*[c] 0.1 & 1.282 \\ 宏包:\usepackage{makecell}
显示行号
\usepackage[switch,pagewise,columnwise]{lineno}
\begin{document}
\linenumbers
\end{document}