Quiero escribir 1 Capítulo en lugar del Capítulo 1. ¿Alguna sugerencia?
Gracias
Respuesta1
A menos que me falte algo, según OP y comentarios en OP... Esta solución debería ser suficiente:
\documentclass[12pt]{book}
\usepackage[utf8]{inputenc}
\usepackage[LGR,T1]{fontenc}
\usepackage[basque]{babel} % <- choice based on OP's comment
\usepackage{titlesec}
\renewcommand\chaptertitlename{kapitulua} % <- assuming that should be made lowercase when order changed
%\renewcommand\thechapter{\Roman{chapter}} % <- uncomment if you want Roman numerals instead
\titleformat{\chapter}[display]{\normalfont\huge\bfseries}{\thechapter\ \chaptertitlename}{20pt}{\Huge} % <- order changed (default is \chaptertitlename \ \thechapter)
\begin{document}
\chapter{Your title goes here}
\end{document}
Descomente la línea \renewcommand\thechapter{\Roman{chapter}}
si desea utilizar números romanos en mayúsculas, es decir, "capítulo I", "capítulo II" en lugar de "capítulo 1" y "capítulo 2" en árabe.
Respuesta2
Como @Bernard indicó en su comentario, debes usartitlesec
paquete. Se pueden utilizar los códigos de las páginas 23 y 24 del archivo pdf correspondiente. Lea las descripciones en las páginas para realizar ajustes.
\documentclass[10pt,oneside]{book}
\usepackage[dvips]{color}
\usepackage{lipsum}
\usepackage[rigidchapters,explicit]{titlesec}
\DeclareFixedFont{\chapterfont}{T1}{phv}{bx}{n}{4cm}
\titlespacing{\chapter}{0pt}{100pt}{75pt}
\titleformat{\chapter}[block]
{\begin{picture}(0,230)}
{\put(450,80){%
\makebox(0,0)[rb]{%
{}}}
\put(0,270){%
\makebox(0,0)[lb]{%
\Huge\sffamily{\thechapter\ Chapter }}}}
{0pt}
{\put(0,200){\parbox[t]{300pt}{%
\Huge\sffamily\filright#1}}}
[\end{picture}]
\begin{document}
\chapter{First Chapter}
\lipsum[2]
\section{First Section}
\lipsum[1]
\end{document}