EDIT: A versão que titlesec
eu uso é
titlesec.sty 2011/12/15 v2.10.0 Seccionamento de títulos
Estou usando mdframed
para definir caixas e ambientes semelhantes a teoremas. Quando carrego o pacote titlesec
, há um problema com os alinhamentos verticais.
O MWE com o bug
Aqui está um MWE titlesec
carregado:
\documentclass{article}
\usepackage{titlesec} % This is the cause of the wrong alignment
\usepackage{mdframed}
\newmdenv[%
innerleftmargin = 0pt,
innerrightmargin = 0pt,
innertopmargin = 0pt,
innerbottommargin = 0pt,
leftmargin = 0pt,
rightmargin = 0pt,
topline = false,
bottomline = false,
leftline = false,
rightline = true
]{myBox}
\mdfdefinestyle{myFramedTheoremStyle}{%
linewidth=0pt,
innertopmargin=-1pt,
innerbottommargin=8pt,
innerleftmargin=8pt,
innerrightmargin=8pt,
skipabove=10pt,
backgroundcolor=yellow}
\mdtheorem[style=myFramedTheoremStyle]{theo}{Theorem}
\begin{document}
\begin{myBox}
\section{test}
test
\begin{theo}
test
\end{theo}
\end{myBox}
\section{test}
test
\begin{theo}
Test
\end{theo}
\end{document}
O MWE como deveria ser
Sem titlesec
carregar, aqui está o resultado:
Minha pergunta
Existe uma maneira de corrigir o bug? Eu uso intensamente mdframed
mas preciso titlesec
apenas das seguintes linhas
\titleformat{\section}
{\normalfont\Large\bfseries}{\thesection}{1em}{}
\titleformat{\subsection}
{\normalfont\large\bfseries}{\thesubsection}{1em}{}
\titlespacing*{\section} {0pt}{0ex plus 10ex minus -3.5ex}{-0.5ex plus .2ex}
\titlespacing*{\subsection} {0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
Obrigado pela ajuda.
Posso largar \section*{...}
(e também titlesec
; não uso \section{}
, só uso a versão com estrela) e substituí-lo por texto de bom tamanho e formato, mas se alguém descobrir como consertar o grande, ótimo também!
De qualquer forma, como encontrei esse bug, acho bom que ele seja referenciado aqui.
Responder1
Com a versão mais recente titlesec
(2016/03/21 v2.10.2) e mdframed
(2013/07/01 1.9b), seu MWE funciona sem problemas.