Abstracts

The electronic book of abstracts will be prepared before the workshop.

Please submit an abstract of your talk (tex and pdf files) by e-mail iowat@pnu.edu.ua. Deadline for submission of abstracts is March 10, 2021.

The abstract should be prepared in LaTeX using the following template

% ———————————————-
% TEMPLATE FOR IOWAT ABSTRACTS
% ———————————————-
\documentclass[a4paper]{amsart}
%
\usepackage{amssymb,amsthm,amscd}
\usepackage{epic,eepic,epsfig}
\usepackage{latexsym}
\usepackage{xy}
\xyoption{all}
%
\newtheorem{theorem}{Theorem}
\newtheorem{lemma}{Lemma}
\newtheorem{proposition}[lemma]{Proposition}
\newtheorem{question}[lemma]{Question}
\newtheorem{remark}[lemma]{Remark}
\newtheorem{corollary}[lemma]{Corollary}
\newtheorem{example}[lemma]{Example}
%
\newtheorem*{theorem*}{Theorem}
\newtheorem*{lemma*}{Lemma}
\newtheorem*{proposition*}{Proposition}
\newtheorem*{question*}{Question}
\newtheorem*{remark*}{Remark}
\newtheorem*{corollary*}{Corollary}
\newtheorem*{example*}{Example}
%
\makeatletter
\def\@@and{\unskip, }
\pagestyle{plain}
% ———————————————-
% PLEASE DO NOT CHANGE ANYTHING ABOVE THIS LINE!
%
% HERE YOU CAN LOAD EXTRA PACKAGES YOU NEED
%\usepackage{…}
%END OF EXTRA PACKAGES
%
% HERE YOU CAN DEFINE YOUR OWN MACROS
%
% PLEASE AVOID GLOBAL DEFINITIONS (\gdef, \global\def or \newcounter)
% AND NEW THEOREM-LIKE ENVIRONMENTS (USE {theorem}, {lemma} ETC THAT ARE DEFINED ABOVE
%
% START OF PRIVATE DEFINITIONS
%\newcommand{name}{…}
% END OF PRIVATE DEFINITIONS
% ———————————————-
\begin{document}
\title{Title of the abstract}
\author{First Author}
\author{Second Author}

\address{% First author
University of …\\
Address\\
City, Country}

\email{first.author@mail.address}

\address{% Second author
Institute of …\\
Address\\
City, Country}

\email{second.author@mail.address}

\maketitle

Text of the abstract …

\begin{lemma} % NUMBERED
Here is the text of the lemma …
\end{lemma}

\begin{corollary*} % NOT NUMBERED
Here is the text of the corollary …
\end{corollary*}

\begin{theorem} % THEOREMS ARE NUMBERED SEPARATELY
Here is the text of the theorem …
\end{theorem}

\begin{question*} % AGAIN WITHOUT NUMBER
Here is the text of the question …
\end{question*}
% ———————————————-
\begin{thebibliography}{99}

\bibitem{Paper}
N. Author, \emph{Title of the article}, Journal abreviation, \textbf{vol.number}, (year), pp–pp.

\bibitem{Book}
N. FirstAuthor, N. SecondAuthor, \emph{Title of the book}, Publishing House, Town, Year.

\end{thebibliography}
\end{document}
% ———————————————-