Skip to content

Latest commit

 

History

History
68 lines (54 loc) · 1.22 KB

File metadata and controls

68 lines (54 loc) · 1.22 KB

软件构造 报告模板

新定义命令

\infoauthor{姓名}{学号}{班号}{邮箱}{电话号码}
\infoexp{实验序号}{实验名称}

实验进度记录表

\begin{table}[H]
    \centering
    \begin{tabular}{cccc}
        \hline 
        日期 & 时间段 & 计划任务 & 实际完成情况 \\ 
        \hline 
             &        &           &                \\ 
        \hline 
    \end{tabular} 
\end{table}

插入代码

\begin{minted}[frame=lines]{sh}

public class Main(){
    static void main(String[] args){
        .....
    }
}

\end{minted}

使用方法

\documentclass{sc}
\infoauthor{姓名}{学号}{班号}{邮箱}{电话号码}
\infoexp{实验序号}{实验名称}

\begin{document}
\maketitle
\tableofcontents
\newpage

\input{Chapter/第1章}   % 载入章节


\section{实验过程}
为了条理清晰,可根据需要在各节增加三级标题。

\section{实验进度记录}

\begin{table}[H]
    \centering
    \begin{tabular}{cccc}
        \hline 
        日期 & 时间段 & 计划任务 & 实际完成情况 \\ 
        \hline 
             &        &           &                \\ 
        \hline 
    \end{tabular} 
\end{table}

\end{document}