Latex入门(一)
作者:互联网
%导言区
\documentclass{ctexart}%设置中文环境用的
%\usepackage{ctex}
\title{Latex学习}%写标题
\author{OnexTwo}%作者
\date{(\today)}%日期 \today意思是今天
%正文区
\begin{document}
\maketitle%显示标题,不写这句话不会显示标题作者日期
\zihao{4}%字号设置
{\kaishu 学习笔记}%中文字体设置
\zihao{5}
1.首先说明latex的中文环境配置
你需要在设置里把构建调成xelatex
然后使用%\documentclass{ctexart}
声明整个文档环境,即可使用中文。
2.说明latex文档的结构分为导言区和正文区。导言区做一些全局配置和标 题书写。
正文区在begin和end之间一般使用{document}还有book等其他类型
3.一些常见字体属性设置
\textrm{Roman family} 罗马字体
\textit{italic shape} 斜体
\texttt{TypeWriter Family} 打印机字体
\slshape slance shape 伪斜体
\textbf{\ 你好} 加粗
\scshape{you are good} 小型大写
4.数学模式
行内公式:$f(x)=e^x$
行间公式:$$f(x)=2^x$$
带编号的公式:
\begin{equation}
U=I·R
\end{equation}
\end{document}
效果:
标签:设置,Latex,begin,end,入门,字体,导言,document 来源: https://blog.csdn.net/qq_41105058/article/details/95049754