Tutorial www.jianshu.com/p/3e842d67a…
Templates link to iJCAI templates
www.ijcai.org/authors_kit
Github.com/MartinThoma…
www.latextemplates.com/
Uk.tug.org/training/th… Foreign university paper template.
www.overleaf.com/ journal template code, supported in…
Insert table liam. Page /2013/08/04/…
VS Code + LaTeX zhuanlan.zhihu.com/p/108095566…
B station video tutorial
\documentclass[UTF8]{ctexart}
\usepackage{graphicx}
% before begin is called preamble
% just like the HTML head can specify the format of the document and the page size of the imported macro package
\title{title of article}\author{} Ross\date{\today}
\title{title}\begin{document}
\maketitle
% to display title and author
% Here is the body of the documenthello\textbf{bold text}\underline{underscore} textit{italic} Two carriage returns generate a new paragraph, and a newline character becomes a space\section{Section 1}\subsection{first subsection}\section{Section 2}\begin{figure}
\centering % Image center display
\includegraphics[width = 0.5\textwidth]{imagefile}
Insert the image and set the width to half the page width
\caption{picture title} content...\end{figure}
\end{document}
Copy the code
form
\ documentClass [UTF8]{ctexart} \begin{document} \begin{tabular} {c c c} % center align L left align R right align Unit 1 & unit 2 & Unit 3 \\ unit 4 & Unit 5 & Unit 6 \ \ unit 7 and unit 8 & unit 9 {tabular} \ \ end begin {tabular} {| | | | c c c} % add borders unit unit 1 and unit 2 & 3 \ \ \ % hline horizontal border units 4 & 5 & Unit 6 horizontal borders \ \ \ \ % hline hline % horizontal border Double horizontal unit 7 and unit 8 & unit 9 {tabular} \ \ end begin {tabular} {| p {2 cm} | | | c c} % 1 & specify column width unit Cell 2 & cell 3 \\ hline % horizontal border cell 4 & cell 5 & cell 6 \\ hline % horizontal border cell 7 & cell 8 & cell 9 \end{tabular} \ begin center \ {table} \ % center form the begin {tabular} {| | | | c c c} % specified column width unit unit 1 and unit 2 & 3 \ \ \ % hline horizontal border unit 4 & unit 5 and unit 6 \ \ \ End {tabular} \ End {table} \end{document} \ End {table} \end{document} \end{table} \end{document}Copy the code