Beamer 프레젠테이션 참조 슬라이드는 프레임 나누기를 허용할 수 없으며 \frametitle을 가질 수 없습니다.

Beamer 프레젠테이션 참조 슬라이드는 프레임 나누기를 허용할 수 없으며 \frametitle을 가질 수 없습니다.

Beamer 프레젠테이션을 작성 중인데 참조 내용이 한 프레임에 너무 깁니다. 그래서 을 사용하려고 했지만 [allowframebreaks]다음과 같은 결과를 얻었습니다.TeX 용량 초과 오류내가 가지고 있다면 \frametitle. 프레임 나누기 또는 제목 중 하나를 가질 수 있지만 둘 다 가질 수는 없습니다. 나는 ShareLaTeX.com을 사용하고 natbib있습니다 pdflatex.

내 코드는 다음과 같습니다.

\documentclass[14pt, compress]{beamer}

\usetheme{m}

\usepackage{booktabs}
\usepackage[scale=2]{ccicons}
\usepackage{minted}
\usepackage{amsmath}
\usepackage{adjustbox}
\usepackage{graphicx}
\usepackage{url}
\usepackage{float}
\usepackage{setspace}
\usepackage{tikz}
\usepackage{caption}
\usepackage[super]{natbib}
\usemintedstyle{trac}

\bibliographystyle{apalike}



\title{The Prospects of D-T Nuclear Fusion as a Source of Electricity Production}
\subtitle{A Senior Seminar}
\date{23 April 2015}
\author{Kyle Reilly}
\institute{Cedarville University}



\graphicspath{{figures/}}


\begin{document}

\begin{frame}[allowframebreaks]
\frametitle{References}

\footnotesize{
\bibliography{Seminar_References.bib}
}

\end{frame}



\end{document}

답변1

옵션 을 사용하려면 프레임 제목이 allowframebreaks필요한 경우가 있습니다 \protect.

문서를 다음과 같이 변경해야 합니다.

\begin{frame}[allowframebreaks]
  \frametitle{\protect References} % \protect the title here

  \footnotesize{
    \bibliography{Seminar_References.bib}
  }

\end{frame}

왜 필요한지 더 자세히 알고 싶다면 \protect다음 토론을 확인하세요.깨지기 쉬운 것과 견고한 것의 차이점은 무엇입니까?

편집: 사과드립니다. \protect이 편집 수준에서는 의도한 효과가 없습니다. 명령을 beamerthemem.sty사용 하여 행을 편집하여 다음 해결 방법을 시도해 볼 수 있습니다 \protect.

  281: \protect\insertframetitle%
  284: \textsc{\MakeLowercase{\protect\insertframetitle}}%

다음은 실제 예입니다.

데모.텍스:

\documentclass[14pt, compress]{beamer}

\usetheme{m}

\usepackage{booktabs}
\usepackage[scale=2]{ccicons}
\usepackage{minted}
\usepackage{amsmath}
\usepackage{adjustbox}
\usepackage{graphicx}
\usepackage{url}
\usepackage{float}
\usepackage{setspace}
\usepackage{tikz}
\usepackage{caption}
\usepackage[super]{natbib}
\usemintedstyle{trac}

\bibliographystyle{apalike}

\title{The Prospects of D-T Nuclear Fusion as a Source of Electricity Production}
\subtitle{A Senior Seminar}
\date{23 April 2015}
\author{Kyle Reilly}
\institute{Cedarville University}

\begin{document}

\maketitle

\begin{frame}

Force the frame break \citet{Knuth92} \citet{ConcreteMath} \citet{Simpson} \citet{Er01} \citet{greenwade93}

\end{frame}

\begin{frame}[allowframebreaks]
\frametitle{References}

\bibliography{demo}
\end{frame}
\end{document}

데모.턱받이:

@article{Knuth92, 
        author = "D.E. Knuth", 
        title = "Two notes on notation", 
        journal = "Amer. Math. Monthly", 
        volume = "99", 
        year = "1992", 
        pages = "403--422", 
} 

@book{ConcreteMath, 
        author = "R.L. Graham and D.E. Knuth and O. Patashnik", 
        title = "Concrete mathematics", 
        publisher = "Addison-Wesley", 
        address = "Reading, MA", 
        year = "1989" 
} 

@unpublished{Simpson, 
        author = "H. Simpson", 
        title = "Proof of the {R}iemann {H}ypothesis", 
        note = "preprint (2003), available at  
        \texttt{http://www.math.drofnats.edu/riemann.ps}", 
        year = "2003" 
} 

@incollection{Er01, 
        author = "P. Erd{\H o}s", 
        title = "A selection of problems and results in combinatorics", 
        booktitle = "Recent trends in combinatorics (Matrahaza, 1995)", 
        publisher = "Cambridge Univ. Press", 
        address = "Cambridge", 
        pages = "1--6", 
        year = "2001" 
} 
@article{greenwade93, 
    author  = "George D. Greenwade", 
    title   = "The {C}omprehensive {T}ex {A}rchive {N}etwork ({CTAN})", 
    year    = "1993", 
    journal = "TUGBoat", 
    volume  = "14", 
    number  = "3", 
    pages   = "342--351" 
} 

제목 페이지 인용문이 포함된 프레젠테이션 본문 참고자료, 1페이지 참고 자료, 2페이지

관련 정보