mdframed+pdflatex의 하이퍼레프 문제

mdframed+pdflatex의 하이퍼레프 문제

mdframed 및 pdflatex에서 하이퍼참조를 사용할 때 문제가 발생합니다. 다음은 다음과 같은 오류를 발생시키는 MWE입니다.

! Missing \endcsname inserted.
<to be read again>
                   \bx@A
l.29    \end{defini}

하이퍼참조를 사용하지 않으면 문제가 사라집니다. 그러나 100페이지 이상의 문서에서는 하이퍼링크로 연결된 목차가 반드시 필요합니다. MWE는 다음과 같습니다.

\documentclass[11pt]{memoir}

\usepackage{lipsum}

\usepackage{mdframed}
\RequirePackage{ltxkeys}   %%% Different error if not there
\usepackage{xcolor}

\mdfdefinestyle{DefinitionStyle}{innertopmargin=5pt,linewidth=4pt,linecolor=red,backgroundcolor=blue!3}
\newcounter{definitioncount}[section]

\newenvironment{defini}{\refstepcounter{definitioncount} \begin{mdframed}[style=DefinitionStyle]%
\raisebox{4pt}[0pt][-5pt]{\hspace{-14pt}\fcolorbox{red}{red}%
{\bfseries \large\textcolor{white}{$\quad$Definition \thedefinitioncount $\quad$}}}\\}%
{\end{mdframed}}

\usepackage{hyperref}

\begin{document}

\chapter{Introduction}
\lipsum[2]
\lipsum[1]

\begin{defini}
\lipsum[1]
\end{defini}

\end{document}

답변1

2012/08/03 v6.82y에 도입된 버그일 가능성이 높습니다.

* 6.82y
* Unique destination names: Lookup for parent counters added
  for counters that are defined before hyperref is loaded and
  \theH<counter> is not provided.

2012/08/11 v6.82z에서 수정되었습니다.

* 6.82z
* Fix in parent counter lookup, meaning of \@elt is restored after usage.

관련 정보