$\LaTeX$ - 中文(模板)
有些初使用 $\LaTeX$ 进行中文写作的作者,总是会遇到不能正确利用 $\LaTeX$ 编译中文文档的问题,这里总结出一个模板,来帮助这些作者方便进行 $\LaTeX$ 中文写作,具体步骤如下:
- 添加如下代码
- XeLaTeX编译执行
(注意:生成目录需要编译两次)
具体 $\LaTeX$ 代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
| \documentclass[a4paper, 12pt]{article} \usepackage{geometry}
\usepackage{ctex}
\usepackage{graphicx} \usepackage{amsthm} \usepackage{amsmath} \renewcommand{\vec}[1]{\boldsymbol{#1}} \usepackage{amssymb} \usepackage{booktabs} \newtheorem{definition}{Definition}
\newtheorem{definition}{定义} \newtheorem{lemma}{引理} \newtheorem{theorem}{定理}
\DeclareMathOperator{\Ima}{Im} \DeclareMathOperator{\Rank}{rank} \title{数学-计算机视觉} \author{Jayzon Xu}
\begin{document} \maketitle \tableofcontents \newpage
\section{数学} \subsection{高等代数与最优化理论}
A = \begin{pmatrix} 1 & 2 & 3 \\ 2 & 3 & 1 \\ 3 & 1 & 2 \end{pmatrix} $\rho(A) = 6$. \subsection{数学分析} \begin{equation}\label{equ:sin} \sin(z) = 2 \end{equation} 其中,$z\in \mathbb{C}$. 您能求解方程(\ref{equ:sin})吗? \section{计算机视觉} \subsection[Panoptic Segmentation]{全景分割} \subsubsection{语义分割} \subsubsection{实例分割} \end{document}
|
建议使用 MikTex + TeXstudio 作为编译器。