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

これは単なる 1 つの方法であり、私はさまざまな方法で行われているのを見てきました。

見た目を良くしたい場合は、コマンド\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.

関連情報