2023-11-07 03:38:46 +08:00

18 lines
636 B
TeX
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

\documentclass{article} %文档类声明
\usepackage{ctex} %一个支持中文宏包,如果不用中文无法显示
\begin{document} %正文
\title{这是一个标题} %标题
\author{作者名字} %作者
\date{} %\maketitle默认会加上当前时间用\date{},空着内容可以取消时间的显示
\maketitle %加了这个,标题、作者等信息才会显示
\section{}
\subsection{小节}
\subsubsection{子小节}
Hello, world! %下面空一行代表换行
\textbf{\textbackslash textbf\{\}可以加粗文本} %\textbf{}可以加粗文本
\section{}
\part{}
\part{}
\end{document}