如何避免乳胶图中不必要的行距?

如何避免乳胶图中不必要的行距?

我正在格式化一篇研究论文并添加作者传记,但是存在不必要的行距,如下图所示。

例子

我正在使用期刊中的以下乳胶格式。

%% Biogrphy
\newcommand{\Biography}[2]{
\vspace*{4mm}%
\parskip=0mm%
\parindent=1em%
\baselineskip 15pt%
\renewcommand{\baselinestretch}{1.25}%
\normalsize%

\begin{wrapfigure}[9]{l}{3.1cm}\vspace{-3.5mm}
\includegraphics{#1}
\end{wrapfigure}

\ \vspace{-.25cm}

\noindent\small #2}

\def\qed{\hfill$\Box$}

\renewcommand\figurename{\bfseries Fig.}
\renewcommand\tablename{\bfseries Table}

这就是我在论文中使用它的方法。

\Biography{fcs-2}{Please provide each author's biography here with no
more than 120 words. The photo can be informal. Our journal prefers
to exhibit an encouraging atmosphere. Please use a one that best
suits our journal.Please provide each author's biography here with no
more than 120 words. The photo can be informal. Our journal prefers
to exhibit an encouraging atmosphere. Please use a one that best
suits our journal.}
\par
\Biography{fcs-2}{Please provide each author's biography here with no
more than 120 words. The photo can be informal. Our journal prefers
to exhibit an encouraging atmosphere. Please use a one that best
suits our journal.Please provide each author's biography here with no
more than 120 words. The photo can be informal. Our journal prefers
to exhibit an encouraging atmosphere. Please use a one that best
suits our journal.}... and so on..

答案1

我能够使用以下 MWE 重现您的问题,并添加\newpage修复程序。我确实必须进行修改\includegraphics才能处理图像。

正如我所说的,人们确实可以做得更好\Biography

\documentclass[twocolumn]{article}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{showframe}

%% Biogrphy
\newcommand{\Biography}[2]{
\vspace*{4mm}%
\parskip=0mm%
\parindent=1em%
\baselineskip 15pt%
\renewcommand{\baselinestretch}{1.25}%
\normalsize%

\begin{wrapfigure}[9]{l}{3.1cm}\vspace{-3.5mm}
\includegraphics[width=3.1cm, height=7\baselineskip, keepaspectratio]{#1}% options required to fit space
\end{wrapfigure}

\ \vspace{-.25cm}

\noindent\small #2}

\def\qed{\hfill$\Box$}

\renewcommand\figurename{\bfseries Fig.}
\renewcommand\tablename{\bfseries Table}

\begin{document}

\noindent\rule{\columnwidth}{40\baselineskip}

%\newpage
\Biography{example-image}{Please provide each author's biography here with no
more than 120 words. The photo can be informal. Our journal prefers
to exhibit an encouraging atmosphere. Please use a one that best
suits our journal.Please provide each author's biography here with no
more than 120 words. The photo can be informal. Our journal prefers
to exhibit an encouraging atmosphere. Please use a one that best
suits our journal.}
\par
\Biography{example-image}{Please provide each author's biography here with no
more than 120 words. The photo can be informal. Our journal prefers
to exhibit an encouraging atmosphere. Please use a one that best
suits our journal.Please provide each author's biography here with no
more than 120 words. The photo can be informal. Our journal prefers
to exhibit an encouraging atmosphere. Please use a one that best
suits our journal.}... and so on..

\end{document}

相关内容