LaTex学习笔记

LaTex学习笔记

  • 命令行操作
  • 文件构成
    • 中文
    • 设置字体
    • 文档结构
    • 插图制表

命令行操作

cd\			#到根目录


notepad  ##打开记事本

notepad test.tex  #打开Latex文件

文件构成

LaTex学习笔记_第1张图片

  • DVI文件查看器
  • 命令行窗口
  • 文档查看器包管理器
  • 简单的文档编辑器

测试程序

//UTF-8编码
\documentclass{
     article}

\usepackage{
     ctex}

\begin{
     document}
 Hello \LaTeX{
     }中文.
\end{
     document}
//shell下生成
pdflatex test.tex
xelatex test.rex

查看ctex文档

texdoc ctex

查看几个说明书

texdoc lshort -zh -ch

查看数学符号表

texdoc symbols-a4

更新镜像(管理员shell下

tlmgr option repository ctan
tlmgr update --self -all

-## 简单的英文程序
LaTex学习笔记_第2张图片


%Instruction
\documentclass{article}%book,report,letter

\title{The Reduced Instruction-Set Computer of ARMv9}
\author{Xu Wang}
\date{\today}

%\usepackage{ctex}

%body
\begin{document}
	\maketitle
	
	Hello World!
	
	%math formula
	Let see $f(x)$ is defined by the formula $$f(x)=ax+b$$ which is used above
	
\end{document}

中文

LaTex学习笔记_第3张图片

%Instruction
\documentclass{article}%book,report,letter

\title{\heiti 后疫情时代的下的经济恢复}
\author{\kaishu Donald Trump}
\date{\today}


\usepackage{ctex}

%body
\begin{document}
	\maketitle
	
	
	%math formula
	
	\begin{equation}
	f(x)=ax+b
	\end{equation}
		\begin{equation}
		f(x)=ax+b
	\end{equation}
\end{document}

设置字体

%Instruction
\documentclass[20pt]{
     article}%book,report,letter

\title{
     \heiti 后疫情时代的下的经济恢复}
\author{
     \kaishu Donald Trump}
\date{
     \today}

\newcommand{
     \myfont}{
     \textbf{
     \testsf{
     \zihao {
     0} {
     Fancy Text}}}}

\usepackage{
     ctex}

%body
\begin{
     document}
	\maketitle
	
	% 字体族设置(罗马字体rm,无衬线字体sf,打字机字体tt
	
	{
     \rmfamily Roman Family}
	
	\sffamily {
     Roman Family}
	
	\myfont
	
	
\end{
     document}

文档结构

LaTex学习笔记_第4张图片


%Instruction
\documentclass[20pt]{
     ctexbook}%articlebook,report,letter

\title{
     \heiti 后疫情时代的下的经济恢复}
\author{
     \kaishu Donald Trump}
\date{
     \today}

\newcommand{
     \myfont}{
     \textbf{
     \testsf{
     \zihao {
     0} {
     Fancy Text}}}}

\usepackage{
     ctex}

%body
\begin{
     document}
	\maketitle
	\tableofcontents
	\section{
     开头}
	   Artificial Intelligence,也就是人工智能,就像长生不老和星际漫游一样,是人类最美好的梦想之一。虽然计算机技术已经取得了长足的进步,但是到目前为止,还没有一台电脑能产生“自我”的意识。是的,在人类和大量现成数据的帮助下,电脑可以表现的十分强大,但是离开了这两者,它甚至都不能分辨一个喵星人和一个汪星人。
	
	图灵(图灵,大家都知道吧。计算机和人工智能的鼻祖,分别对应于其著名的“图灵机”和“图灵测试”)\paragraph{
     图灵机}1950 年的论文里,提出图灵试验的设想,即,隔墙对话,你将不知道与你谈话的,是人还是电脑。这无疑给计算机,尤其是人工智能,预设了一个很高的期望值。但是半个世纪过去了,人工智能的进展,远远没有达到图灵试验的标准。\par 这不仅让多年翘首以待的人们,心灰意冷,认为人工智能是忽悠,相关领域是“伪科学”。
	\subsection{
     实验过程}
	\subsection{
     实验结果}
	\subsubsection{
     实验思考}
	
	\section{
     指令集}
	
	\section{
     致谢}
	
	
\end{
     document}

插图制表


%Instruction
\documentclass[20pt]{
     article} %article,book,report,letter

\title{
     \heiti 后疫情时代的下的经济恢复}
\author{
     \kaishu \copyright Donald Trump}
\date{
     \today}

\newcommand{
     \myfont}{
     \textbf{
     \testsf{
     \zihao {
     0} {
     Fancy Text}}}}

\usepackage{
     ctex}
\usepackage{
     graphicx}
%body
\begin{
     document}
	\maketitle%添加头格式	
	\tableofcontents%制目录
	
	\LaTeX{
     }中的插图
	\begin{
     figure}[h]%浮动体 浮动体位置: h(here) t(top) b(bottom) p(page) 独立一页
		\centering
		\includegraphics[scale=0.9]{
     photo/girl.jpg}%插图
		\caption{
     虞子欣}\label{
     girl}%会产生独立标签
	\end{
     figure}


	\ref{
     tab-score}
	
	
	\begin{
     table}
		\centering
		\caption{
     个人信息}\label{
     tab-score}
			\begin{
     tabular}[l l]{
     l| c |c |c }%制表
			姓名& 生日& 户籍 &班级\\
			\hline
			虞子欣& 1999 &宁德 &999\\
			\hline
		\end{
     tabular}
	\end{
     table}


	
	
	
	\section{
     开头}
	   Artificial Intelligence,也就是人工智能,就像长生不老和星际漫游一样,是人类最美好的梦想之一。虽然计算机技术已经取得了长足的进步,但是到目前为止,还没有一台电脑能产生“自我”的意识。是的,在人类和大量现成数据的帮助下,电脑可以表现的十分强大,但是离开了这两者,它甚至都不能分辨一个喵星人和一个汪星人。如图(\ref{
     girl})
	
	\quad 图灵(图灵,大家都知道吧。计算机和人工智能的鼻祖,分别对应于其著名的“图灵机”和“图灵测试”)\paragraph{
     图灵机}1950 年的论文里,提出图灵试验的设想,即,隔墙对话,你将不知道与你谈话的,是人还是电脑。这无疑给计算机,尤其是人工智能,预设了一个很高的期望值。但是半个世纪过去了,人工智能的进展,远远没有达到图灵试验的标准。\par 这不仅让多年翘首以待的人们,心灰意冷,认为人工智能是忽悠,相关领域是“伪科学”。
	\subsection{
     实验过程}
	\subsection{
     实验结果}
	\subsubsection{
     实验思考}
	
	
	
	\section{
     指令集}
	
	\section{
     致谢}
	
	“你好”
	
	
\end{
     document}

你可能感兴趣的:(一角硬币,笔记,latex)