1
0
mirror of https://github.com/Didnelpsun/Math.git synced 2026-02-07 12:34:41 +08:00
This commit is contained in:
Didnelpsun
2022-11-10 23:15:58 +08:00
parent 8fa3441705
commit 0c476cbdbc
2 changed files with 55 additions and 1 deletions

2
.gitignore vendored
View File

@@ -8,4 +8,4 @@
*.fdb_latexmk
*.fls
*.tex.bak
*.pdf

54
model/remember.tex Normal file
View File

@@ -0,0 +1,54 @@
\documentclass[UTF8, 12pt]{ctexart}
% UTF8编码ctexart现实中文
\usepackage{color}
% 使用颜色
\usepackage{geometry}
\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}
% 设置四级目录与标题
\geometry{papersize={21cm,29.7cm}}
% 默认大小为A4
\geometry{left=3.18cm,right=3.18cm,top=2.54cm,bottom=2.54cm}
% 默认页边距为1英尺与1.25英尺
\usepackage{indentfirst}
\setlength{\parindent}{2.45em}
% 首行缩进2个中文字符
\usepackage{setspace}
\renewcommand{\baselinestretch}{1.5}
% 1.5倍行距
\usepackage{amssymb}
% 因为所以
\usepackage{amsmath}
% 数学公式
\usepackage[colorlinks,linkcolor=black,urlcolor=blue]{hyperref}
% 超链接
\author{Didnelpsun}
\title{标题}
\date{}
\begin{document}
\maketitle
\pagestyle{empty}
\thispagestyle{empty}
\tableofcontents
\thispagestyle{empty}
\newpage
\pagestyle{plain}
\setcounter{page}{1}
\section{计算机组成原理}
\section{数据结构}
\section{操作系统}
\section{计算机网络}
\section{数学}
\subsection{第一章}
\subsection{第二章}
\subsection{行列式}
\subsection{矩阵}
$E=A^{-1}A$
$AB=O$$R(A)+R(B)<=n$
$R(A^*)=n/1/0$
$A^k=O$,即$E-A^k=E$$E^k-A^k=E$$(E-A)(E+A+A^2+\cdots+A^{k-1})=E$$(E-A)^{-1}=E+A+A^2+\cdots+A^{k-1}$
\end{document}