欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

latex学习

程序员文章站 2022-03-09 09:36:15
...
一,资源整理:
1,help [url]http://www.ctex.org/documents/latex/latex2e-html/ltx-2.html[/url]
[url]http://zzg34b.w3.c361.com/index.htm[/url]
2,table[url]http://en.wikibooks.org/wiki/LaTeX/Tables#The_tabular.2A_environment_-_controlling_table_width[/url]
3,table宏包supertabular
4,模板宏包fancyhdr
5,图[url]http://www.texample.net/[/url]
二,
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}

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

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