\title{Use \LaTeX to make presentation} \author{Fyind} \date{\today}
\begin{document} \maketitle \tableofcontents \section{create a beamer} \subsection{title} \subsection{chapters} \section{what is in a beamer} \subsection{inser a picture} \begin{equation} a+b+c+d = e \end{equation} \subsection{insert formula} This is my text; \end{document}
Document
图片
1 2 3 4 5 6 7 8 9 10 11 12 13
\documentclass{article} \usepackage{graphicx} % Include the graphicx package
\begin{document}
\begin{figure}[h] % 'h' stands for 'here' \centering \includegraphics[width=0.8\textwidth]{path/to/your/image.png} % Adjust the path and file name \caption{This is a sample figure caption.} \label{fig:sample-figure} \end{figure}
\section{create a beamer} \begin{frame} \subsection{title} \subsection{chapters} \end{frame} \section{what is in a beamer} \begin{frame} \subsection{insert a picture} \begin{equation} a+b+c+d = e \end{equation} \subsection{insert formula} \begin{table} \caption{an example} \begin{tabular}{cccc} \toprule a & b & c & d \\ \midrule 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ \bottomrule \end{tabular} \end{table} \end{frame} This is my text; \end{document}