section,subsection, subsubsection编号问题,figure添加
(2010-11-22 14:34:28)
标签:
it |
分类: Latex |
1。 在report,
book结构中,subsubsection是没有编号的,但是可以利用以下命令使得subsubsection也有编号
\setcounter{secnumdepth}{3}
2。 section,subsection的编码格式问题,可以通过这样修改
\renewcommand{\thesection}{实验\chinese{section}}
\renewcommand{\thesubsection}{\arabic{section}.\arabic{subsection}}
3。 添加figure的时候:
\usepackage{graphicx}
\usepackage{float}
\begin {figure}[H]
\begin {center}
\includegraphics[width=12cm]{Capture.PNG}
\end {center}
\caption {用户接口}
\label {ui}
\end {figure}
%[H]是强制将figure放到当前位置。

加载中…