1. 三线表的一般格式
学术论文普遍使用三线表。三线表的特点主要是:整个表格通常只有三条横线,首尾两条横线较粗,中间一条较细,一般不使用竖线。LaTeX 处理三线表相当简单方便。用到的宏包主要是 booktabs
。下面是普通三线表的代码和效果:
\begin{table}[htbp] \caption{\label{tab:test}示例表格} \begin{tabular}{lcl} \toprule 。。 & 。。 & 。。 \\ \midrule 。。 & 。。 & 。。 \\ 。。 & 。。 & 。。 \\ 。。 & 。。 & 。。 \\ \bottomrule \end{tabular}
\end{table}
2. 对上述表格调整列的数量可能会出现的问题
错误讯息是!Extra alignment tab has been changed to \cr.
<recently read > \endtemplate
解决方法是: \begin{tabular}后面的参数指定为3列,而实际排了?列数据。
1c1是散列数据。我用了7列数据用的1c11111,
3.上述三线表引用的时候出现问题
本来应该为正常的数字标号,但是全变成了相同的罗马数字(我有两个三线表的标号是相同的罗马数字)。
很奇怪的错误。我对比一万使用的表格的格式,将
\label{tab:test} 移到最后一个end之前的一行,问题解决。感觉有点蛋疼,先记下,改日再研究。
=============================================
多个插图并排,互不相关。
\usepackage{floatrow}
\begin{figure}
\begin{floatrow}[2]
\ffigbox{ \caption{Various Sigmoid functions and their derivatives} \label{sigmoidfunction} }{\includegraphics[width=6.5cm]{picture//sigmoid} }
\ffigbox{ \caption{Experiments with different sigmoid functions (lbfgs)}
\label{newexcitation}}{\includegraphics[width=6.5cm]{picture//newexcitation} }
\end{floatrow}
\end{figure} 相关,用subfloat[caption]{\includegr... \quad(换行)https://blog.csdn.net/zsfcg/article/details/78541486
下面是一些latex中并排两图的代码,以备今后使用
from: http://blog.csdn.net/qq_22812319/article/details/51958958
\documentclass{article}
\usepackage{graphicx} %use graph format
\usepackage{subfig}
%%
%%Figures
%%
\centering
\subfigure[house]{
%\label{fig:subfig:a} %% label for first subfigure
\includegraphics[width=1.5in]{./a.png}
}
\subfigure[hotel]{
%\label{fig:subfig:b} %% label for second subfigure
\includegraphics[width=1.5in]{./b.png}
}
\caption{Frames of the house and hotel data sets}
%\label{fig:subfig} %% label for entire figure
\end{figure}\begin{figure} \centering \subfigure[house]{ %\label{fig:subfig:a} %% label for first subfigure \includegraphics[width=1.5in]{./a.png} } \subfigure[hotel]{ %\label{fig:subfig:b} %% label for second subfigure \includegraphics[width=1.5in]{./b.png} } \caption{Frames of the house and hotel data sets} %\label{fig:subfig} %% label for entire figure \end{figure}
%上述代码结果如下
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%下面是从网上找的代码 %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{figure}[!htp]
\begin{minipage}[t]{0.5\linewidth}%设定图片下字的宽度,在此基础尽量满足图片的长宽
\centering
\includegraphics[height=2.4cm,width=3.8cm]{figure1a.JPG}
\caption*{(a) This is the left picure.}%加*可以去掉默认前缀,作为图片单独的说明
\label{fig:side:a}
\end{minipage}
\begin{minipage}[t]{0.5\linewidth}%需要几张添加即可,注意设定合适的linewidth
\centering
\includegraphics[height=2.4cm,width=3.8cm]{figure1b.JPG}
\caption*{(b)This is the right picture.}
\label{fig:side:b}
\end{minipage}
\caption{This is total name.}%n张图片共享的说明
\end{figure}
\end{document}\begin{document} \begin{figure}[!htp] \begin{minipage}[t]{0.5\linewidth}%设定图片下字的宽度,在此基础尽量满足图片的长宽 \centering \includegraphics[height=2.4cm,width=3.8cm]{figure1a.JPG} \caption*{(a) This is the left picure.}%加*可以去掉默认前缀,作为图片单独的说明 \label{fig:side:a} \end{minipage} \begin{minipage}[t]{0.5\linewidth}%需要几张添加即可,注意设定合适的linewidth \centering \includegraphics[height=2.4cm,width=3.8cm]{figure1b.JPG} \caption*{(b)This is the right picture.} \label{fig:side:b} \end{minipage} \caption{This is total name.}%n张图片共享的说明 \end{figure} \end{document}
from:http://zhaoshiliang.wordpress.com/2010/07/27/%E5%A4%9A%E5%9B%BE%E6%8E%92%E7%89%88/
1. 并排摆放,共享标题
当我们需要两幅图片并排摆放,并共享标题时,可以在 figure 环境中
使用两个 \includegraphics 命令。
\centering
\includegraphics{left}
\includegraphics{right}
\caption{反清复明}
\end{figure}\begin{figure}[htbp] \centering \includegraphics{left} \includegraphics{right} \caption{反清复明} \end{figure}
2. 并排摆放,各有标题
如果想要两幅并排的图片各有自己的标题,可以在 figure 环境中使用
两个 minipage 环境,每个环境里插入一个图。
\begin{figure}[htbp]
\centering
\begin{minipage}[t]{0.3\textwidth}
\centering
\includegraphics{left}
\caption{清明}
\end{minipage}
\centering
\includegraphics{right}
\caption{反复}
\end{minipage}\begin{minipage}[t]{0.3\textwidth} \centering \includegraphics{right} \caption{反复} \end{minipage}
\end{figure}
3.并排摆放,共享标题,各有子标题
如果想要两幅并排的图片共享一个标题,并各有自己的子标题,可以使用 subfig 宏包提供的 \subfloat 命令。
subfloat 命令缺少宽度参数。虽然我们可以用 \hspace 命令调整子图的距离,子标题却只能和子图本身一样宽,就会出现折行。
为了避免子标题折行,我们可以在 \subfloat 里再嵌套个 minipage,因为后者是有宽度的。
\centering
\subfloat[清明]{
\label{fig:improved_subfig_a}
\begin{minipage}[t]{0.3\textwidth}
\centering
\includegraphics{left}
\end{minipage}
}
\subfloat[反复]{
\label{fig:improved_subfig_b}
\begin{minipage}[t]{0.3\textwidth}
\centering
\includegraphics{right}
\end{minipage}
}
\caption{反清复明}
\end{figure}\begin{figure}[htbp] \centering \subfloat[清明]{ \label{fig:improved_subfig_a} \begin{minipage}[t]{0.3\textwidth} \centering \includegraphics{left} \end{minipage} } \subfloat[反复]{ \label{fig:improved_subfig_b} \begin{minipage}[t]{0.3\textwidth} \centering \includegraphics{right} \end{minipage} } \caption{反清复明} \end{figure}