
GOKOVA STYLE GUIDE

These guidelines do not contain information about how to write articles in
Latex, it only contains information for Latex writers on how to write articles 
using our styles.

  Before writing your paper, please place  gokova.cls,  example.tex, 
  goksty.tex, figure.eps, empty.tex and readme.txt, ggt.bst in the same directory. 

  Please write your manuscript filling in the blanks in empty.tex, as shown 
  below.

---

TITLE AND AUTHOR

\title [short title here which shows up on top of even pages]
       {title of your paper to be written in this field}

  When writing the title, please use sentence case. Only the first
  letter of proper names should be capitalised.

\author[surnames]{fullnames}
  surnames: The author's surname should be written here in capitals.
   If there are two authors, "and" should be used to join the names.
   If there are many authors, only the first name should be
   written followed by "{\it et al.}"
  
  fullnames: The author's first name and surname should be written here 
   without abbreviation and with only the first letters capitalised. If there
   are more than two authors, a comma should appear between the names.

---

FOOTNOTES, ADDRESS AND EMAIL


\thanks{any notes related to your study, can be written here in brief}
   Example: This study was supported by TUBITAK.

\address{the author's address should be written in this field}
\email{the author's e-mail address to be written here}

  If there is more than one author, a separate \address and \email command
  should be used for each.

---

ABSTRACT AND KEYWORDS


  All proceedings books will appear with abstracts.
  The abstract is to be written between:

\begin{abstract} 
...
\end{abstract} 


After the abstract, provide keywords using: 

\keywords{list}
  

---

MAIN TEXT

The main text starts after \maketitle.


\section{the name of the section should be written in this field}
\subsection{the name of the subsection should be written here}
       
Section and subsection titles should be written in sentence case.


---

THEOREM ENVIRONMENTS

The theorem environments are defined in goksty.tex.

Most theorem-like environments share a common numbering sequence.

Available environments include:

theorem, lemma, corollary, proposition, axiom, conjecture,
definition, remark, question, construction, example, notation, proof

Please refer to example.tex for usage.

---

ACKNOWLEDGEMENTS

Acknowledgements should appear at the end of the manuscript as a continuation of the main body.

They should be written as:

\bigskip
\noindent\textbf{Acknowledgements.}

---




  FIGURES 

 Figures can be included using the graphicx package: 
 All figures in the paper should be given using the commands below.

\begin{figure}[htb]
\includegraphics{the full name of the graphics file should be written here}
\caption{If there is a caption, it should be written here}
\label{label}
\end{figure}

Common formats such as PDF and EPS are supported.


---

REFERENCES

Authors are encouraged to use BibTeX with the provided style file:

ggt.bst

To use BibTeX, include the following in your document:

\bibliographystyle{ggt}
\bibliography{your-bib-file}

This will automatically format references according to the Gökova style.



Manual references using thebibliography are also supported if preferred.

Citations in the paper should be written using the command \cite{the reference label to be written here}

The references should be listed at the end of the paper in the same order in which they appear in the text using the commands below.  

\begin{thebibliography}{99}
\bibitem[ref_number]{ref_label}
  ref_number: The reference number or the code (what will appear
   in printed form) should be written here.
  ref_label: The reference label that will be used with \cite{} command
   should be written here.

  The author's name should be given in the form of initials and surname.

  Periodicals: Title of the paper (in italics), name of the journal, volume (in bold), year (in parentheses), first and last page numbers.

  Books: Title of the book (in italics), name of the publisher, year (in parentheses)
      
  Preprints: The title of preprint should be in italics, the rest is in default style,

  Conference Procedings: The title of the talk should be in italics the rest should be in default style.

\end{thebibliography}

