前言
这是我自己用的latex模板,用于平常的课程设计。模板中包含了一些常用的宏包,以及一些常用的设置。后续配置可以根据自己的需求进行修改。
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 91 92 93 94 95
| \documentclass[12pt]{article} \usepackage[a4paper, left=3.17cm, right=3.17cm, top=2.54cm, bottom=2.54cm]{geometry} \usepackage[UTF8]{ctex} \usepackage{newtxtext,newtxmath} \usepackage{amsmath} \usepackage{amsfonts} \usepackage{chemformula} \usepackage{cite} \usepackage[colorlinks, linkcolor=black, anchorcolor=black, citecolor=black]{hyperref} \usepackage{graphicx} \usepackage{listings} \usepackage{subfigure} \usepackage{makecell} \usepackage{caption} \usepackage{booktabs} \usepackage{abstract} \usepackage{longtable} \usepackage{float}
\renewcommand{\abstractname}{\Large\textbf{摘要}}
\setlength{\parskip}{0.5em} \title{大标题} \author{\textup{作者}} \begin{document}
\begin{titlepage} \setcounter{page}{0} \newcommand{\HRule}{\rule{\linewidth}{0.5mm}} \centering \includegraphics[width=8cm]{./School-badge.png}\\[1cm] \quad\\[1.5cm] \textsl{\Large 学校 }\\[0.5cm] \textsl{\large 课程名称}\\[0.5cm]
\makeatletter \HRule \\[0.4cm] { \huge \bfseries \@title}\\[0.4cm] \HRule \\[1.5cm] {\large \begin{tabular}{c@{~~}c} \makebox[2em][s]{专业}: & \underline{\makebox[8em][c]{专业}} \\ \makebox[2em][s]{姓名}: & \underline{\makebox[8em][c]{姓名}} \\ \makebox[2em][s]{学号}: & \underline{\makebox[8em][c]{学号}} \\ \end{tabular}\\[1cm]} \makeatother {\large \today}\\[2cm] \vfill \end{titlepage}
\tableofcontents \newpage
\section{章节1}
\subsection{小节1}
\subsubsection{小小节1}
这是一个多子图的示例。
\begin{figure}[H] \centering \subfigure[]{ \includegraphics[width=0.45\textwidth]{} } \subfigure[]{ \includegraphics[width=0.45\textwidth]{} } \subfigure[]{ \includegraphics[width=0.45\textwidth]{} } \subfigure[]{ \includegraphics[width=0.45\textwidth]{} } \subfigure[]{ \includegraphics[width=0.9\textwidth]{} } \caption{} \label{fig:} \end{figure}
\section{章节2}
\newpage \nocite{*} \bibliographystyle{plain} \bibliography{ref}
\begin{thebibliography}{99} \bibitem{bib:1} 文献1 \bibitem{bib:2} 文献2 \end{thebibliography}
\end{document}
|