This commit is contained in:
Desmond Elliott 2015-05-28 16:40:58 +00:00
commit 80ff88ad64
4 changed files with 59 additions and 12 deletions

View File

@ -278,19 +278,10 @@
\nointerlineskip
\begin{beamercolorbox}[wd=\paperwidth,leftskip=0.3cm,rightskip=0.3cm,ht=2.5ex,dp=1.5ex]{frametitle}
\usebeamerfont{frametitle}%
\if@protectFrameTitle%
\protect%
\if@noSmallCapitals%
\insertframetitle%
\else%
\textsc{\MakeLowercase{\insertframetitle}}%
\fi%
\if@noSmallCapitals%
\protect\insertframetitle%
\else%
\if@noSmallCapitals%
\insertframetitle%
\else%
\textsc{\MakeLowercase{\insertframetitle}}%
\fi%
\textsc{\MakeLowercase{\protect\insertframetitle}}%
\fi%
\end{beamercolorbox}%
\if@useTitleProgressBar

View File

@ -1,4 +1,5 @@
#!/bin/sh
set -xe
xelatex -shell-escape demo.tex
bibtex demo.aux
xelatex -shell-escape demo.tex

41
demo.bib Normal file
View File

@ -0,0 +1,41 @@
@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}",
}
@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"
}
@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"
}

View File

@ -180,6 +180,11 @@ or show \textbf{bold} results.\end{verbatim}
\end{quote}
\end{frame}
\begin{frame}{References}
Some prominent TeXing \cite{knuth92,ConcreteMath,Simpson,Er01,greenwade93}
\end{frame}
\section{Conclusion}
@ -199,4 +204,13 @@ or show \textbf{bold} results.\end{verbatim}
\plain{Questions?}
\begin{frame}[allowframebreaks]
\frametitle{References}
\bibliography{demo}
\bibliographystyle{plainnat}
\end{frame}
\end{document}