Document Classes ⇒ document class "article"
-
- Posts: 46
- Joined: Mon Feb 05, 2007 5:19 pm
document class "article"
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
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
NEW: TikZ book now 40% off at Amazon.com for a short time.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
document class "article"
First of all you should tell us something about the requirements this paper has to fulfil.me_here_me wrote:[...] I have to write a paper using the document class "article". [...]
Best regards
Thorsten¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
- Stefan Kottwitz
- Site Admin
- Posts: 10323
- Joined: Mon Mar 10, 2008 9:44 pm
document class "article"
Hi,
Stefan
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:I searched on the internet and was not able to find some tutorial specifically about this document class.
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.me_here_me wrote:Can someone kindly point me to some tutorial or documentation where I can learn commands about "article".
Stefan
LaTeX.org admin
-
- Posts: 46
- Joined: Mon Feb 05, 2007 5:19 pm
document class "article"
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

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 documentchemistry, 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}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
document class "article"
In this case you should give the scientificpaper package a try. And in this context the coverpage package may also be of interest.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. [...]
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: document class "article"
To see the title, you have to use:
\maketitle
\maketitle
-
- Posts: 46
- Joined: Mon Feb 05, 2007 5:19 pm
Re: document class "article"
that is it 
\maketitle
thanks all

\maketitle
thanks all