在论文末尾添加个人简介

在论文末尾添加个人简介

我正在使用 spring latex 模板写一篇论文。但是我无法使用 添加作者的传记\begin{biography} ... \end{biography},spring 类似乎没有提供传记环境。我发现有人设法使用 \parpic 来添加作者的传记。然后我尝试按照以下相同的方式操作:

\documentclass[twocolumn]{svjour3} 
\usepackage{picins}
\begin{document}
\parpic{\includegraphics[width=1in,clip,keepaspectratio]{./figures/yoon2.eps}}
\noindent {\bf \small author 1} \small ...introduce author 1
\parpic{\includegraphics[width=1in,clip,keepaspectratio]{./figures/yoon2.eps}}
\noindent {\bf \small author 2} \small ...introduce author 2
\parpic{\includegraphics[width=1in,clip,keepaspectratio]{./figures/yoon2.eps}}
\noindent {\bf \small author 3} \small ...introduce author 3
\parpic{\includegraphics[width=1in,clip,keepaspectratio]{./figures/yoon2.eps}}
\noindent {\bf \small author 4} \small ...introduce author 4
\end{document}

我使用的所有包:

\usepackage{graphicx}
\usepackage{tabularx}
\usepackage{epstopdf}
\usepackage{marvosym}
\usepackage{booktabs, siunitx}
\usepackage{cite}
\usepackage{algpseudocode}
\usepackage{algorithm}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{flushend}  
\usepackage{mathptmx}
\usepackage{picins}

我得到了以下结果。但是作者的照片相互重叠。

在此处输入图片描述

我想要的是像下面的结果。

在此处输入图片描述

有人知道我应该在代码中添加什么才能获得正确的结果吗?提前致谢!

顺便说一句,我使用的是双列格式和 flushend pachage,它可以自动平衡,但它似乎不能与 parpic 一起使用,四位作者的传记在一列中,不平衡。有什么解决办法吗?

答案1

我最终使用了 biograph 包来代替 parpic。它满足了我所有的需求。下载链接: https://svn.kwarc.info/repos/arXMLiv/trunk/sty/biograph.sty

相关内容