Devo usar o pacote \usepackage{titlesec}
.
Não tenho problemas com capítulos e seções. Porém, ao usar \subsection{..}
, a enumeração desaparece.
Problema:Meu problema é que quero ter subseções numeradas, mas o TexStudio mostra subseções não numeradas no meu documento
Pergunta:Como continuar a ter a enumeração da subseção??
Seguindo o código e a imagem do pdf.
\documentclass[a4paper,12pt,twoside]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[explicit,clearempty,nobottomtitles*]{titlesec} % pretty titles
%\usepackage{titlesec} % pretty titles
\usepackage{graphicx} % \resizebox
\usepackage{xcolor} % \color, \textcolor
\usepackage{colortbl} % \cellcolor
\providecommand\phantomsection{} % just in case we're not using hyperref
% chapter style
\definecolor{chapcolor}{rgb}{0.33,0.73,0}
\newlength\Chapmargin \Chapmargin=10pt % extra margin at left of chapter title
\newlength\Chaplineext \Chaplineext=1.5in % extension of "hanging" bottom line
% section style
\newsavebox\Secbox % used to temporarily store the section label
\titleformat{\section}%
[hang]{}{}{0pt}%
{%
\sbox\Secbox{% temporarily save section label in order to measure it later
%~ \color{white}\bfseries\rmfamily\LARGE\textsuperscript\S\,\thesection% section number, in white over color, bold, roman, LARGE
\color{white}\bfseries\rmfamily\LARGE\thesection% section number, in white over color, bold, roman, LARGE
}%
\def\arraystretch{2}% better vertical margins (for this table only)
\arrayrulewidth=1pt% thicker lines (for this table only)
\begin{tabular}{cl@{}}% no margin at the end
\arrayrulecolor{chapcolor}% colored lines (for this table only)
\hline%
\hfill\cellcolor{chapcolor}\usebox\Secbox%
&%
\textcolor{chapcolor}{% needs to be outside of the parbox (and use \textcolor) or else it messes up line formatting
\parbox[t]{\dimexpr \textwidth-\wd\Secbox-3\tabcolsep\relax}{%
\raggedright% no stretching/hyphenation
\LARGE\rmfamily\bfseries\MakeUppercase{#1}% chapter title (roman, bold, uppercase)
}}%
\\%
\end{tabular}%
}
\begin{document}
\chapter{First Chapter}
\section{first Section}
\subsection{First Sub Section}
\subsubsection{First SubSub Section}
\subsection{Second Sub Section}
\end{document}
O que eu obtenho:
e o que eu gostaria de obter:
Observe que o último valor foi obtido eliminando\usepackage{titlesec}
Responder1
Graças aos comentários, ficou claro que enfrento um bug ANTIGO do titlesec
. O problema foi resolvido com a nova versão. Para mais informações veja a pergunta e a respostaaqui.
PARA RESOLVER O BUG:
Baixe o correto (sem bugs) .sty
e substitua o antigo.
Para Ubuntu 18.04 com texlive:
sudo wget http://mirrors.ctan.org/macros/latex/contrib/titlesec/titlesec.sty -O /usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty
Para outras distribuições Linux:
Primeiro, execute locate /titlesec.sty
e depois adapte o código anterior.