Latex using the template to write papers beauty competition

1. newline

** two spaces or \ **

2. Immediately feed

\ NewPage, \ clearpage, \ cleardoublepage
3. List Format
Unnumbered list {itemize}

\begin{itemize}
\item[标志]条目 1
\item[标志]条目 2
\end{itemize}

In each \ item which can be added itemize environment, the nesting, the following effects
Here Insert Picture Description
have a serial number list {enumerate}

\begin{enumerate}
\item 条目 1
\item 条目 2
\end{enumerate}

3. Form

Three-wire table

\begin{table}[htbp]
\caption{The categories of hurricanes}
\setlength{\tabcolsep}{17mm}{
\begin{tabular}{lc}
\toprule[1.5pt]
\head{symbol} & \head{meaning}\\
\midrule
\(b_i\)&Level of urgency of the area $i$\\
\(N_i\)&Number of containers in area$i$\\
$C$&cost\\
$U$&Utility of relief\\
\(U^*\)&Net utility of relief\\
\(d_{ij}\)&Distance between port and hospital\\
$l_{ik}$&Distance between port and hospital\\
$e_{kij}$&0-1 variables\\
$LD_k$&The maximum range of drone $k$\\

\bottomrule[1.5pt]
\end{tabular}}
\end{table}

Explain:
\} the begin {Table XXXX \ Table End {} is a table using a floating environment, option [hTBP] represent the following meanings

h:此处(here)-代码所在的上下文
t:页顶(top)-代码所在页的顶部或者之后页的顶部
b:底页(botton)-代码所页的底部,或者下一页的底部
p:独立的一页(page)-浮动页面

Another is to force the float fixed to the environment where the code written, i.e.,

\usepackage{float}
\begin{table}[H]

Then remember preceded by float packages
\ caption command is added to the title, because it is so the title should be directly added to the table in \ the Table {} after the begin
SetLength {\ tabcolsep 17mm}} {{xxx}, xxx is the representative of tabular environment then It refers to the table is 17mm width, can be modified, this command is used to modify the table width
\ toprule \ midrule \ bottomrule are used to draw lines, [1.5pt] Videos is a relatively thick line ah
\ head is a command to bold, keep behind {}, and then to determine the degree of thickening so to add the following command
> \ newcommand {\ head} [ 1] {\ textnormal {\ textbf {# 1}}}

Released three original articles · won praise 2 · views 70

Guess you like

Origin blog.csdn.net/courson/article/details/104575845
Recommended