-
Notifications
You must be signed in to change notification settings - Fork 6
/
report.tex
executable file
·145 lines (108 loc) · 5.22 KB
/
report.tex
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
% 前所未有简单地,开始你的 LaTeX 之旅
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [页面选项]
%
% 字号选项: 11pt是字号,比较适合电子印刷品和纸质印刷品
% 字体选项: 不填写 - 默认为 Modern (别忘了连逗号一起删了)
% times - Times New Roman
% sans - Sans Serif 字体(黑体)
% hardcopy: 打印机打印选项,带有此选项将去除logo颜色以及代码颜色,更适合黑白印刷
% 使用彩色或者电子版请去除此选项
% 也可以改为 editing ,颜色讲和 sublime3 的 Mariana 颜色主题一致,减小写作时的文本对比度
% 让你以最舒适的方式书写
% heading: 页面带有页眉
\documentclass[11pt,times]{eeereport}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [封面选项]
%
% title: 文章主标题,不可以省略
% subtitle: 副标题,可以省略,但不可以删除
% covercontent: 封面信息,可以在其内部添加或者删除 \converline 来添加或者删除一行
% coverline{项目}{项目内容},可以自由添加各种内容
%
\title{How To Rescue Your Report Using \LaTeX{}}
\subtitle{}
\covercontent{
\coverline{Author}{Your NAME}
\coverline{Partner}{Your Partner}
\coverline{Module}{EEE001 - Report Writing}
\coverline{Teacher}{Dr. Firstname SURNAME}
\coverline{Date}{$30^{th}$~/~Sept~/~2017}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 页面设定
% 如果在前面设定了需要页面,请去掉下面三个的注释,然后分别进行定义,如果不定义,
% LaTeX 会自动使用章节名称来进行页面定义
%\lhead{}
%\chead{}
%\rhead{}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\baselineskip = 17pt
\pagenumbering{Alph}
\begin{titlepage}
\input{xjtlu_cover}
\newpage
\thispagestyle{empty}
\end{titlepage}
\baselineskip = 17pt
\tableofcontents
\newpage
\baselineskip = 17pt
\pagenumbering{arabic}
\section*{Abstract}\addcontentsline{toc}{section}{Abstract}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras congue massa a ex luctus, in consectetur velit venenatis. Praesent porta dolor augue, at eleifend purus accumsan a. Vestibulum ullamcorper massa eget lobortis volutpat. Vestibulum at luctus lectus, vitae tristique ligula. Pellentesque ultrices viverra tellus, ut hendrerit urna varius ac. Sed nulla tortor, dignissim in justo nec, ullamcorper ultricies magna. In finibus, nisi eu lobortis ultricies, neque elit tempus purus, sit amet condimentum lorem ligula id magna. Integer a magna at augue euismod rhoncus mattis sit amet velit. Morbi eget leo a dolor porttitor commodo non non velit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur sed quam feugiat, sollicitudin sapien id, semper est. In consectetur est eu sapien scelerisque, et sagittis sapien finibus. Nullam facilisis molestie ligula sed pharetra. Fusce nec sagittis arcu. Sed eu leo vel metus volutpat tincidunt. Suspendisse vehicula in elit eu pretium.
\section{Experiment I: Voltage and Current Measurements, and Th\`{e}venin Equivalent Circuits}
\subsection{Task A: Measuring DC Voltage and Current}
\subsubsection{Introduction}
\figpdf{Result}{result1}{12cm}
In one paragraph, using your own words, give a short description of the background for this experiment. You can include relevant figures in this section. All figures must be in vector graphics format (.eps or .pdf) drawn them by yourself. I do not want to see any figure from elsewhere \ref{equ:e1}.
% 插入表格的方法
\begin{table}[h]
\centering
\label{tab:table123}
\caption{Title Of Table}
\begin{tabular}{|p{3cm}|p{1.5cm}|p{1.5cm}|p{1.5cm}|p{1.5cm}|}
\hline
Resistor & $R_{180\Omega}$ & $R_{100\Omega}$ & $R_{120\Omega}$ & $R_T^m$\\
\hline
0 & 0 & 0 & 0 & 0 \\
\hline
\end{tabular}
\end{table}
% 插入公式的方法, 胡乱编的一个公式,注意体会分数,上标下标,以及欧姆符号欧米伽
\begin{equation}\label{equ:e1}
R_{ma}^T=\left(\frac{P}{I^2}\right) \times \cos(10\Omega)
\end{equation}
\lists{number}{
\item{Happy}
\item{New}
\item{Year}
}
\lists{dot}{
\item{Too young too simple}
\item{Sometimes...}
}
\subsubsection{Methodology}
In one paragraph, brief the procedures that you have taken to obtain the required results \cite{1292241}.
\subsubsection{Results and Discussions}
In this section, include your results in the form of table, figure, or relevant graphics. Also, do make sure that you answer all questions in the lab manual.
\subsubsection{Conclusion}
State your conclusion concisely, in a short paragraph.
\subsection{Task B: Finding the Th\`{e}venin Equivalent Circuit}
\subsubsection{Introduction}
\subsubsection{Methodology}
\code{c++}{c_test.c}
\subsubsection{Results and Discussions}
\subsubsection{Conclusion}
\section{Experiment II: Using the Oscilloscope}
\subsection{Introduction}
\subsection{Methodology}
\subsection{Results and Discussions}
\subsection{Conclusion}
\bibliographystyle{IEEEtran}
\bibliography{reference}
\addcontentsline{toc}{section}{Reference}
\end{document}