.

  • 公式编辑器:支持图像识别
  • 常用的搜索引擎
  • 教程
  • 模板链接
  • ijcai模板
  • 国外高校论文模板
  • 期刊的模板代码,支持在线编辑
  • 其他
  • 插入表格
  • 插入跨页表格
  • VS Code + LaTeX
  • 一个hello word
  • 列表
  • 表格
  • 一份不太简短的LaTeX介绍
  • 从入门到日常使用
  • text studio
  • texstudio左侧栏调出来 可以快捷选数学公式的

公式编辑器:支持图像识别

添加链接描述

常用的搜索引擎

https://scholar.chongbuluo.com/

教程

https://www.jianshu.com/p/3e842d67ada2

模板链接

ijcai模板

https://www.ijcai.org/authors_kit

国外高校论文模板

http://uk.tug.org/training/thesis/

期刊的模板代码,支持在线编辑

https://www.overleaf.com/

其他

https://github.com/MartinThoma/LaTeX-examples

http://www.latextemplates.com/


插入表格

https://liam.page/2013/08/04/LaTeX-table/

插入跨页表格

\documentclass{article}
\usepackage{longtable}
\begin{document}
\begin{longtable}{|c|c|r|r|r|r|}
\caption{caption}
\label{table:label} \\ % add \\ command to tell LaTeX to start a new line
% Appear table header at the first page as well
\hline
line1 & line2 & $t_1$ & $t_{12}$ & $t_2$ & $r$(\%)\\
\hline
\endfirsthead
% Appear the table header at the top of every page
\hline
line1 & line2 & $t_1$ & $t_{12}$ & $t_2$ & $r$(\%)\\
\hline
\endhead
% Appear \hline at the bottom of every page
\hline
\endfoot
% data begins here
10 & 2 & 0:22:00 & 9:46:00 & 2:00:00 & 80.49 \\
204 & 205 & 2:01:00 & 2:57:00 & 1:11:00 & 47.97 \\
% 这里复制粘贴更多的数据, 使其可以超出一页的范围
\hline
\end{longtable}
\end{document}

参考链接


VS Code + LaTeX

https://zhuanlan.zhihu.com/p/108095566?utm_source=qzone&utm_medium=social&utm_oi=774296324299313152


b站视频教程

一个hello word

\documentclass[UTF8]{ctexart}

\usepackage{graphicx}


% 在begin之前的被称作前言 preamble
% 就像html的head 可以指定文档的格式 页面尺寸 导入的宏包

\title{文章的标题}
\author{罗斯}
\date{\today}
\title{标题}

\begin{document}
	
\maketitle
%为了显示标题和作者

%这里的是文档的正文
你好

\textbf{加粗的文字}
\underline{下划线}
	
textit{斜体字}


两个回车生成了一个新的段落,一个换行符变成了一个空格
	
\section{第一个章节}
\subsection{第一个子章节}

\section{第二个章节}
	
\begin{figure}
\centering %图片居中显示
\includegraphics[width=0.5\textwidth]{imagefile}
%插入图片并且设置宽为页面宽度的一半
\caption{图片的标题}	内容...
\end{figure}

\end{document}

列表

\documentclass[UTF8]{ctexart}


\begin{document}
	
\begin{itemize}
\item 列表项1
\item 列表项2
\item 列表项3
\end{itemize}

\begin{enumerate}
	\item 列表项1
	\item 列表项2
	\item 列表项3
\end{enumerate}	

\end{document}

表格

\documentclass[UTF8]{ctexart}


\begin{document}
	
\begin{tabular} {c c c} % 表示居中对齐 l左对齐 r右对齐
	
	单元1 & 单元2 & 单元3 \\ 
	单元4 & 单元5 & 单元6 \\
	单元7 & 单元8 & 单元9 
\end{tabular}


\begin{tabular} {|c| c| c|} % 加边框
	
	单元1 & 单元2 & 单元3 \\ 
	\hline %水平方向的边框
	单元4 & 单元5 & 单元6 \\
	\hline %水平方向的边框
	\hline %水平方向的边框 双横线
	单元7 & 单元8 & 单元9 
\end{tabular}


\begin{tabular} {|p{2cm}| c| c|} % 指定列宽
	
	单元1 & 单元2 & 单元3 \\ 
	\hline %水平方向的边框
	单元4 & 单元5 & 单元6 \\
	\hline %水平方向的边框
	\hline %水平方向的边框 双横线
	单元7 & 单元8 & 单元9 
\end{tabular}


\begin{table}
	\center %表格居中显示
	\begin{tabular} {|c| c| c|} % 指定列宽
		
		单元1 & 单元2 & 单元3 \\ 
		\hline %水平方向的边框
		单元4 & 单元5 & 单元6 \\
		\hline %水平方向的边框
		\hline %水平方向的边框 双横线
		单元7 & 单元8 & 单元9 
	\end{tabular}
\caption{表格的标题}
\end{table}

\end{document}

一份不太简短的LaTeX介绍

一份不太简短的LaTeX介绍:

从入门到日常使用

https://dylandong.top/posts/e480/

text studio

texstudio左侧栏调出来 可以快捷选数学公式的


论文撰写-LaTex 教程+模板_搜索引擎