Latex
约 589 字大约 2 分钟
Latex
2024-05-30
LaTeX公式手册(全网最全) - 樱花赞 - 博客园 (cnblogs.com)
格式设置
\documentclass{…} % 格式
\usepackage{…} % 依赖包章节
\chapter % 章(一般写书使用)
\section % 节
\subsection % 小节
\subsubsection % 小小节正文
\begin
文字,图表,公式等。。。
\end数学公式
短公式
$公式$单行公式
\usepackage{hyperref}\autoref{eq1} % 公式引用 \begin{equation}\label{eq1} 公式 % 如:\alpha^2+\beta^2=\gamma^2 \end{equation}多行公式
\usepackage{amsmath}\begin{equation}\label{eq1} \begin{split} 公式 % 如(左对齐【&】+换行符【\\】): % &\alpha^2+\\ % &\beta^2=\\ % &\gamma^2\\ \end{split} \end{equation}分情况讨论
\usepackage{amsmath}\begin{equation}\label{eq3} F(x)= \begin{cases} 公式 % 如(左对齐【&】+换行符【\\】): % 0&,\text{if $x<0$}\\ % x+1&,\text{if $x>0$}\\ % 1&,\text{oteherwise.} \end{cases} \end{equation}无编号公式
法一
\[ 公式 \]法二
$$公式$$
图片
\usepackage{graphicx}【有的环境可能自带】
最好用矢量图【eps、pdf】
\begin{figure}[htbp]
\centering
\includegraphics[图片大小][图片相对路径]
\caption{图片标题、说明}
\label{图片标签}
\end{figure}
% 如:
% \begin{figure}[htbp]
% \centering
% \includegraphics[width=12cm]{屏幕截图 2024-05-30 011301.png}
% \caption{狐狸}
% \label{fig:aa}
% \end{figure}
% htbp解释(默认tbp):
% h:当前位置(here)
% t:页面顶部(top)
% b:页面底部(bottom)
% p:单独页面(page)表格
LaTeX Tables Editor (可导入excel)

参考文献
直接引用
文本1\cite{lable1} 文本2\cite{lable2} \begin{thebibliography}{99}%99表示引用上限 \bibitem{lable1} Anita G ,V. B V ,John P .Hybrid model with optimal features for non-invasive blood glucose monitoring from breath biomarkers[J].Biomedical Signal Processing and Control,2024,88(PC): \bibitem{lable2}Zhining C ,Jianzhou W ,Li Y , et al.A hybrid electricity load prediction system based onweighted fuzzy time series and multi-objective differential evolution[J].Applied Soft Computing,2023,149(PB): \end{thebibliography}多文献引用
\bibliographystyle{unsrt}\cite{文献名} \bibliographystyle{文献格式} \bibliography{bib文件名} 右上角引用方法: \newcommand{\upcite}[1]{\textsuperscript{\cite{#1}}} % 加在格式那 \upcite{}
特殊符号
%:注释
% 这里&:对齐(表格、数学公式)
$&\alpha^2+\\&\beta^2=\\&\gamma^2\\$\\:换行
\\$:数学公式
$公式$~:保留强制空格,非常古老的用法
^和_:上下标标记
#:编写宏包使用
友链
vscode 配置 Latex 编译后自动清理多余文件(.log .out等文件)_latex运行一次就自动日志文件-CSDN博客
版权所有
版权归属:HuiXiaHeYu
