With the tufte-book class and this MWE
\documentclass{tufte-book}
\begin{document}
Test
\end{document}
I get two warnings:
Package ifplatform Warning: shell escape is disabled, so I can only detect \ifwindows.
Second one:
Package bibentry Warning: You have used \nobibliography*
(bibentry) without a following \bibliography.
On the other hand, these lines work without any warnings:
\documentclass{article}
\begin{document}
Test
\end{document}
Who has an idea what is causing the warnings and how to avoid them?
--shell-escapeas parameter for your latex compiler. – TeXnician Apr 04 '17 at 19:39--shell-escapejust to avoid the warning (and only use it on trusted files) – David Carlisle Apr 04 '17 at 19:53