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文末插入作者照片简介方法全 ↩︎ ↩︎ ↩︎

### Elsevier LaTeX 模板中的作者简介格式指南 在使用 Elsevier 的 LaTeX 模板时,撰写或格式化作者简介需要遵循特定的指导原则。虽然官方模板并未直接提供关于作者简介的具体命令结构[^1],但在实际应用中可以通过自定义方式实现这一功能。 #### 自定义方法 为了在文档中加入作者简介部分,可以利用 `\vspace` 和 `\begin{minipage}` 命令创建独立区域来放置每位作者的信息。以下是具体实现: ```latex \documentclass[5p]{elsarticle} % 使用Elsevier的标准类文件 % 导言区配置省略... \begin{document} % 正文内容省略... \section*{Author Biographies} \vspace{-0.5cm} % 调整间距以优化布局 \noindent \begin{minipage}[t]{0.48\textwidth} \includegraphics[width=0.3\linewidth]{author_photo.jpg}\\ {\bfseries Author Name 1}\par Brief description of the first author goes here. This can include their academic background, research interests, and any other relevant information. \end{minipage} \hfill \begin{minipage}[t]{0.48\textwidth} \includegraphics[width=0.3\linewidth]{another_author_photo.jpg}\\ {\bfseries Author Name 2}\par A short biography for the second author should be included here as well. It is important to keep it concise yet informative. \end{minipage} \end{document} ``` 上述代码片段展示了如何通过 `minipage` 创建并排显示两位作者照片及其对应的简介。`\includegraphics` 可用于插入个人照片(如果适用),而每一段文字均需保持简洁明了。 #### 注意事项 - **位置选择**:通常建议将作者简介放在文章最后一页或者附录部分。 - **字体大小与样式**:应统一采用较小字号(如 `\small` 或者默认设置)以便于阅读同时节省空间。 - **图片处理**:确保所使用的头像清晰度适中且尺寸一致,推荐规格为正方形裁剪后的 JPEG 文件格式。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

yyywxk

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值