打开一个模板要记住选择编译器 1.打开菜单:

2.改成XeLaTeX编译器能解决好多问题

关于中文的问题

我只知道一种设置方法:还有其他的可以查一下官网教程:https://www.overleaf.com/learn/latex/Chinese

关于其他的设置我就是把他自带的\usepackage[english]{babel}改成了\usepackage[UTF8]{ctex}
然后就可以了
有一个链接,讲的是这个:教程

关于空格的问题

关于标题问题 1、层次结构:

Latex的文档层次结构大约有5层,分别是:
section — subsection — subsubsection — paragraph — subparagraph

2,示例:

3,代码: \documentclass{article} \title{XIDIAN UNIVERSITY} %———总标题 \author{YanTaTaiBai}\begin{document} \maketitle % —— 显示标题\tableofcontents %—— 制作目录(目录是根据标题自动生成的) \section{China} %——一号子标题 China is in East Asia. \subsection{Shannxi} %——二号子标题 Beijing is the capital of China. \subsubsection{Xian} %——三号子标题 \paragraph{XIDIAN UNIVERSITY}is a famous university. %{}中的内容加粗显示 \subparagraph{School of telecommunication engineering} is in the best institute of XDU. \subsection{State Key Laboratory of ISN } \paragraph{XiDian University} is the best university in communications industry. \end{document}