Document Classes'Abstract' Appears as 'Resume'

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
swagatopablo
Posts: 16
Joined: Sun Mar 25, 2012 10:57 am

'Abstract' Appears as 'Resume'

Post by swagatopablo »

I am using Kile 2.1.0 editor and trying to write an article on my research topic. Following is the structure of my tex file.

Code: Select all

\documentclass[11pt]{article}
\title{Interference Management in Multiuser MIMO Channels}
\author{Swagato~Barman~Roy}
\date{\today}
\begin{document}
\maketitle
\begin{abstract}
Blah.Blah.Blah
\end{abstract}
Blah.Blah.Blah
\end{document}
Albeit the code is compiling fine with no error (and includes all the references when cited), the 'Abstract' appears as 'Resume' (with accents over 'e's which I can't type in an american keyboard). Please 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
Stefan Kottwitz
Site Admin
Posts: 10322
Joined: Mon Mar 10, 2008 9:44 pm

'Abstract' Appears as 'Resume'

Post by Stefan Kottwitz »

I guess you have a french setting in your actual document, such as

Code: Select all

\usepackage[french]{babel}
The code you posted does show "Abstract". When you post example, please take care that they really show the problem.

Find the babel setting and change it, such as

Code: Select all

\usepackage[english]{babel}
Stefan
LaTeX.org admin
Post Reply