1、TeX Live 换为清华源:
打开命令行,进入 TeX Live 安装目录,比如 C:\texlive\2020
,在命令行中执行 tlmgr option repository https://mirrors.tuna.tsinghua.edu.cn/CTAN/systems/texlive/tlnet
即可永久更改镜像源。
(本人已换用 MiKTeX,更为轻便)
2、TeXstudio 主题设置:https://tex.stackexchange.com/questions/108315/how-can-i-set-a-dark-theme-in-texstudio
3、LaTeX 入门文档:https://liam.page/2014/09/08/latex-introduction
LaTeX 模板大全:https://www.latexstudio.net
数学建模国赛模板:https://github.com/latexstudio/CUMCMThesis
数学建模美赛模板:https://github.com/qyxf/easymcm
4、部分自用模板:
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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
| \documentclass[12pt,a4paper,UTF8]{ctexart} \usepackage{graphicx} \usepackage{subcaption} \usepackage{underscore} \usepackage{url} \usepackage{amsmath} \usepackage{amssymb} \setmainfont{Microsoft YaHei} \setCJKmainfont{Microsoft YaHei} \pagestyle{plain} \setlength{\parindent}{0pt}
\begin{document} \title{\textbf{2017级第一次作业}} \author{\textbf{林瑞洲 20172131071}} \date{\textbf{\today}}
\maketitle \tableofcontents \newpage
\section{} \subsection{} \subsubsection{} \begin{figure}[!h] \centering \includegraphics[width = \textwidth]{pictures/1.png} \caption{123} \end{figure}
\begin{itemize} \item a \item b \end{itemize}
\begin{enumerate} \item a \item b \end{enumerate}
$a=b+c$ \[a=b+c\] \begin{equation} a=b+c \end{equation}
\begin{tabular}{|c|c|c|} \hline A & B & 类标号\\ \hline T & F & + \\ \hline \end{tabular}
~\\
\textbf{123}
a\quad b
\[\rightarrow\] \[\sigma\] \[\cup\] \[\ne\] \[\leqslant\] \[\geqslant\]
\end{document}
|
效果如下:
(演示用的PDF文件已丢失)