【云圖說(shuō)】第235期 DDS讀寫兩步走 帶您領(lǐng)略只讀節(jié)點(diǎn)的風(fēng)采
2049
2025-03-31
1. LaTex安裝
官方網(wǎng)站(https://www.tug.org/texlive)頁(yè)面選擇on DVD,然后選擇downloading the TeX Live ISO image and burning your own DVD,點(diǎn)擊download from a nearby CTAN mirror選擇texlive2020-20200406.iso(iso文件大約4GB)下載;
打開下載好的texlive.iso文件,以管理員身份運(yùn)行install-tl-windowns.batwindows批處理文件;
等待安裝結(jié)束。
按win+R鍵啟動(dòng)命令提示符,輸入cmd進(jìn)入命令窗口,在窗口中輸入tex -v,latex -v等等可查看是否安裝成功。
2. LaTex使用運(yùn)行
新建記事本,并將其后綴改為.tex(或者在Windows命令行中輸入notepad test.tex創(chuàng)建Latex文件);
編譯命令:latex test.tex;編譯含有中文的.tex文件先將文件選擇為utf-8編碼保存,并執(zhí)行命令:xelatex test.tex;
轉(zhuǎn)化為PDF文件命令:divpdffmx test.tex;
刪除中間過(guò)程產(chǎn)生的文件:del *.aux *.div *.log。
全英文文檔:
latex test.tex divpdfmx test.div del *.aux *.div *.log
含有中文的文檔:
xelatex test.tex del *.aux *.div *.log
3. LaTex源文件的基礎(chǔ)編寫
用\documentclass{}引入一個(gè)文檔類,
article文檔類為撰寫論文相關(guān)操作的文檔類。
\documentclass{article} \begin{document} Hello \LaTex. \end{document}
含有中文的源文件(支持中文必須要讓源文件支持utf-8編碼):
\documentclass{article} \usepackage{ctex} %ctex宏包為能夠處理中文的宏包 \begin{document} 你好, \LaTex. \end{document}
LaTex處理中文步驟:
文檔中需要引用ctex宏包
文檔為utf-8編碼進(jìn)行存儲(chǔ)
用xelatex命令對(duì)文件進(jìn)行編譯
4. LaTex源文件基本結(jié)構(gòu)
% 導(dǎo)言區(qū) \documentclass{article} % book, report, letter \title{My First Document} \author{Zhang San} \date{\today} % 正文區(qū)(文稿區(qū)) \begin{document} \maketitle % 輸出標(biāo)題 Hello World! % here is my big formula Let $f(x)$ be defined by the formula $f(x)=3x^2+x-1$ $$f(x)=3x^2+x-1$$ \end{document}
正文區(qū)有且只有一個(gè)document環(huán)境
$公式$(一對(duì)$包圍起來(lái))稱為數(shù)學(xué)模式
單$表示行類公式,雙$$表示行間公式
增加一行空行表示回車(將文字分為兩行)
使用newcommand{}{}定義一個(gè)命令
5. LaTex中的中文處理辦法
源文件編碼為utf-8
使用usepackage{ctex}引用ctex中文宏包
equation環(huán)境可以產(chǎn)生帶有編號(hào)的行間公式:
\begin{document} \begin{equation} % equation環(huán)境產(chǎn)生帶有編號(hào)的行間公式 AB^2 = BC^2 + AC^2. \end{equation} \end{document}
可以在cmd命令行中輸入texdoc ctex命令打開ctex宏包手冊(cè)
使用texdoc lshort-zh命令查看LaTex簡(jiǎn)單使用教程
6. LaTex的字體設(shè)置
字體族
羅馬字體:筆畫起始處有裝飾
無(wú)襯線字體:筆畫起始處無(wú)裝飾
打字機(jī)字體:每個(gè)字符寬度相同,又稱為等寬字體
字體系列
粗細(xì)
寬度
字體形狀
直立
斜體
偽斜體
小型大寫
字體大小
字體族設(shè)置:
\documentclass[11pt]{article} %[11pt]為字體大小為11磅(一般只有10、11、12磅) \usepackage{ctex} \newcommand{\myfont}{\textit{\textsf{Fancy Text}}} % 使用newcommand命令定義一個(gè)\myfont命令 \begin{document} % 字體族設(shè)置(羅馬字體、無(wú)襯線字體、打字機(jī)字體) \textrm{Roman Family} % 設(shè)置字體族為Roman Family字體 \textsf{Sans Serif Family} % 無(wú)襯線字體 \texttt{Typewriter Family} % 打字機(jī)字體 \rmfamily Roman Family % 使用\rmfamily聲明后續(xù)字體為Roman Family字體 % 字體系列設(shè)置(粗細(xì)、寬度) \textmd{Medium Series} \textbf{Boldface Series} {\mdseries Medium Series} {\bfseries Boldface Series} % 字體形狀(直立、斜體、偽斜體、小型大寫) \textup{Uprignt Shape} \textit{Italic Shape} \textsl{Slanted Shape} \textsc{Small Caps Shape} {\upshape Uprignt Shape} {\itshape Italic Shape} {\slshape Slanted Shape} {\scshape Small Caps Shape} % 中文字體(必須使用ctex宏包) {\songti 宋體} \quad {\heiti 黑體} \quad {\fangsong 仿宋} \quad {\kaishu 楷書} 中文字體的\textbf{粗體}與\textit{斜體} \myfont \end{document}
其他中文字體的相關(guān)命令可查看ctex文檔
7. LaTex文檔基本結(jié)構(gòu)
空一行或多行可分段落(首行縮進(jìn))
\par命令:分段落
\命令:分行
\tableofcontents命令:生成目錄
% 引言 \documentclass{article} \usepackage{ctex} % 正文區(qū)(文稿區(qū)) \begin{document} \tableofcontents % \tableofcontents生成目錄 \section{引言} % \section{title}為一級(jí)標(biāo)題 \section{實(shí)驗(yàn)方法} \section{實(shí)驗(yàn)結(jié)果} \subsection{數(shù)據(jù)} %\subsection{title}為二級(jí)標(biāo)題 \subsection{圖表} \subsubsection{實(shí)驗(yàn)條件} %\subsubsection{title}三級(jí)標(biāo)題 \subsubsection{實(shí)驗(yàn)過(guò)程} \subsection{結(jié)果分析} \section{結(jié)論} \section{致謝} \end{document}
8. LaTex中的特殊字符
空行分段,多個(gè)空行等同1個(gè)
自動(dòng)縮進(jìn),絕對(duì)不能使用空格代替
英文中多個(gè)空格處理為1個(gè)空格,中文空格自動(dòng)忽略
漢字與其他字符的間距會(huì)自動(dòng)由XeLaTex處理
禁止使用中文全角空格
% 引言 % 引言 \documentclass{article} \usepackage{ctex} % 正文區(qū)(文稿區(qū)) \begin{document} \section{空格字符} % 1em(當(dāng)前字體中M的寬度) a\quad b % 2em a\qquad b % 約為1/6個(gè)em a\,b a\thinspace b % 0.5個(gè)em a\enspace b % 空格 a\ b % 硬空格 a~b % 1pc=12pt=4.218mm a\kern 1pc b a\kern -1em b a\hskip 1em b a\hspace{35pt}b % 占位寬度 a\hphantom{xyz}b % 彈性長(zhǎng)度 a\hfill b \section{\LaTeX 控制符} \# $ \% \{ \} \~{} \_{} \^{} \textbackslash % 反斜杠使用\textbackslash產(chǎn)生 \& \section{排版符號(hào)} \S \P \dag \ddag \copyright \pounds \section{\TeX 標(biāo)志符號(hào)} % 基本符號(hào) \TeX{} \LaTeX{} \LaTeXe{} \section{引號(hào)} ` ' `` '' ``你好'' \section{連字符} - -- --- \section{非英文字符} \oe \OE \ae \AE \aa \AA \o \O \l \L \ss \SS !` ?` \section{重音符號(hào)(以o為例)} \`o \'o \^o \''o \~o \=o \.o \u{o} \v{o} \H{o} \r{o} \t{o} \b{o} \c{o} \d{o} \end{document}
9. LaTex中的插圖
導(dǎo)言區(qū):\usepackage{graphicx}宏包
語(yǔ)法:\includegraphics[<選項(xiàng)>]{<文件名>}
格式:EPS,PDF,PNG,JPEG,BMP
% 引言 \documentclass{article} \usepackage{ctex} %導(dǎo)言區(qū):\usepackage{graphicx} %語(yǔ) 法:\includegraphics[< 選項(xiàng) >]{< 文件名 >} %格 式:EPS,PNG,PDF,JPEG,BMP \usepackage{graphicx} \graphicspath{{figures/},{pics/}} % 圖片在當(dāng)前目錄下的 figures 目錄, pics 目錄 % 正文區(qū)(文稿區(qū)) \begin{document} \LaTeX{}中的插圖: \includegraphics{wallpaper} \includegraphics{wallpaper.jpg} \includegraphics[scale=0.3]{wallpaper} \includegraphics[height=2cm]{wallpaper} \includegraphics[width=2cm]{wallpaper} \end{document}
10. LaTex中的表格
% 引言 \documentclass{article} \usepackage{ctex} % 正文區(qū)(文稿區(qū)) \begin{document} % 使用tabular環(huán)境生成表格 % l:左對(duì)齊,c:居中對(duì)齊,r:右對(duì)齊,p{< 寬度 >}:產(chǎn)生指定寬度的列格式(內(nèi)容超過(guò)寬度會(huì)自動(dòng)換行) % |:產(chǎn)生豎線,\hline:產(chǎn)生表格橫線 \begin{tabular}{|l||c|c|c|r|p{1.5cm}|} %兩個(gè)|產(chǎn)生雙豎線 \hline % 產(chǎn)生表格橫線 姓名 & 語(yǔ)文 & 數(shù)學(xué) & 英語(yǔ) &備注 & \ \hline \hline % 兩個(gè)\hline產(chǎn)生雙橫線 張三 & 87 & 100 & 98 & 優(yōu)秀 & \ \hline 李四 & 75 & 64 & 52 & 補(bǔ)考另行通知& \ \hline 王五 & 80 & 82 & 78 & & \ \hline \end{tabular} \end{document}
11. LaTex中的浮動(dòng)體
浮動(dòng)體
figure環(huán)境(table環(huán)境類似)
\begin{figure}[htbp]
< 任意內(nèi)容 >
\end{figure}
<允許位置>參數(shù)(默認(rèn)tbp)
h,此頁(yè)(here)——代碼所在的上下文的位置
t,頁(yè)頂(top)——代碼所造的頁(yè)面或之后的頁(yè)面的頂部
b,頁(yè)底(bottom)——代碼所在頁(yè)面或也買你之后頁(yè)面的底部
p,獨(dú)立一頁(yè)(page)——浮動(dòng)頁(yè)面
標(biāo)題控制(caption、bicaption等宏包)
并排與子圖表(subcaption、subfig、floatrow等宏包)
繞排(picinpar、wrapfig等宏包)
% 引言 \documentclass{article} \usepackage{ctex} \usepackage{graphicx} \graphicspath{{figures/}} % 浮動(dòng)體 % figure環(huán)境(table環(huán)境類似) % \begin{figure}[htbp] % < 任意內(nèi)容 > % \end{figure} % <允許位置>參數(shù)(默認(rèn)tbp) % h,此頁(yè)(here)——代碼所在的上下文的位置 % t,頁(yè)頂(top)——代碼所造的頁(yè)面或之后的頁(yè)面的頂部 % b,頁(yè)底(bottom)——代碼所在頁(yè)面或也買你之后頁(yè)面的底部 % p,獨(dú)立一頁(yè)(page)——浮動(dòng)頁(yè)面 % 標(biāo)題控制(caption、bicaption等宏包) % 并排與子圖表(subcaption、subfig、floatrow等宏包) % 繞排(picinpar、wrapfig等宏包) % 正文區(qū)(文稿區(qū)) \begin{document} \LaTeX{}中的插圖: 壁紙可圖\ref{fig-wallpaper} % figure:圖片浮動(dòng)體環(huán)境 \begin{figure}[htbp] % 允許各個(gè)位置 \centering % \centering 居中對(duì)齊 \includegraphics[scale=0.3]{wallpaper.jpg} % \caption{text}:設(shè)置圖片標(biāo)題 % \label{key}設(shè)置標(biāo)簽 \caption{壁紙}\label{fig-wallpaper} \end{figure} 在\LaTeX{}中的表格: % table:表格浮動(dòng)體環(huán)境 \begin{table}[h] % 允許各個(gè)位置 \centering \caption{考試成績(jī)單} \begin{tabular}{|l||c|c|c|r|} \hline 姓名 & 語(yǔ)文 & 數(shù)學(xué) & 英語(yǔ) &備注 \\ \hline \hline 張三 & 87 & 100 & 98 & 優(yōu)秀 \\ \hline 李四 & 75 & 64 & 52 & 補(bǔ)考另行通知 \\ \hline 王五 & 80 & 82 & 78 & \\ \hline \end{tabular} \end{table} \end{document}
12. 數(shù)學(xué)公式初步
% 引言 \documentclass{article} \usepackage{ctex} \usepackage{amsmath} % 正文區(qū)(文稿區(qū)) \begin{document} \section{行內(nèi)公式} \subsection{美元符號(hào)} 交換律是 $a+b=b+a$ \subsection{小括號(hào)} 交換律是 \(a+b=b+a\) \subsection{math環(huán)境} 交換率是 \begin{math} a+b=b+c \end{math} \section{上下標(biāo)} \subsection{上標(biāo)} $3x^{20} - x + 2 = 0$ \subsection{下標(biāo)} $a_1,a_2,a_3...a_{100}$ \section{希臘字母} % 直接使用希臘字母對(duì)應(yīng)的英文名稱 $\alpha$ $\alpha^3 + \beta^2 + \gamma = 0$ \section{數(shù)學(xué)函數(shù)} $\log$ $\sin$ $\cos$ $\arcsin$ $\arccos$ $\ln$ $\sin^2 x + \cos^2 x = 1$ $\sqrt{2}$ $\sqrt[3]{27}$ \section{分式} $3/4$, $\frac{3}{4}$ \section{行間公式} \subsection{美元符號(hào)} $$a+b=b+a$$ \subsection{中括號(hào)} \[a+b=b+a\] \subsection{displaymath環(huán)境} \begin{displaymath} a+b=b+a \end{displaymath} \subsection{自動(dòng)編號(hào)公式equation環(huán)境} 交換律見(jiàn)式\ref{eq:commutative} \begin{equation} a+b=b+a \label{eq:commutative} \end{equation} \begin{equation} ax^2+bx+c=0 \end{equation} \subsection{不編號(hào)公式equation*環(huán)境} % equation*環(huán)境需要添加amsmath宏包 \begin{equation*} ax^2+bx+c=0 \end{equation*} \end{document}
13. 數(shù)學(xué)公式的矩陣
需要引入amsmath宏包
% 引言 \documentclass{article} \usepackage{ctex} \usepackage{amsmath} % 正文區(qū)(文稿區(qū)) \begin{document} % 矩陣環(huán)境,用&分隔列,用\\分隔行 \[ \begin{matrix} 0 & 1\\ 1 & 0 \end{matrix} \qquad % 帶有小括號(hào)的矩陣 \begin{pmatrix} 0 & 1\\ 1 & 0 \end{pmatrix} \qquad % 矩陣兩端加中括號(hào) \begin{bmatrix} 0 & -1 \\ 1 & 0 \end{bmatrix} \qquad % 矩陣兩端加大括號(hào) \begin{Bmatrix} 1 & 0 \\ 0 & -1 \end{Bmatrix} \qquad % 行列式,兩端加單豎線 \begin{vmatrix} i & 0 \\ 0 & i \end{vmatrix} \qquad % 兩端加雙豎線 \begin{Vmatrix} 1 & 2 \\ 3 & 4 \end{Vmatrix} \] \[ A = \begin{pmatrix} a_{11}^2 & a_{12}^2 & a_{13}^2 \\ a_{21} & a_{22} & a_{23} \\ a_{31} & a_{32} & a_{33} \end{pmatrix} \] % 常用省略號(hào):\dots、\vdots、\ddots \[ A = \begin{bmatrix} a_{11} & \dots & a_{1n} \\ & \ddots & \vdots \\ 0 & & a_{nn} \end{bmatrix}_{n \times n} \] % 行內(nèi)小矩陣(smallmatrix)環(huán)境 復(fù)數(shù) $z = (x,y)$ 也可用矩陣 \begin{math} \left( % 需要手動(dòng)加上左括號(hào) \begin{smallmatrix} x & -y \\ y & x \end{smallmatrix} \right) % 需要手動(dòng)加上右括號(hào) \end{math}來(lái)表示。 % array環(huán)境(類似于表格環(huán)境tabular) \[ \begin{array}{r|r} \frac{1}{2} & 0 \\ \hline o & -\frac{a}{b}c \\ \end{array} \] \end{document}
14. 數(shù)學(xué)公式中的多行公式
需要引入amsmath和amssymb宏包
注意數(shù)學(xué)模式下\text{text}命令的使用,該命令可在數(shù)學(xué)模式下輸入中文
% 引言 \documentclass{article} \usepackage{ctex} \usepackage{amsmath} \usepackage{amssymb} % 輸入花體字 % 正文區(qū)(文稿區(qū)) \begin{document} % gather 和 gather* 環(huán)境(可使用\\換行) % 代編號(hào) \begin{gather} a + b = b + a \\ ax^2+bx+c=0 \end{gather} % 不代編號(hào) \begin{gather*} 2 \times 8 = 8 \times 2 \\ 3 + 5 = 5 + 3 = 8 \end{gather*} % 在\\前使用\notag 阻止編號(hào) \begin{gather} a + b = b + a \notag \\ ax^2+bx+c=0 \notag \end{gather} % align 和align* 環(huán)境(用 & 進(jìn)行對(duì)齊) % 帶編號(hào) \begin{align} x &= t + \cos t + 1 \\ y &= 2\sin t \end{align} % 不帶編號(hào) \begin{align*} x &= t & x &= \cos t & x &= t\\ y &= 2t & y &= \sin(t+1) & y &= \sin t \end{align*} % split 環(huán)境(對(duì)齊采用 align 環(huán)境的方式,編號(hào)在中間) \begin{equation} \begin{split} \cos 2x &= \cos^2 x - \sin^2 x \\ &= 2\cos^2 x - 1 \end{split} \end{equation} % cases 環(huán)境 % 每行公式中使用 & 分隔為兩部分 % 通常表示值和后面的條件 \begin{equation} D(x) = \begin{cases} 1, & \text{if}~x \in \mathbb{Q}; \\ 0, & \text{if}~x \in \mathbb{R}\setminus\mathbb{Q} \end{cases} \end{equation} \end{document}
15. 參考文獻(xiàn)BibTex
需要選擇構(gòu)建文獻(xiàn)管理工具為BibTeX
% 引言 \documentclass{article} \usepackage{ctex} %\usepackage{natbib} % natbib宏包可以指定更多的排版格式 \bibliographystyle{plain} % plain unsrt alpha abbrv 排版格式 % 正文區(qū)(文稿區(qū)) \begin{document} 這是一個(gè)參考文獻(xiàn)的引用:\cite{陳紹杰2010boosting} 這是另一個(gè)引用:\cite{huang2002assessment} % 使用\bibliography{bib file}指定參考文件數(shù)據(jù)庫(kù) \nocite{*} \bibliography{test} \end{document}
需要在構(gòu)建中選擇文獻(xiàn)管理工具Biber
% 引言 \documentclass{article} \usepackage{ctex} % biblatex/biber % 新的TEX參考文獻(xiàn)排版引擎 % 樣式文件(參考文獻(xiàn)樣式文件--bbx文件,引用樣式文件--cbx)使用LATEX編寫 % 支持根據(jù)本地化排版,如: % biber -l zh_pinyin texfile 用于指定按拼音排序 % biber -l zh_stroke texfile 用于按筆畫排序 % 添加biblatex宏包,指定樣式和后端程序 \usepackage[style=numeric,backend=biber]{biblatex} % 添加參考文獻(xiàn)數(shù)據(jù)庫(kù),不可以省略文件后綴名 \addbibresource{test.bib} % 正文區(qū)(文稿區(qū)) \begin{document} % 一次管理,多次使用 無(wú)格式化引用\cite{biblatex} 帶方括號(hào)的引用\parencite{李穎2016svm} 上標(biāo)引用\supercite{zhao2017object} \centering % \nocite{*}列出未引用文獻(xiàn),*表示所有為未引用文獻(xiàn) \nocite{*} \printbibliography[title = {參考文獻(xiàn)}] \end{document}
17. LaTeX中的自定義命令和環(huán)境
% 導(dǎo)言區(qū) \documentclass{article} \usepackage{ctex} % \newcommand--定義命令 % 命令只能由字母組成,不能以\end 開頭 % \newcommand{<命令>}[<參數(shù)個(gè)數(shù)>][<首參數(shù)默認(rèn)值>]{<具體定義>} % \newcommand可以是簡(jiǎn)單字符串替換,例如: % 使用\PRC 相當(dāng)于 People's Republic of \emph{China} 這一串內(nèi)容 \newcommand{\PRC}{Peole's Republic of \emph{Chian}} % \newcommand 也可以使用參數(shù) % 參數(shù)個(gè)數(shù)可以從 1 到 9,使用時(shí)用 #1,#2,......,#9 表示 \newcommand{\loves}[2]{#1 喜歡 #2} \newcommand{\hatedby}[2]{#2 不受 #1 喜歡} % \newcommand的參數(shù)也可以有默認(rèn)值 % 指定參數(shù)個(gè)數(shù)的同時(shí)指定了首個(gè)參數(shù)的默認(rèn)值,那么這個(gè)命令 % 的第一個(gè)參數(shù)就成為可選參數(shù)(要使用中括號(hào)限定) \newcommand{\love}[3][喜歡]{#2#1#3} % 正文區(qū)(文稿區(qū)) \begin{document} \PRC \loves{貓兒}{魚} \hatedby{貓兒}{蘿卜} \love{貓兒}{魚} \love[最愛(ài)]{貓兒}{魚} \end{document}
% 導(dǎo)言區(qū) \documentclass{article} \usepackage{ctex} % \renewcommand--重定義命令 % 與\newcommand 命令作用和用法相同,但只能用于已有命令 % \renewcommand{<命令>}[<參數(shù)個(gè)數(shù)>][<首參數(shù)默認(rèn)值>]{<具體定義>} \renewcommand{\abstractname}{內(nèi)容簡(jiǎn)介} % 定義和重定義環(huán)境 % \newenvironment{<環(huán)境名稱>}[<參數(shù)個(gè)數(shù)>][<首參數(shù)默認(rèn)值>]{<環(huán)境前定義>}{<環(huán)境后定義>} % \renewenvironment{<環(huán)境名稱>}[<參數(shù)個(gè)數(shù)>][<首參數(shù)默認(rèn)值>]{<環(huán)境前定義>}{<環(huán)境后定義>} % 為 book 類中定義摘要(abstract)環(huán)境 \newenvironment{myabstract}[1][摘要] % {\small\begin{center}\bfseries #1\end{center} % \begin{quotation}} % {\end{quotation}} % 正文區(qū)(文稿區(qū)) \begin{document} \begin{abstract} 這是一段摘要... \end{abstract} \begin{myabstract} 這是一段自定義格式的摘要... \end{myabstract} \begin{myabstract}[我的摘要] 這是一段自定義格式的摘要... \end{myabstract} \end{document} 最愛(ài)]{貓兒}{魚} \end{document}
% 導(dǎo)言區(qū) \documentclass{article} \usepackage{ctex} % \renewcommand--重定義命令 % 與\newcommand 命令作用和用法相同,但只能用于已有命令 % \renewcommand{<命令>}[<參數(shù)個(gè)數(shù)>][<首參數(shù)默認(rèn)值>]{<具體定義>} \renewcommand{\abstractname}{內(nèi)容簡(jiǎn)介} % 定義和重定義環(huán)境 % \newenvironment{<環(huán)境名稱>}[<參數(shù)個(gè)數(shù)>][<首參數(shù)默認(rèn)值>]{<環(huán)境前定義>}{<環(huán)境后定義>} % \renewenvironment{<環(huán)境名稱>}[<參數(shù)個(gè)數(shù)>][<首參數(shù)默認(rèn)值>]{<環(huán)境前定義>}{<環(huán)境后定義>} % 為 book 類中定義摘要(abstract)環(huán)境 \newenvironment{myabstract}[1][摘要] % {\small\begin{center}\bfseries #1\end{center} % \begin{quotation}} % {\end{quotation}} % 正文區(qū)(文稿區(qū)) \begin{document} \begin{abstract} 這是一段摘要... \end{abstract} \begin{myabstract} 這是一段自定義格式的摘要... \end{myabstract} \begin{myabstract}[我的摘要] 這是一段自定義格式的摘要... \end{myabstract} \end{document}
Windows
版權(quán)聲明:本文內(nèi)容由網(wǎng)絡(luò)用戶投稿,版權(quán)歸原作者所有,本站不擁有其著作權(quán),亦不承擔(dān)相應(yīng)法律責(zé)任。如果您發(fā)現(xiàn)本站中有涉嫌抄襲或描述失實(shí)的內(nèi)容,請(qǐng)聯(lián)系我們jiasou666@gmail.com 處理,核實(shí)后本網(wǎng)站將在24小時(shí)內(nèi)刪除侵權(quán)內(nèi)容。
版權(quán)聲明:本文內(nèi)容由網(wǎng)絡(luò)用戶投稿,版權(quán)歸原作者所有,本站不擁有其著作權(quán),亦不承擔(dān)相應(yīng)法律責(zé)任。如果您發(fā)現(xiàn)本站中有涉嫌抄襲或描述失實(shí)的內(nèi)容,請(qǐng)聯(lián)系我們jiasou666@gmail.com 處理,核實(shí)后本網(wǎng)站將在24小時(shí)內(nèi)刪除侵權(quán)內(nèi)容。