latex学习

一,资源整理:
1,help http://www.ctex.org/documents/latex/latex2e-html/ltx-2.html
http://zzg34b.w3.c361.com/index.htm
2,table http://en.wikibooks.org/wiki/LaTeX/Tables#The_tabular.2A_environment_-_controlling_table_width
3,table宏包supertabular
4,模板宏包fancyhdr
5,图 http://www.texample.net/
二,
1,latex使用figure实现并排
Subfloats
A useful extension is the subfig package [3], which uses subfloats within a single float. This gives the author the ability to have subfigures within figures, or subtables within table floats. Subfloats have their own caption, and an optional global caption. An example will best illustrate the usage of this package:
\usepackage{subfig}

\begin{figure}
  \centering
  \subfloat[A gull]{\label{fig:gull}\includegraphics[width=0.3\textwidth]{gull}}                
  \subfloat[A tiger]{\label{fig:tiger}\includegraphics[width=0.3\textwidth]{tiger}}
  \subfloat[A mouse]{\label{fig:mouse}\includegraphics[width=0.3\textwidth]{mouse}}
  \caption{Pictures of animals}
  \label{fig:animals}
\end{figure}

链接 http://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions

2,latex实现表格字体
Tables with different font size

A table can be globally switched to a different font size by simply adding the desired size command (here: \footnotesize) after the \begin{table}... statement:

\begin{table}[h]\footnotesize
  \caption{Performance at peak F-measure}
  \begin{tabular}{| r | r || c | c | c |}

      ...

  \end{tabular}
\end{table}

The table caption font size is not affected.

To control the caption font size, see Caption Styles.

3,固定位置
\begin{figure}[!htb]

4,取消minipage的缩进效果\noindent

你可能感兴趣的:(latex)