【工具】LaTeX(2)入门_字体_符号_章节

1.入门,字体和符号

重点关注头部信息的写法,如文档类、环境等

【工具】LaTeX(2)入门_字体_符号_章节_第1张图片
入门
【工具】LaTeX(2)入门_字体_符号_章节_第2张图片
符号1
【工具】LaTeX(2)入门_字体_符号_章节_第3张图片
符号2
【工具】LaTeX(2)入门_字体_符号_章节_第4张图片
符号3
%笔记
%一个latex只能有一个document环境,即\begin{环境}
%空行为换行
%处理中文要求文档为UTF-8格式
%ctex宏包说明>texdoc ctex
%简单教程>texdoc lshort-zh
%texstudio ctrl+T注释,ctrl+U取消注释


%导言区(全局设置)
\documentclass{article}
%\documentclass{ctexart}
%\documentclass[10pt]{article}
%article,book,report,letter|ctexart
%10pt是参数,表示normal字体大小
\usepackage{ctex}%中文支持
\newcommand\degree{^\circ}%自定义命令,用于支持下面的\degree命令
\title{文件基本结构}
\author{ZJB}
\date{\today}

%正文区
\begin{document}
    %使标题信息生效
    \maketitle
    %普通文本
    Hello world!
    
    你好,\LaTeX!
    
    %行内公式
    inline formula, $f(x)=3x^2+x-1$,$g(x)=\frac{1}{2}x$ and so on.
    
    %块公式
    block formula,$$\tanh(z)=\frac{e^z-e^{-z}}{e^z+e^{-z}}$$.
    
    %带编号公式
    %degree自定义命令
    \begin{equation}
    AB^2=BC^2+AC^2,\angle C=90\degree
    \end{equation}
    
    %字体部分,大括号可以约束范围
    %字体族设置(罗马字体、无衬线字体、打字机字体)
    \textrm{Roman Family}
    \textsf{Sans Serif Family}
    \texttt{Typewriter Family}
    
    {\rmfamily Roman Family}
    {\sffamily Sans Serif Family}
    \ttfamily Typewriter Family
    
    The next paragraph is Typewriter Family too.
    \rmfamily%不限制范围影响后续文本
    
    %字体形状(直立、斜体、伪斜体、小型大写)
    \textup{Upright Shape} \textit{Italic Shape} \textsl{Slanted Shape} \textsc{Small Caps Shape}
    
    {\upshape Upright Shape} {\itshape Italic Shape} {\slshape Slanted Shape} {\scshape Small Caps Shape}
    
    %字体设置(粗细、宽度)
    \textmd{Medium Series}
    \textbf{Boldface Series}
    
    {\mdseries Medium Series}
    {\bfseries Boldface Series}
    
    %中文字体,需要ctex宏包
    {\songti 宋体} \quad {\heiti 黑体} \quad {\fangsong 仿宋} \quad {\kaishu 楷书}
    
    中文\textbf{粗体}和\textit{斜体}
    
    %字体大小
    {\tiny          Hello}
    {\scriptsize    Hello}
    {\footnotesize  Hello}
    {\small         Hello}
    {\normalsize    Hello}
    {\large         Hello}
    {\LARGE         Hello}
    {\huge          Hello}
    {\Huge          Hello}
    
    %中文字大小
    调整前
    \zihao{4}
    调整后
    \zihao{5}
    调整回
    
    \newpage
    %特殊字符
    \section{空白符号}
    Multiple spaces is same as              one;
    
    中文内的空                          格不显示;
    
    中英混排时chinese and english之间自动插入空格;
    
    
    
    多个空行等同于一个;
    
    自动缩进,不能用空格代替;
    
    手动空格用下列语句:
    
    %参考字符
    一二三四五六七
    
    %1em
    啊\quad 啊quad
    
    %2em
    啊\qquad 啊qquad
    
    %1/6em
    啊\thinspace 啊\,啊thinspace
    
    %0.5em
    啊\enspace 啊enspace
    
    %空格
    啊\ \ 啊\ 空格*2
    
    %手动设置
    啊\kern 1em 啊kern
    
    啊\hskip 1em 啊hskip
    
    啊\hskip 2em 啊hskip
    
    %占位宽度
    啊\hphantom{xyz} 啊hphantom
    
    %弹性长度
    啊\hfill 啊hfill
    \section{控制符}
    \# \$ \% \{ \} \~{} \_{} \^{} \textbackslash \&
    \section{排版符号}
    \S \P \dag \ddag \copyright \pounds
    \section{\TeX 标志符号}
    \TeX{} \LaTeX{} \LaTeXe{}
    \section{引号}
    ` ' `` ''
    \section{连字符}
    - -- ---
    \section{非英文字符}
    \oe \OE \ae \AE \aa \AA \o \O \l \L \ss \SS !` ?`
    \section{重音符号(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}

2.文章基本结构

重点关注段落格式的全局设置,了解分章节等

【工具】LaTeX(2)入门_字体_符号_章节_第5张图片
文章结构
%文章结构

%导言区(全局设置)
%\documentclass{article}
\documentclass{ctexart}

%\usepackage{ctex}%中文支持
\newcommand\degree{^\circ}%自定义命令,用于支持下面的\degree命令
\title{文件基本结构}
\author{ZJB}
\date{\today}

%===全局格式设置===
\ctexset{
    section={
        format+=\zihao{-4} \heiti \raggedright,
        name={,、},
        beforeskip=1ex plus 0.2ex minus .2ex,
        afterskip=1ex plus 0.2ex minus .2ex,
        aftername=\hspace{0pt},
        number=\chinese{section}
    }
}

%正文区
\begin{document}
    %使标题信息生效
    \maketitle
    %目录
    %\tableofcontents
    %文章提纲
    \section{背景}
    LaTeX(LATEX,音译“拉泰赫”)是一种基于ΤΕΧ的排版系统,由美国计算机学家莱斯利·兰伯特在20世纪80年代初期开发,\\*****{$\backslash\backslash$}换行*****利用这种格式,即使使用者没有排版和程序设计的知识也可以充分发挥由TeX所提供的强大功能,能在几天,甚至几小时内生成很多具有书籍质量的印刷品。
    
    *****空行分段*****对于生成复杂表格和数学公式,这一点表现得尤为突出。\par *****{$\backslash$}par分段*****因此它非常适用于生成高印刷质量的科技和数学类文档。这个系统同样适用于生成从简单的信件到完整书籍的所有其他种类的文档。
    
    \section{方法}
    \subsection{方法一}
    \subsubsection{条件一}
    \section{结果}
    \subsection{数据}
    \subsection{图表}
    \section{结论}
    \section{引文}
\end{document}

你可能感兴趣的:(【工具】LaTeX(2)入门_字体_符号_章节)