调整稿件中作者照片的大小

调整稿件中作者照片的大小

如何在 IEEEtran 课程中调整作者照片的大小?目前,我写道

\begin{IEEEbiography[{\includegraphics[width=1in,height=1.25in,clip,keepaspectratio]{mah}}]{Mahmood}

\begin{IEEEbiography}{Mahmood}

当我缩小width和 时height,会插入一张较小的照片,但画布大小保持不变。我的意思是有一个矩形画布,其中插入了一张照片。该画布将保持不变,但照片看起来更小。因此,照片和文本之间存在间隙。

答案1

您需要更改文档类内部使用的某些参数。如果您要向 IEEE 期刊提交文章,那么这不是一个好主意。最好提供一张合适尺寸的照片。不过,既然您问了怎么做……

\documentclass{IEEEtran}
\usepackage{lipsum}
\makeatletter  % Edit the following values as appropriate
\def\@IEEEBIOphotowidth{1cm}    % width of the biography photo area 
\def\@IEEEBIOphotodepth{1cm}   % depth (height) of the biography photo area
% area cleared for photo 
\def\@IEEEBIOhangwidth{1.2cm}    % width cleared for the biography photo area
\def\@IEEEBIOhangdepth{1.2cm}    % depth cleared for the biography photo area 
\makeatother
\begin{document}
\begin{IEEEbiography}[{\rule{1cm}{1cm}}]{Mahmood}  % <--- replace rule with picture
\lipsum[1]
\end{IEEEbiography}
\end{document}

电气电子工程师学会

相关内容