Generalacmtrans | Class File not found

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
bailian
Posts: 1
Joined: Fri Jun 01, 2012 5:57 am

acmtrans | Class File not found

Post by bailian »

Hi,

I am new to LaTeX, in fact its my first day working with it. I am trying to produce an ACM document and using the following code.

Code: Select all

\documentclass {acmtrans}

\title{Paper format for ACM Proceedings. Paper format for ACM Proceedings. Paper format for ACM Proceedings. }
\author{ bailian}
\date{June 1, 2012}

\begin{document}
\maketitle  
\begin{abstract}
I am getting an error this error
latex error: file acmtrans.cls not found
Please advise.
Last edited by localghost on Fri Jun 01, 2012 10:53 am, edited 2 times in total.

Recommended reading 2024:

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

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

Stefan Kottwitz
Site Admin
Posts: 10348
Joined: Mon Mar 10, 2008 9:44 pm

acmtrans | Class File not found

Post by Stefan Kottwitz »

Hi bailian,

welcome to the board!

Install the acmtrans package. If you use MiKTeX, it can be installed with the MiKTeX package manager, or get it from CTAN.

In case you already have it installed: I remember that acmtrans is a document style of LaTeX 2.09, to be used with \documentstyle{acmtrans}. With the current LaTeX2e, however, use the acmtrans2e class:

Code: Select all

\documentclass{acmtrans2e}
Stefan
LaTeX.org admin
Post Reply