Use mathbb
instead of matbb
and try $\text{\textregistered}$
instead of $\textregistered$
.
Also, be aware that the basic LaTeX
\textregistered
command produces a "faked" symbol. To get a better-looking symbol, be sure to load the textcomp
package.
Summing up the duplicates:
- First of all, get rid of the warnings
The footnote warning is normal as beamer has its own way to deal with footnotes, see Beamer patching footnotes warning: "Patching footnotes failed. Footnote detection will not work."
- "et al" in italics, in both places
https://tex.stackexchange.com/a/40999/36296
- Only initial for first names
https://tex.stackexchange.com/a/128823/36296
changing the order of the fields can be found at Biblatex: changing the order of entries and Biblatex: changing the order of entries and Changing order of fields and suppressing extra arXiv identifiers and Biblatex: Change order of fields (note+pages) for inproceedings/incollection
Suppress "In:" biblatex
- No DOI, ISSN, URL or anything like that
Biblatex: Get rid of ISSN, URLs and DOIs in references
\documentclass{beamer}
\setbeameroption{hide notes}
\usepackage{lmodern}
\usepackage[backend=biber, style=authoryear, doi=false,isbn=false,url=false, giveninits=true]{biblatex}
\begin{filecontents}{\jobname.bib}
@article{Forrest2014,
author = {Forrest, Alistair R. R. and Kawaji, Hideya and Rehli, Michael and {Kenneth Baillie}, J. and de Hoon, Michiel J. L. and Haberle, Vanja and Lassmann, Timo},
doi = {10.1038/nature13182},
issn = {0028-0836},
journal = {Nature},
pages = {462--470},
pmid = {24670764},
title = {{A promoter-level mammalian expression atlas}},
url = {http://dx.doi.org/10.1038/nature13182{\%}5Cnhttp://www.nature.com/doifinder/10.1038/nature13182},
volume = {507},
year = {2014}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\setbeamertemplate{bibliography item}{}
\usepackage{xpatch}
\xpatchbibmacro{name:andothers}{%
\bibstring{andothers}%
}{%
\bibstring[\emph]{andothers}%
}{}{}
\renewbibmacro{in:}{}
\mode<presentation> {
\usetheme{Singapore}
}
\begin{document}
\section{Frame 1}
\begin{frame}
\frametitle{Frame 1}
Here I want a citation:
\cite{Forrest2014}
\end{frame}
\begin{frame}[allowframebreaks]
\frametitle{References}
\printbibliography
\end{frame}
\end{document}

Best Answer
Add
to your document preamble.
Fonts are typically available only in certain sizes/increments. As an example, the basic
article
document class loads only the following sizes (fromsize10.clo
):\tiny
@5pt
;\scriptsize
@7pt
;\footnotesize
@8pt
;\small
@9pt
;\normalsize
@10pt
;\large
@12pt
;\Large
@14.4pt
;\LARGE
@17.28pt
;\huge
@20.74pt
; and\Huge
@24.88pt
So, requesting a
15pt
font size using something likeleads to LaTeX complaining in the
.log
file:Using
lmodern
removes this restriction by allowing font sizes at arbitrary sizes. For more on font size requirements, see Fonts at arbitrary sizes.