將傳記加入 LaTex 文章中

將傳記加入 LaTex 文章中

我一直在嘗試將我的傳記添加到.tex帶有\documentclass{article}.有沒有辦法做到這一點?我應該為此使用一個包嗎?

\documentclass{article}

\begin{document}

\title{Introduction to \LaTeX{}} \author{Author's Name}

\maketitle

\begin{abstract} The abstract text goes here. \end{abstract}

\section{Introduction} Here is the introduction.

\subsection{Subsection Heading Here} Write your subsection text here.

\section{Conclusion} Write your conclusion here.

\end{document}

\begin{biography} Author 1 Bio \end{biography}

\begin{biography} Author 2 Bio \end{biography}

答案1

您可以使用wrapfig包。以下是一個最小的工作範例。

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

\begin{document}

  \begin{wrapfigure}{l}{25mm} 
    \includegraphics[width=1in,height=1.25in,clip,keepaspectratio]{example-image}
  \end{wrapfigure}\par
  \textbf{Author A} is a well-known author in the field of the journal scope. His/Her research interests include interest 1, interest 2.\par
\end{document}

在此輸入影像描述

答案2

另一種可能性可能是使用description環境:

\documentclass{article}

\begin{document}

\title{Introduction to \LaTeX{}} \author{Author's Name}

\maketitle

\begin{abstract} The abstract text goes here. \end{abstract}

\section{Introduction} Here is the introduction.

\subsection{Subsection Heading Here} Write your subsection text here.

\section{Conclusion} Write your conclusion here.

\section*{Authors}

\begin{description}
    \item[Santa Claus] is a world-renowned expert on the psychology of giving and author of \emph{How to Raise Your Reindeer}.
    \item[The Tooth Fairy] has published widely on the commodification of children's body parts and the commercialisation of human imaginative capacities.
\end{description}
\end{document}

描述性傳記

答案3

這只是一種方式;我見過很多不同的方式。

如果您希望看起來更好,可以將這些\subsection*{}命令註解掉。

\documentclass{article}
\title{Introduction to \LaTeX{}} 
\author{Author's Name}

\begin{document}    
\maketitle

\begin{abstract} 
  The abstract text goes here. 
\end{abstract}

\section{Introduction} 
Here is the introduction.

\subsection{Subsection Heading Here} 
Write your subsection text here.

\section{Conclusion} 
Write your conclusion here.

\section*{Authors' Biographies}
\subsection*{Author One}
\textbf{Author One} is an extraordinary researcher powered by caffeine and Red Bull.
He has written several incredible articles that will change your life forever.

\subsection*{Author Two}
\textbf{Author Two} is the Chief Duck Researcher at the National Wildlife Federation.
He has contributed to extensive research studying the migration patterns of duck 
species all over the globe.

\end{document}

在此輸入影像描述

答案4

繼自西賽,如果你想包含圖片,那麼使用皮辛以及以下內容:

\section*{Author biographies}
\parpic{\includegraphics[width=1in,clip,keepaspectratio]{headshot.jpg}}
\noindent {\bf Author Name} is the most famous author in her field. 
She is particularly interested in X and Y, and also dabbles in Z.

相關內容