Debo usar el paquete \usepackage{titlesec}
.
No tengo ningún problema con los capítulos y secciones. Sin embargo, cuando se utiliza \subsection{..}
, la enumeración desaparece.
Problema:Mi problema es que quiero tener subsecciones numeradas, pero TexStudio muestra subsecciones sin numerar en mi documento.
Pregunta:¿Cómo seguir teniendo la enumeración de subsección?
Siguiendo el código y la imagen del 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}
Lo que obtengo:
y lo que me gustaría obtener:
Tenga en cuenta que la última cifra se obtuvo eliminando\usepackage{titlesec}
Respuesta1
Gracias a los comentarios, quedó claro que me enfrento a un VIEJO error de titlesec
. El problema se soluciona con la nueva versión. Para más información ver la pregunta y la respuesta.aquí.
PARA SOLUCIONAR EL ERROR:
Descargue el correcto (sin errores) .sty
y sustitúyalo por el anterior.
Para Ubuntu 18.04 con 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 otras distribuciones de Linux:
Primero, ejecute locate /titlesec.sty
y luego adapte el código anterior.