"titlesec" 패키지 사용시 계속 열거됨

"titlesec" 패키지 사용시 계속 열거됨

패키지를 사용해야 합니다 \usepackage{titlesec}.

장과 섹션에는 문제가 없습니다. 그러나 를 사용하면 \subsection{..}열거형이 사라집니다.

문제:내 문제는 번호가 매겨진 하위 섹션을 갖고 싶지만 TexStudio가 내 문서에 번호가 없는 하위 섹션을 표시한다는 것입니다.

질문:하위 섹션 열거를 계속 유지하는 방법은 무엇입니까 ??

코드와 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}

내가 얻는 것:

여기에 이미지 설명을 입력하세요

그리고 내가 얻고 싶은 것:

여기에 이미지 설명을 입력하세요

마지막 수치는 삭제하여 얻은 것입니다.\usepackage{titlesec}

답변1

의견 덕분에 titlesec. 새 버전에서는 문제가 해결되었습니다. 자세한 내용은 질문과 답변을 참조하세요여기.

버그 해결을 위해:

올바른 버전(버기 없음)을 다운로드 .sty하고 이전 버전으로 대체하세요.

texlive가 있는 Ubuntu 18.04의 경우:

sudo wget http://mirrors.ctan.org/macros/latex/contrib/titlesec/titlesec.sty -O /usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty

다른 Linux 배포판의 경우:

먼저 locate /titlesec.sty이전 코드를 실행한 후 적용합니다.

관련 정보