나는 내 전기 .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}