rt,就是可以显示这种的:
\documentclass{article}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{booktabs}
\title{LaTeX}
\author{qwq}
\date{\today}
\begin{document}
\maketitle
\section{引言}
这是一个 LaTeX 进阶示例,展示了如何创建一个包含表格、图片和数学公式的文档。
\section{数学公式}
下面是一个著名的数学公式——爱因斯坦的质能方程:
\begin{equation}
E = mc^2
\end{equation}
\section{表格}
下面是一个简单的表格:
\begin{table}[h!]
\centering
\begin{tabular}{ccc}
\toprule
列1 & 列2 & 列3 \\
\midrule
数据1 & 数据2 & 数据3 \\
数据4 & 数据5 & 数据6 \\
数据7 & 数据8 & 数据9 \\
\bottomrule
\end{tabular}
\caption{一个简单的表格}
\label{tab:example}
\end{table}
\section{图片}
下面是一张图片:
\begin{figure}[h!]
\centering
\includegraphics[width=0.5\textwidth]{example-image}
\caption{一个示例图片}
\label{fig:example}
\end{figure}
\end{document}