LaTex 中 Author biography里面插入作者照片

有些期刊投稿时要求附上作者的照片和简介,使用 LaTex 在 Author biography 添加照片和简介有很多种方法,综合网上的方法如下。

方法一:IEEE 期刊

IEEE 期刊可以使用 IEEEbiography 直接添加作者照片和个人简介,参考文章:Latex的biography中作者照片的插入

tex文件里格式如下 1

\begin{IEEEbiography}
[{\includegraphics[width=1in,height=1.25in,clip,keepaspectratio]{fig/xxx.jpg}}] 
					                                             //作者照片
Author Introduction
//作者介绍
\end{IEEEbiography}

方法二:手动添加 wrapfig

其他投稿就不一定有这种宏包,因此需要自己设定,可使用宏包 wrapfig ,可参考文章:如何在Elsevier中插入作者简介

\documentclass{article}
\usepackage{wrapfig}
\usepackage{graphicx}

\begin{document}

  \begin{wrapfigure}{l}{25mm} 
    \includegraphics[width=1in,height=1.25in,clip,keepaspectratio]{Author Photo}
  \end{wrapfigure}\par
  \textbf{Author Name} Introduction\par
\end{document}

或者是:【LaTeX Template】Author Biography

\usepackage{xparse}
\usepackage{blindtext}
\usepackage{morewrites}
\usepackage{wrapfig}
\usepackage{graphicx}
\usepackage{xkeyval}
\usepackage{tcolorbox}

\newwrite\authorbibfile
\AtBeginDocument{%
  \immediate\openout\authorbibfile=\jobname.aub%
}%
\AtEndDocument{%
\immediate\closeout\authorbibfile
\InputIfFileExists{\jobname.aub}{}{}
}%

\makeatletter
\define@key{authorbib}{scale}[1]{%
\def\AuthorbibKVMacroScale{#1}%
}
\define@key{authorbib}{wraplines}[10]{%
\def\AuthorbibKVMacroWraplines{#1}%
}
\define@key{authorbib}{imagewidth}[4cm]{%
\def\AuthorbibKVMacroImagewidth{#1}%
}
\define@key{authorbib}{overhang}[10pt]{%
\def\AuthorbibKVMacroOverhang{#1}%
}
\define@key{authorbib}{imagepos}[l]{%
\def\AuthorbibKVMacroImagepos{#1}%
}
\makeatother

\presetkeys{authorbib}{imagepos=l, imagewidth=4cm, wraplines=8, overhang=20pt}{}
\newlength{\AuthorbibTopSkip}
\newlength{\AuthorbibBottomSkip}
\setlength{\AuthorbibTopSkip}{\baselineskip}
\setlength{\AuthorbibBottomSkip}{\baselineskip}
\NewDocumentCommand{\authorbibliography}{+o+m+m+m}{%
  \IfNoValueTF{#1}{%
  }{%
    \setkeys{authorbib}{#1}%
    \immediate\write\authorbibfile{%
      \string\begin{wrapfigure}[\AuthorbibKVMacroWraplines]{\AuthorbibKVMacroImagepos}[\AuthorbibKVMacroOverhang]{\AuthorbibKVMacroImagewidth}^^J
        \string\includegraphics[scale=\AuthorbibKVMacroScale]{#2}^^J
        \string\end{wrapfigure}^^J
    }%
  }%
  \IfNoValueTF{#3}{%
    \typeout{Warning: No author name}%
  }{%
      \immediate\write\authorbibfile{%
      \unexpanded{\vspace{\AuthorbibTopSkip}}^^J
      \string\noindent\relax
      \unexpanded{\textbf{#3}\par}^^J
      \string\noindent\relax
      \unexpanded{#4}^^J%
      \unexpanded{\vspace{\AuthorbibBottomSkip}}^^J
      }%
  }%
}%

\section*{Author Biography}


\authorbibliography[scale=0.5, wraplines=8, overhang=40pt, imagewidth=0.25\textwidth, imagepos=r]{authors/author_1.jpg}{Author 1}{
  received his M.S. degree in...
  \\
  \\
  \\
  \\
  \\
  \\
  \\
  \\
}


\authorbibliography[scale=0.5, wraplines=8, overhang=40pt, imagewidth=0.25\textwidth, imagepos=r]{authors/author_2.jpg}{Author 2}{
  received his M.S. degree in...
}

方法三:手动添加 picins

使用宏包 picins, 参考 Author biographies in elsarticle
,其中给出了一个格式:

\usepackage{picins}

\par\noindent 
\parbox[t]{\linewidth}{
\noindent\parpic{\includegraphics[height=1.5in,width=1in,clip,keepaspectratio]{biography/bio_prg.jpg}}
\noindent {\bf Prateek Raj Gautam}\
received M.Tech. degree in Electronics and Communication Engineering from
Harcourt Butler Technological Institute Kanpur, India in 2011. He is currently pursuing Ph.D.
degree with Motilal Nehru National Institute of Technology Allahabad, Allahabad, India. His
research interest include energy-efficient scheme for wireless sensor network, Image Processing,
CDMA, IDMA, and Brain wave mapping.}
\vspace{4\baselineskip}

网上还有类似的格式1

\usepackage{picins}

\piccaption
//可不用这句,用的话一定放在最前面

\piccaption[]{caption\label{fig:3d}} 
//标注你的图片的脚注和`label`方便文章中引用;但是如果你是添加照片的话不需要这一句

\parpic[l][r]{\includegraphics[width=1in,height=1.25in,clip,keepaspectratio]{author.jpg}}
//插入作者照片

单栏双栏的改变也可参考这篇文章1


  1. Latex文末插入作者照片简介方法全 ↩︎ ↩︎ ↩︎

  • 1
    点赞
  • 24
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值