Document Classesdocument class "article"

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
me_here_me
Posts: 46
Joined: Mon Feb 05, 2007 5:19 pm

document class "article"

Post by me_here_me »

Hi,
I have to write a paper using the document class "article". I searched on the internet and was not able to find some tutorial specifically about this document class. Can someone kindly point me to some tutorial or documentation where I can learn commands about "article".

Thanks for your help

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

document class "article"

Post by localghost »

me_here_me wrote:[...] I have to write a paper using the document class "article". [...]
First of all you should tell us something about the requirements this paper has to fulfil.


Best regards
Thorsten¹
User avatar
Stefan Kottwitz
Site Admin
Posts: 10323
Joined: Mon Mar 10, 2008 9:44 pm

document class "article"

Post by Stefan Kottwitz »

Hi,
me_here_me wrote:I searched on the internet and was not able to find some tutorial specifically about this document class.
Because it's a standard LaTeX class information about the article class should be contained in most LaTeX tutorials. Perhaps have a look at the short list Introductions and Guides for general information.
me_here_me wrote:Can someone kindly point me to some tutorial or documentation where I can learn commands about "article".
Every good LaTeX introduction should point out the differences between article and the other base classes like book, report. Perhaps have a look at the source file article.cls, you can find it on your computer and here on CTAN too, at least to get an impression what's defined by article.

Stefan
LaTeX.org admin
me_here_me
Posts: 46
Joined: Mon Feb 05, 2007 5:19 pm

document class "article"

Post by me_here_me »

thanks for your replies, I will try to explain my issues in detail :)

I am writing a scientific paper (With a paper heading, followed by names of authors and address and then an abstract and the article) and I was earlier using a conference template where a template is provided and we just need to fill in our particulars.

When I switched to article documentclass it does not recognize \address{.....} (to put in authors addresses) and the \begin{keyword} (to put in keywords to be searched on the internet).

Although it recognizes the \title{....} and \author{....}, it does not display the title and author names in the produced pdf.

Here is my code

Code: Select all

Code, edit and compile here:
\documentclass[final, twocolumn]{article}
\usepackage{mathptmx}
\usepackage{graphicx}
\usepackage{subfig}
\usepackage{url}
\begin{document}
\title{The title of the paper} %(The title is not displayed in the produced pdf)
\author{abc def, ghi jkl, mno pqr} %(The author names are not displayed in the produced pdf)
\address{my address here} %(Not recognized)
\begin{abstract}
The abstract goes here. The abstract is shown as it should
\end{abstract}
\begin{keyword} % does not recognize keyword ...... is there some other command to put in keywords in my document
chemistry, organic.
\end{keyword}
\input{Tex/Introduction.tex} % all of these work kooool
\input{Tex/PreviousWork.tex}
\input{Tex/main.tex}
\input{Tex/Results.tex}
\input{Tex/Conclusion.tex}
\bibliographystyle{abbrv} % printed nicely
\nocite{*}
\bibliography{bibfile}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

document class "article"

Post by localghost »

me_here_me wrote:[...] I am writing a scientific paper (With a paper heading, followed by names of authors and address and then an abstract and the article) and I was earlier using a conference template where a template is provided and we just need to fill in our particulars. [...]
In this case you should give the scientificpaper package a try. And in this context the coverpage package may also be of interest.
PGScooter
Posts: 31
Joined: Mon Jul 14, 2008 2:47 pm

Re: document class "article"

Post by PGScooter »

To see the title, you have to use:
\maketitle
me_here_me
Posts: 46
Joined: Mon Feb 05, 2007 5:19 pm

Re: document class "article"

Post by me_here_me »

that is it :)

\maketitle

thanks all
Post Reply