Latex Note

latex note while learning.

基本框架

%导言区//全局设置
\documentclass{article}%ctexbook,ctexreport,book,report,letter

\usepackage{ctex}%中文


\title{My First Document}
%title{\heiti 杂谈}%字体调整
\author{merca}
\date{\today}

%正文区(文稿区)
\begin{document}
    \maketitle%输出整个标题

\end{document}
%字体有5种属性,粗细,宽度,斜体,伪斜体

tlmgr update –all//更新
tex -v
https://www.jianshu.com/p/538856b3e5c0
为保证中文可以正常使用:utf-8
\usepackage{ctex}%中文
$f(x)$
$$fo$$

说明文档

texdoc ctex
texdoc lshort-zh
texdoc graphicx
texdoc booktab longtab tabu
shift+crtl+点击pdf即可反向查找,如图代码被白框包围。
https://zhuanlan.zhihu.com/p/106167792

\\换行
\par产生新的段落

1)注释:组合键“Ctrl+K+C”;//Key关键,Comments注释
2)取消注释:组合键“Ctrl+K+U”。 //Uncomment取消注释
适当插入空行使源代码清晰

字体字号

%导言区//全局设置
%\documentclass{article}%ctexbook,ctexreport,book,report,letter
\documentclass[10pt]{article}%normal szie,ctexbook,ctexreport,book,report,letter

\usepackage{ctex}%中文


\title{My First Document}
%title{\heiti 杂谈}%字体调整
\author{merca}
\date{\today}

%正文区(文稿区)
\begin{document}
    \maketitle%输出整个标题

    %字体族设置(罗马字体,无衬线字体,打字机字体)
    %字体命令textrm
    \textrm{Roman Family} \textsf{Sans Serif Family} \texttt{Typewriter Family}

    %字体声明rmfamily括号为作用域,声明范围
    {\rmfamily Roman Family} {\sffamily Sans Serif Family}{\ttfamily Typewriter Family}

    \sffamily who you are? you find self on everyone around take you as thte same others!
    are you wiser than others? definitely no.

    %字体系列设置(粗细宽度)
    \textmd{Medium Series} 
    \textbf{Boldface Series}
    {\mdseries Medium Series}
    {\bfseries Boldface Series}

    %字体形状(直立、斜体、伪斜体、小型大写)
    \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}

    %中文字体 point:使用ctex的包
    {\songti 宋体} \quad
    {\heiti 黑体} \quad
    {\fangsong 仿宋} \quad
    {\kaishu 楷书} \quad

    中文字体的\textbf{粗体}\textit{斜体}

    %字体大小设置
    {\tiny Hello}\\
    {\scriptsize Hello}\\
    {\footnotesize Hello}\\
    {\small Hello}\\
    {\normalsize Hello}\\
    {\large Hello}\\
    {\LARGE Hello}\\
    {\huge Hello}\\
    {\Huge Hello}\\

\end{document}
%字体有5种属性,粗细,宽度,斜体,伪斜体

文档基本格式

%导言区//全局设置
%\documentclass{article}%ctexbook,ctexreport,book,report,letter
\documentclass[10pt]{ctexbook}%normal szie,ctexbook,ctexreport,book,report,letter

\usepackage{ctex}%中文

\title{My First Document}
\author{merca}
\date{\today}

%===设置标题格式=====
% \ctexset{
%     section = {
%         format+ = \zihao{-4} \heiti \raggedright,
%         number = \chinese{section},
%         beforesikp = 1.0ex plus 0.2ex minus2ex,
%         afterskip =
%     }
% }
%正文区(文稿区)
\begin{document}
    \tableofcontents

    \chapter{绪论}
    \section{引言}
    latex中文教程-15集从入门到精通包含各种latex操作
    科技野生技术协会
    2017-11-04 \par 12:30:57
    23.2万播放 · 
    2870弹幕
    \section{实验方法}
    \section{实验结果}
        \subsection{数据}
        \subsection{图表}
            \subsubsection{实验条件}
            \subsubsection{实验过程}
        \subsection{结果分析}
    \section{结论}
    \section{致谢}
    \chapter{实验结果分析}
    \section{结论}
    \section{致谢}


