I have the following document:
\documentclass[11pt,a4paper,twoside]{book}
\usepackage[spanish,activeacute]{babel}
\usepackage[titletoc]{appendix}
\begin{document}
\setcounter{tocdepth}{2}
\setcounter{secnumdepth}{3}
\tableofcontents
\chapter{First chapter}
\begin{appendices}
\addappheadtotoc
\appendixpage
\clearpage
\chapter{Some name}
\label{label1}
blah blah
\end{appendices}
\end{document}
this gives in the ToC:
Apéndice Appendices....................60
Apéndice A. Some name..................63
and in the body of the document:
Appendices
(page skip)
Apéndice A
Some name
blah blah
The TOC shows
"Apéndice Appendices"and I need it to show"Apéndices"(note the "s" at the end of that word; it's not the same word that the first one currently in the TOC) Also in the body of the document it shows"Appendices"(in english) and I also need it to say"Apéndices"(in spanish), ie: the same word that should be displayed in the TOC. This looks like ababelissue to me.Is there a way not to have to give each appendix a name? This is done with the
\chapter{Some name}command, but I'd like the name ofApéndice Ato be just that:Apéndice A. This way the ToC would look like (assuming the 1st point is fixed):Apéndices........................60 Apéndice A.......................63and the body of the document:
Apéndices (page skip) Apéndice A blah blahIs there any way to do this?
I think a hack to accomplish the 2nd point would be to combine @murray's answer with not giving a name to the chapter. This is, this line \chapter{Some name} would have to be replaced by:
\chapter[]{}
It's not pretty but I think it gets the job done. If anybody knows of a more elegant way to do this, please let me know.

babelpackage (and, if so, which which language(s))? – Mico Jun 27 '12 at 22:10Apéndice Appendicesin the TOC is not how it should be. The rest probably is, but I would like to change it either way. Thanks anyway, cheers. – Gabriel Jun 28 '12 at 00:01\chapter{}gives “Apéndice A” in a font slightly smaller than the normal chapter title and then a huge ugly space. – Caramdir Jun 28 '12 at 02:30\chapter{Apéndice A}because then I would get "Apéndice A" twice. I just don't think it's necessary to give a name to the appendix, "Apéndice A" (or "Appendix A" in english) should be enough. – Gabriel Jun 28 '12 at 02:38\chapter), I'd recommend asking a new question just about that problem. – Caramdir Jun 28 '12 at 16:50