내용에 따라\AtBeginSection 다른 오류가 발생합니다.

내용에 따라\AtBeginSection 다른 오류가 발생합니다.

.beamerbiblatex

\documentclass{beamer}

\usepackage{tikz}

\usepackage{biblatex}   

\begin{filecontents}{BibDatabase.bib}
@book{Miller2012,
    author = {Adam Miller},
    title = {Clever Book Title},
    date = {2012},
}
\end{filecontents}

\addbibresource{BibDatabase.bib}    

\AtBeginSection{
    \begin{frame}[plain]
    \begin{tikzpicture}
    \end{tikzpicture}
    \end{frame}
}

\begin{document}

\section{test}
\begin{frame}
  \cite{Miller2012}
  \printbibliography
\end{frame}

\end{document}

내용에 따라\AtBeginSection 다른 오류가 발생합니다.

오류 1( plain옵션 활성화)

\begin{frame}[plain]
\begin{tikzpicture}
\end{tikzpicture}
\end{frame}
! Extra }, or forgotten \endgroup.
\endframe ->\egroup 
                    \begingroup \def \@currenvir {frame}
l.30 \end{frame}

I've deleted a group-closing symbol because it seems to be
spurious, as in `$x}$'. But perhaps the } is legitimate and
you forgot something else, as in `\hbox{$x}'. In such cases
the way to recover is to insert both the forgotten and the
deleted material, e.g., by typing `I$}'.

오류 2(plain 옵션~ 아니다활성/ tikzpicture제거됨)

\AtBeginSection{
    \begin{frame}%[plain]
    \begin{tikzpicture}
    \end{tikzpicture}
    \end{frame}
}

\AtBeginSection{
    \begin{frame}%[plain]
    %\begin{tikzpicture}
    %\end{tikzpicture}
    \end{frame}
}
! Missing \endcsname inserted.
<to be read again> 
                   \vrule 
l.30 \end{frame}

The control sequence marked <to be read again> should
not appear between \csname and \endcsname.

오류 없음(콘텐츠 없음)

\AtBeginSection{
%   \begin{frame}%[plain]
%   \begin{tikzpicture}
%   \end{tikzpicture}
%   \end{frame}
}

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

문제를 재현할 수 있나요?

답변1

\printbibliography전화 \section*. 따라서 framea 내에 a를 중첩하려고 하는데 frame작동할 수 없습니다.

사용하거나

\AtBeginSection[]{%
  ...
}

번호가 없는 섹션에서 사용자 정의 항목을 피하거나 다음을 사용하십시오.

\printbibliography[heading=none]

\printbibliography섹션 제목을 만들지 않으려면

관련 정보