\end{document}

特殊字符

%正文区(文稿区)
\begin{document}
    \section{空白符号}
    空行分段,多个空行等同于一个\par
    自动缩进,绝对不能使用空格代替
    英文中空格处理为一个空格,中文中空格被忽略
    汉字与其他字符的间距自动由xelatex处理
    禁止使用中文全角空格

    1em(当前字体中M的宽度)\par
    eg. a\quad b \par
    2em(当前字体中2M的宽度) \par
    eg. a\qquad b \par
    1/6em(当前字体中M的宽度) \par
    eg. a\,b a\thinspace b \par
    空格(当前字体中M的宽度) \par
    eg. a\ b  \par
    硬空格(当前字体中M的宽度) \par
    eg. a~b  \par
    1pc(=12pt=4.218mm) \par
    eg. a\kern 1pc b \par
    eg. a\kern -1em b \par
    eg. a\kern 1em b \par
    eg. a\hspace{35pt}b \par
    占位宽度\par
    a\hphantom{xyz}b\par
    弹性长度\par
    a\hfill b\par

    \section{\LaTeX 控制符}
    \# \$ \% \{\} \~{} \_{} \^{} \textbackslash
    \&
    \section{排版符号}
    %\S  \P \dag \daag \copyright \pounds
    \section{Tex 标志符号}
    %\Tex{} \LaTeX{}

    \section{引号}
    `'  ``'' \par
    ``数字1键左边的引号''

    \section{连字符}
    - -- ---
    \section{非英文字符}
    \oe \OE \ae \aa \o
    \section{重合符号}
\end{document}

Latex中的插图

%导言区//全局设置
%语法 \includegraphics{}
%\documentclass{article}%ctexbook,ctexreport,book,report,letter
\documentclass{ctexbook}%normal szie,ctexbook,ctexreport,book,report,letter
\usepackage{ctex}%中文
\usepackage{graphicx}
\graphicspath{{figures/},{pics/}}%图像在当前图像的figures目录
\title{Latex中的插图}
\author{merca}
\date{\today}

%正文区(文稿区)
\begin{document}
    \LaTeX{}中的插图

    \includegraphics[scale=0.3]{VSquick.jpg}

    \includegraphics[height=2cm]{VSquick.jpg}

    \includegraphics[width=2cm]{VSquick.jpg}

    \includegraphics[width=0.2\textwidth]{VSquick.jpg}



    \begin{figure}[hbt!]%hbt强制放在页面中间 
    %{figure*}跨栏的浮动体只能出现在下一页
        \centering
        \includegraphics[width=0.8\linewidth]{1.jpg}%\linewidth行宽的
        %\includegraphics[width=0.8\textwidth]{1.jpg}%\textwidth版面的
        %\includegraphics[width=10cm]{1.jpg}
        \caption{for example, that of the tunnel diode}
        \label{fig:my_label}%用来交叉引用
    \end{figure}
    See the Figure \ref{fig:my_label}

   \begin{figure}[hbt!]
        \centering
        \includegraphics[width=1\linewidth]{res/fcc1.jpg}%\linewidth行宽的
        %\includegraphics[width=0.8\textwidth]{1.jpg}%\textwidth版面的
        %\includegraphics[width=10cm]{1.jpg}
        \caption{Total energy vs lattice constant for Face centered Cubic (fcc) Copper}
        \label{fig:fcc}%用来交叉引用
    \end{figure



\end{document}

表格浮动体

%导言区//全局设置
%语法 \includegraphics{}
%\documentclass{article}%ctexbook,ctexreport,book,report,letter
\documentclass{ctexbook}%normal szie,ctexbook,ctexreport,book,report,letter
\usepackage{ctex}%中文
\usepackage{graphicx}
\graphicspath{{figures/},{pics/}}%图像在当前图像的figures目录
\title{Latex中的插图}
\author{merca}
\date{\today}

%正文区(文稿区)
\begin{document}
    快捷键见图\ref{fig-lion}%交叉引用
    \begin{figure}[htbp]
        \centering
            \includegraphics[width=2cm]{figures/VSquick.jpg}
            \caption{\LaTeX 系统}\label{fig-lion}
    \end{figure}\LaTeX{}中的表格,可以由下表\ref{tab-score}所示
    \begin{table}[h]
        \centering
        \caption{成绩单}\label{tab-score}
        \begin{tabular}{||l|| c |c |c |p{2cm}||}%lcr对齐方式左中右%p为固定宽度
            \hline
            姓名 & 语文 & 数学 & 外语 & 备注 \\
            \hline \hline
            A & 99 & 56 & 32 & ddsfsdfdsfdsfdsfdsf \\
            \hline
            B & 语文 & 数学 & 外语 & d \\
            \hline
            C & 语文 & 数学 & 外语 & s \\
            \hline
            D & 语文 & 数学 & 外语 & z \\
            \hline
            E & 语文 & 数学 & 外语 & d \\
            \hline
            %\\表示换行,&表示不同列%p为宽度固定能自动换行
        \end{tabular}
    \end{table}

    \begin{figure}[htbp]
        \centering
            \includegraphics[width=2cm]{figures/VSquick.jpg}
            \caption{\LaTeX 系统2}\label{fig-lion2}
    \end{figure}

    \begin{figure}[htbp]
        \centering
            \includegraphics[width=2cm]{figures/VSquick.jpg}
            \caption{\LaTeX 系统3}\label{fig-lion3}
    \end{figure}


    \begin{table}[hbt!]
        \centering
        \begin{tabular}{ c  c  l  r }%三线表
        \toprule
            dfkl & sdfsd & fdf & happy\\%表格下一行/不能自动换行
        \midrule
            sdfds & sdfds & dfsf & fdsf\\
        \bottomrule
        \end{tabular}
        \caption{second table}
        \label{tab:first}
    \end{table}


\end{document}
%浮动体
%实现灵活分页
% 交叉引用
% figure环境
% \begin{figure}[<允许位置>]
    % h,此处 here-代码所在的上下文位置
    % t,页顶 top-代码所页面或之后页面的顶部
    % b,bottom-代码所页面或之后页面的底部
    % p,独立一页page-浮动页面

    % 标题控制{caption,bicaption}
    % 并排与子图表(subcaption,subfig,floatrow等宏包)
    % 绕排(picinpar,wrapfig等宏包)
% \end{figure}

数学公式

%导言区//全局设置
%\documentclass{article}%ctexbook,ctexreport,book,report,letter
\documentclass[10pt]{ctexbook}%normal szie,ctexbook,ctexreport,book,report,letter

\usepackage{ctex}%中文

\title{My First Document}
\author{merca}
\date{\today}

%正文区(文稿区)
\begin{document}

    \section{简介}
    \LaTeX{}将排版内容分为文本模式和数学模式。文本模式用于普通文本排版
    数学模式用于数学公式排版
    \section{行内公式}
        \subsection{美元符号}
        交换律是 $a+b=b+a$,如 $1+2=5-2$
        \subsection{小括号}
        交换律是 \(a+b=b+a\),如 $1+2=5-2$
        \subsection{math环境}
        交换律是 \begin{math}
            a+b=b+a
        \end{math}
    \section{上下标}
        \subsection{上标}
        $3x^2 - x + 2 = 0$
        $3x^{20-2} - x + 2 = 0$
        \subsection{下标}
        $a_0,a_1,a_{200}$
    \section{希腊字母}
    $\alpha$
    $\beta$
    $\gamma$
    $\epsilon$
    $\pi$
    $\omega$
    $\delta$
    $\theta$
    $\Pi$
    $\Omega$
    \(\alpha^3 + \beta^2 + \gamma = 0\)
    \section{数学函数}
    \(log\)
    \(sin\)
    \(cos\)
    \(arcsin\)
    \(arccos\)
    \(ln\)
    \(sin^2 x+\cos^2x=1\) \\
    \(y = \sin^{-1}x \) \\
    \(y = \ln x\) \\
    \(sqrt{x^2 + y^2}\) \\
    \(sqrt{2 + \sqrt{2}}\) \\
    \(sqrt[4]x\)%4为开放次数
    \section{分式}
    大约是原体积的\(3/4\) \\
    大约是原体积的$\frac{3}{4}$ \\
    \section{行间公式}
        \subsection{美元符号}
        交换律为
        $$a+b=b+a$$$$1+2=2+1$$
        \subsection{中括号}
        交换律是
        \[a+b=b+a\]
        \subsection{displaymath环境}
        交换律是
        \begin{displaymath}
            a+b=b+a
        \end{displaymath}
        \subsection{自动编号公式equation环境}
        交换律见公式\ref{eq:commutative}
        \begin{equation}
            a+b=b+a 
        \end{equation}\label{eq:commutative}

        % 交换律见式\ref{eq:commutative3}
        % \begin{equation*}
        %     a+b=b+a \label{eq:commutative3}
        % \end{equation*}
        \par 利用自动化
    \section{致谢}


\end{document}

数学矩阵处理

%导言区//全局设置
%\documentclass{article}%ctexbook,ctexreport,book,report,letter
\documentclass[10pt]{ctexbook}%normal szie,ctexbook,ctexreport,book,report,letter

\usepackage{ctex}%中文
\usepackage{amsmath}%矩阵的宏包
\title{My First Document}
\author{merca}
\date{\today}

%正文区(文稿区)
\begin{document}
%矩阵环境,用&分割列,\\分割行row
    \[
    \begin{matrix}
        0 & -1\\
        i & 0
    \end{matrix} 
    \begin{pmatrix}%小括号
        0 & -1\\
        i & 0   
    \end{pmatrix}
    \begin{bmatrix}%中括号
        0 & -1\\
        i & 0   
    \end{bmatrix}
    \begin{Bmatrix}%大括号
        0 & -1\\
        i & 0   
    \end{Bmatrix}
    \begin{vmatrix}%单竖线
        0 & -1\\
        i & 0   
    \end{vmatrix}
    \begin{Vmatrix}%双竖线
        0 & -1\\
        i & 0   
    \end{Vmatrix}
    \]
    \[
        %可以使用上下标
    A= \begin{pmatrix}
        A_{11}^2 & a_{12}^2 & a_{13}^2 \\
        A_{11}^2 & a_{12}^2 & a_{13}^2 \\
        A_{11}^2 & a_{12}^2 & a_{13}^2 \\
    \end{pmatrix}    
    \]
    \[
    %常用省略号:\dots \vdots \ddots
    %乘号\times
    A= \begin{bmatrix}
        a_{11}^2 & \dots & a_{1n}^2 \\
                 & \ddots & \vdots \\
        0        &       & a_{nn}^2 \\
    \end{bmatrix}_{n \times n}    
    \]

    %分块矩阵(矩阵嵌套)
    \[
    \begin{pmatrix}
        \begin{matrix}
            1&1\\0&1
        \end{matrix}& \text{\large 0}\\
        \begin{matrix}
            1&1\\0&1
        \end{matrix}& \text{\large 0}\\
    \end{pmatrix}    
    \]
    %三角矩阵
    % \[
    % \begin{pmatrix}
    %     \multicolumn{2}{c}{\raisebox{1.3ex}[0pt]{\Huge 0}}    \end{pmatrix}\]

    %行内小矩阵(smallmatrix)环境
    复数 $z=(x,y)$ 也可用矩阵
    \begin{math}
        \left(%手动左括号
        \begin{smallmatrix}
        x & -y \\ y & x
        \end{smallmatrix}
        \right)
    \end{math}

    %array环境{r|r}类似tabular
    \[
    \begin{array}{r|r}
        \frac{1}{2}&0\\
        \hline
        0 & -\frac{a}{b}c\\
        \end{array}\]

\end{document}

多行数学公式

%导言区//全局设置
%\documentclass{article}%ctexbook,ctexreport,book,report,letter
\documentclass{ctexart}%normal szie,ctexbook,ctexreport,book,report,letter

\usepackage{ctex}%中文
\usepackage{amsmath}
\usepackage{amssymb}

\title{My First Document}
\author{merca}
\date{\today}

%正文区(文稿区)
\begin{document}
%gather 和 gather*环境使用\\换行
%带编号
    \begin{gather}
        a +b=b+a\\
        ab ba
    \end{gather}

    \begin{gather*}
        3+5\\
        2+3
    \end{gather*}

    \begin{gather}
        %notag阻止编号
        a +b=b+a \notag\\
        ab ba \notag\\
        sdf966
    \end{gather}

    %align和align*环境(用&进行对齐)
    %带编号
    \begin{align}
        x &=t+\cos t +1\\
        y &= 2\sin t
    \end{align}

    %split环境(对齐采用align环境的方式,编号在中间)
    \begin{equation}
        \begin{split}
            \cos 2x &= \cos^2x - \sin^2x\\
            &= 2\cos^2x -1
        \end{split}
    \end{equation}

    %cases 环境
    %每行公式使用&分隔成两部分
    %通常表示值和后面的条件
    \begin{equation}
        D(x) = \begin{cases}
        1,&\text{如果} x \in \mathbb{Q};\\
        0,&\text{如果}x \in \mathbb{R}\setminus\mathbb{Q}
        \end{cases}
    \end{equation}

    \begin{equation}
    \alpha = \lambda + \omega_{s}
    \label{eq:alpha}
    \end{equation}

    \begin{align}%不能有空行
         a &= b^2 + \frac{n}{3} \label{eq:4}\\
          x &= \sqrt{n^3}
    \end{align}


    \usepackage{amsmath}
    \begin{equation}
    \label{eq:expandterm}
    \begin{split}
    \mathrm{T}_{\mathrm{int}} &= \mathrm{T}_{\mathrm{n}}^{\mathrm{el}}+ \tilde{\nu}_{e}\left(v+\frac{1}{2}\right)-{x}_{e} \tilde{\nu}_{e}\left(v+\frac{1}{2}\right)^{2}+\\
    &{y}_{e} \tilde{\nu}_{e}\left(v+\frac{1}{2}\right)^{3}+\tilde{B} J(J+1)-\tilde{D} J^{2}(J+1)^{2}
    \end{split}
    \end{equation}

    \lstset{language=C}
    \begin{lstlisting}
    #include <iostream>
    using namespace std;

    int main()
    {
        cout<<"hello"<<endl;
        return 0;
    }
    \end{lstlisting}


    参考文献
    \cite{这里面填引用文献的Bibtexkey} 
        % 一般打完括号编译器就会弹出所有参考文献的key值

         \nocite{Bibtexkey}
         % 文中未出现引用标记,但依然需要在参考文献中打印该文献时使用

         \bibliographystyle{plain}
         % 设置文献参考样式,LaTex中参考文献标准样式有八种,具体信息参见下面

         \bibliography{这里天BibTex的文件名}
         % 选择调用的BibTex文件,bibfile为文件名;该语句放在文中的哪个位置,pdf中参考文献部分也将出现在相应位置


        plain:按字母的顺序排列,比较次序为作者、年度和标题;
        unsrt:样式同plain,只是按照引用的先后排序;
        alpha:用作者名首字母+年份后两位作标号,以字母顺序排序;
        abbrv:类似plain,将月份全拼改为缩写,更显紧凑;
        ieeetr:国际电气电子工程师协会期刊样式;
        acm:美国计算机学会期刊样式;
        siam:美国工业和应用数学学会期刊样式;
        palike:美国心理学学会期刊样式

\end{document}
Donate
  • Copyright: Copyright is owned by the author. For commercial reprints, please contact the author for authorization. For non-commercial reprints, please indicate the source.

扫一扫,分享到微信

微信分享二维码
  • Copyrights © 2018-2021 Quincy
  • Visitors: | Views:

请我吃串串呗~

支付宝
微信