您的位置:首页 > 其它

Latex Picture And Table Setting

2016-01-26 16:20 429 查看
Four Picture in one column:

[code]\begin{figure}[htb]

%
\begin{minipage}[b]{.48\linewidth}
  \centering
  \centerline{\includegraphics[width=4.0cm]{BasketballPMVE.eps}}
%  \vspace{1.5cm}
  \centerline{PMVE}\medskip
\end{minipage}
\hfill
\begin{minipage}[b]{0.48\linewidth}
  \centering
  \centerline{\includegraphics[width=4.0cm]{BasketballHMVE.eps}}
%  \vspace{1.5cm}
  \centerline{HMVE}\medskip
\end{minipage}
%
\begin{minipage}[b]{.48\linewidth}
  \centering
  \centerline{\includegraphics[width=4.0cm]{BasketballBMVE.eps}}
%  \vspace{1.5cm}
  \centerline{normal BMVE}\medskip
\end{minipage}
\hfill
\begin{minipage}[b]{0.48\linewidth}
  \centering
  \centerline{\includegraphics[width=4.0cm]{BasketballPBMVE.eps}}
%  \vspace{1.5cm}
  \centerline{PBMVE}\medskip
\end{minipage}
\caption{Example of placing a figure with experimental results.}
\label{fig:res}
%
\end{figure}


Four Picture in Two Column

[code]\begin{figure*}[!t]
\begin{minipage}[h]{1.0\linewidth}
\centering
\subfigure[PMVE] {\includegraphics[height=3in,width=1.5in,angle=0]{BasketballPMVE.eps}}
\subfigure[HMVE] {\includegraphics[height=3in,width=1.5in,angle=0]{BasketballHMVE.eps}}
\subfigure[Normal BMVE] {\includegraphics[height=3in,width=1.5in,angle=0]{BasketballBMVE.eps}}
\subfigure[PBMVE with DCAF] {\includegraphics[height=3in,width=1.5in,angle=0]{BasketballPBMVE.eps}}
\caption{Basketball Frame 2 with Different methods Compared in perceptual}
\label{fig56}
\end{minipage}
\end{figure*}


Table Setting:

[code]\begin{table}[ht]
\caption{Review paper} % title of Table
\centering % used for centering table
\begin{tabular}{|c|c|} % centered columns (2 columns)
\hline\hline %inserts double horizontal lines
Item 1 & Item 2 \\ [0.5ex] % inserts table heading
\hline % inserts single horizontal line
a & b \\ % inserting body of the table
c & d \\
e & f \\[1.5ex] % [1.5ex] adds vertical space
\hline %inserts single line
\end{tabular}
\label{table:nonlin} % is used to refer this table in the text
\end{table}


Online table generator:

http://www.tablesgenerator.com/


http://bulo.hujiang.com/u/3059393/diary/77831/

[code]\begin{table}[ht]
\newcommand{\tabincell}[2]{\begin{tabular}{@{}#1@{}}#2\end{tabular}}
\centering % used for centering table
\begin{tabular*}{8cm}{|c|c|c|c|c|c|} % centered columns (2 columns)
\hline %inserts double horizontal lines
 * &Copy&BMVE&PMVE&HMVE&\tabincell{c}{Proposed \\ Method} \\ [0ex] % inserts table heading
\hline % inserts single horizontal line
Basketball & b & 1 & 2 & 3 & 4\\ % inserting body of the table
Tennis & b & 1 & 2 & 3 & 4\\
Transformer & b & 1 & 2 & 3 & 4\\%[1.5ex] % [1.5ex] adds vertical space
\hline %inserts single line
\end{tabular*}
\label{table:nonlin} % is used to refer this table in the text
\caption{PSNR comparison between different methods} % title of Table
\end{table}


Table size control:

[code]\begin{table}[ht]
\renewcommand\arraystretch{1.1}
%\newcommand{\tabincell}[2]{\begin{tabular}{@{}#1@{}}#2\end{tabular}}
%\setlength{\arraycolsep}{0.5pt}
\centering % used for centering table
\begin{tabular}{|p{.19\linewidth}| p{.08\linewidth}| p{.09\linewidth}|p{.09\linewidth}| p{.1\linewidth}| p{.14\linewidth}|}%{|c|c|c|c|c|c|} % centered columns (2 columns)
\hline %inserts double horizontal lines
 Sequence&Copy&BMVE&PMVE&HMVE&Proposed Method \\%\tabincell{c}{Proposed \\ Method} \\ [0ex] % inserts table heading
\hline % inserts single horizontal line
Basketball & b & 1 & 2 & 3 & 4\\ % inserting body of the table
Tennis & b & 1 & 2 & 3 & 4\\
Transformer & b & 1 & 2 & 3 & 4\\%[1.5ex] % [1.5ex] adds vertical space
\hline %inserts single line
\end{tabular}
\label{table:nonlin} % is used to refer this table in the text
\caption{PSNR comparison between different methods} % title of Table
\end{table}


http://www.cnblogs.com/lvpengms/p/4650552.html

http://bulo.hujiang.com/u/3059393/diary/77831/

http://blog.csdn.net/virhuiai/article/details/7886265

Force change another line:

http://blog.sina.com.cn/s/blog_531bb7630101841e.html

Formation:

http://blog.163.com/chen_dawn/blog/static/1125063201310205145916/

http://blog.163.com/chen_dawn/blog/static/1125063201321113318196/

http://blog.sina.com.cn/s/blog_4cfc967101013k10.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: