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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
Stefan Kottwitz
Site Admin
Posts: 10397
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