Estou tentando configurar a aparência dos títulos dos meus capítulos. Até agora, eles parecem como eu quero. No entanto, existem alguns erros.
Todos os meus \chapter
estão tendo estes erros:
Illegal unit of measure (pt inserted). \chapter{Remediation experiment} Illegal unit of measure (pt inserted). \chapter{Remediation experiment} Illegal unit of measure (pt inserted). \chapter{Remediation experiment} Missing number, treated as zero. \chapter{Remediation experiment} Missing number, treated as zero. \chapter{Remediation experiment} Missing number, treated as zero. \chapter{Remediation experiment}
Este é o meu código
\documentclass[a4paper,12pt]{report}
\usepackage{titlesec}
\titleformat{\chapter}[display]
{\normalfont\Large\raggedleft\bfseries}
{\chaptertitlename\ \thechapter}
{ \vspace{1ex}
\titlerule[2pt]%
\vspace{2ex}%
}{}
\titlespacing*{\chapter} {}{-60pt}{20pt} %% adjust these numbers
\usepackage{natbib}
\bibliographystyle{apalike}
\usepackage{glossaries}
\setacronymstyle{long-short}
\begin{document}
\title{Proposal for PhD project}
\author{XXX}
\maketitle
\newpage
\pagenumbering{roman}
\tableofcontents
\newpage
\pagenumbering{arabic}
\chapter{Introduction}
Responder1
- O quinto argumento do
titleformat
comando deve ser uma distância e não alguns comandos de látex - O segundo argumento do
\titlespacing
comando não deve estar vazio
!
\documentclass[a4paper,12pt]{report}
\usepackage{titlesec}
\titleformat{\chapter}[display]
{\normalfont\Large\raggedleft\bfseries}
{\chaptertitlename\ \thechapter}
{1ex}
{ \titlerule[2pt]%
\vspace{2ex}%
}
\titlespacing*{\chapter} {0pt}{-60pt}{20pt} %% adjust these numbers
\usepackage{natbib}
\bibliographystyle{apalike}
\usepackage{glossaries}
\setacronymstyle{long-short}
\begin{document}
\title{Proposal for PhD project}
\author{XXX}
\maketitle
\newpage
\pagenumbering{roman}
\tableofcontents
\newpage
\pagenumbering{arabic}
\chapter{Introduction}
\end{document}