• overleaf中latex语法总结


    常用符号

    在这里插入图片描述
    https://www.cnblogs.com/ghj1976/p/chang-yong-delatex-gong-shi-yong-fa.html

    字母上面加个横线

    \overline{X}
    
    • 1

    latex中的空格

    用 \ 表示
    
    • 1

    α和bata

    $\alpha$ $\beta$
    
    • 1

    上标和下标同时使用

     $A_{IJ}^{I+J}$\\ %上标^下标_多个使用{}
    
    • 1

    行内公式

    \noindent $a+b=c$\\ %行内公式
    
    • 1

    百分号

    \%
    
    • 1
    
    \documentclass{article}
    \usepackage[utf8]{inputenc}
    \usepackage[namelimits]{amsmath} %数学公式
    \usepackage{amssymb}             %数学公式
    \usepackage{amsfonts}            %数学字体
    \usepackage{mathrsfs}            %数学花体
    \begin{document}
    
    \[a+b=c\] %行间公式
    
    \begin{equation}
    a+b=c %自动编号
    \end{equation}
    
    
    
    log: $\log_3 5$ sin: $\sin({x}^2)$\\ %log sin等
    $\alpha$ $\nu$ $\beta$ $\gamma$ $\xi$ $\delta$ $\pi$ $\epsilon$\\%希腊字母
    $\rho$ $\zeta$ $\sigma$ $\eta$ $\tau$ $\theta$ $\upsilon$ $\iota$\\
    $\phi$ $\kappa$ $\chi$ $\lambda$ $\psi$ $\mu$\\
    $3\times4=12$\\ %乘法
    $\frac{12}{4}$\\ %分数
    $\sqrt[3]{\frac{1}{x}}$\\ %开方
    $\sqrt{\frac{1}{x}}$\\ %开方
    $\max \limits_{1<x<100}f(x)$\\ %max min 
    \[\min_{x \in R} f(x)\] % 行间所有的下标都会在下面
    $\underset{0\leq j \leq k-1}{\arg\min}$\\% 符号在下面,以下需要数学公式包支持
    \[\underset{0\leq j \leq k-1}{\arg\min}\]
    $\sum_{\substack{0<i<n \\ 0<j<n}} A_{ij}$% 符号在下面换行
    \[\sum_{\substack{0<i<n \\ 0<j<n}} A_{ij}\]\\
    $\underrightarrow{A}$\\% 箭头
    $A\xleftarrow{n=0}B\xrightarrow[T]{n>0}C$\\
    $a\cup b$,$a\cap b,\overline{U}$\\% 
    $\emptyset,\partial,\int,\iint,\iiint,\oint$\\% 
    $\triangleq,\sum,\prod,\neq,\leq,\geq$\\% 
    $a \in b,a \notin b$\\% 
    $\forall,\exists,\infty,\sim,\to,\left\{ ... \right\}$\\% 
    
    \end{document}
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41

    控制图片大小

    \includegraphics[width=0.9\columnwidth]{LDA.png}
    例如:
    \begin{figure}[h]  \centering  \includegraphics[width=0.9\columnwidth]{LDA.png} % Reduce the figure size so that it is slightly narrower than the column. Don’t use precise values for figure width.This setup will avoid overfull boxes.  \caption{Architecture of Latent representation alignment method.}  \label{fig5}  \end{figure}

  • 相关阅读:
    vmware vsphere用户权限分级
    synchronized的优化机制和一些多线程的常见类
    算法复杂度介绍
    嗦嗦postMessage和webSocket
    Linux环境基础开发工具使用(下)
    PHP数组转json和php的json转数组
    【分治算法】【Python实现】二分搜索
    Apache SSI 远程命令执行漏洞复现
    Vue脚手架的使用(VCLI)
    什么类型的企业适合应用RPA?
  • 原文地址:https://blog.csdn.net/qq_42864343/article/details/132823109