LaTeX(Overleaf)写作笔记
1.LaTeX环境1)使用在线的LaTeX工具overleaf,网站:https://www.overleaf.com/dash2)安装LaTeX软件,并下载对应模板 2.论文写作……后续补…… 3.Poster制作1)模板与文档设置\documentclass[a0,portrait]{a0poster}①IEEE论文中的模板,算法一般直接通过以下方式即可正常...
·
1.LaTeX环境
1)使用在线的LaTeX工具overleaf,网站:https://www.overleaf.com/dash
2)安装LaTeX软件,并下载对应模板
2.论文写作
……后续补……
3.Poster制作
1)模板与文档设置\documentclass[a0,portrait]{a0poster}
①IEEE论文中的模板,算法一般直接通过以下方式即可正常使用
\begin{figure}[htbp]
\centering
\subfigure[shrimps]{\label{fig:co:1} \includegraphics[width=4.2cm]{shrimps}}
\subfigure[]{\label{fig:co:2} \includegraphics[width=4.2cm]{shrimps_bw_result}}
\caption{Counting Touching Concave Objects}\label{fig:result_concave_objects}
\end{figure}
但在写成\documentclass[a0,portrait]{a0poster}模板中,必须按照以下方法才能正常显示。
\captionof{algorithm}{algorithm name}
\begin{algorithmic}[1]
……
\end{algorithmic}
②图像通常按照以下方法导入也没有问题
%提前需要
%\usepackage{graphicx}
%\usepackage{subfigure}
%\graphicspath{{figures/}}
\begin{figure}[!htbp]
\centering
\subfigure[insulator]{\label{fig:bo:1} \includegraphics[width=2.1cm]{insulator}}
\subfigure[]{\label{fig:bo:2} \includegraphics[width=2.1cm]{insulator_bw_result}}
\caption{Counting Touching Big Objects}\label{fig:result_big_objects}
\end{figure}
但在a0poster模板中,通用需要使用\captionof来显示图片,即:
\begin{center}\vspace{1cm}%这是为了居中显示
\captionof{figure}[!htbp]
\centering
\subfigure[insulator]{\label{fig:bo:1} \includegraphics[width=2.1cm]{insulator}}
\subfigure[]{\label{fig:bo:2} \includegraphics[width=2.1cm]{insulator_bw_result}}
\caption{Counting Touching Big Objects}\label{fig:result_big_objects}
\end{center}\vspace{1cm}
③上述方法中,如
\captionof{figure}[!htbp]
会将图像的名称“Figure 1……”显示在图的上方,同时
\caption{Counting Touching Big Objects}\label{fig:result_big_objects}
会导致下方显示“Figure 2 ……”
因此,为了去掉(删除)图像上方的图标“Figure 1……”,上述改为\captionof*即可。
更多推荐
已为社区贡献1条内容
所有评论(0)