Como consultar mais especificamente no folheto estilo Tufte

Como consultar mais especificamente no folheto estilo Tufte

Esta questão pode ser aberta e ter muitas soluções....


Estilo usual

Considere o seguinte documento simples

insira a descrição da imagem aqui

que é gerado pelo código a seguir.

\RequirePackage{filecontents}

\begin{filecontents}{bib.bib}
@book{golub13,
  author = {Golub, Gene H. and van Loan, Charles F.},
  edition = {4th},
  title = {Matrix Computations},
  year = 2013,
  publisher = {JHU Press}
}
\end{filecontents}

\documentclass{article}
\usepackage{fullpage}
\begin{document}
It is well-known that the eigenvalues of $A + vv^T$ interlace those of
$A$ \cite[Theorem 8.1.8]{golub13}.

\bibliography{bib}
\bibliographystyle{alpha}

\end{document}

Como você pode ver, o citecomando usa um argumento opcional 'Teorema 8.1.8' para fornecer mais informações sobre a referência. Quero que o leitor leia exatamente o Teorema 8.1.8 do livro, para que não precise folhear todo o livro de mais de 700 páginas para ver qual parte trata do entrelaçamento de autovalores.


Estilo Tufo

Posso fazer algo semelhante em um documento estilo Tufte,

insira a descrição da imagem aqui

que é gerado pelo seguinte.

\RequirePackage{filecontents}

\begin{filecontents}{bib.bib}
@book{golub13,
  author = {Golub, Gene H. and van Loan, Charles F.},
  edition = {4th},
  title = {Matrix Computations},
  year = 2013,
  publisher = {JHU Press}
}
\end{filecontents}

\documentclass{tufte-handout}

\begin{document}
It is well-known that the eigenvalues of $A + vv^T$ interlace those of
$A$.\cite{golub13}

\nobibliography{bib}
\bibliographystyle{alpha}
\end{document}

Infelizmente, não posso fornecer informações mais específicas porque o folheto tufte não suporta citecomandos com um argumento opcional. Qual é a melhor maneira de fazer isso?

Uma resposta mais simples pode ser apenas usar uma nota de rodapé na linha lateral e escrever algo como o seguinte, um por um, à mão.

Refer to Theorem 8.1.8 in Golub and van Loan's Matrix Computations.

Mas ainda quero usar o sistema de gerenciamento de bibliografia do LaTeX. Aceito qualquer sugestão.

Responder1

Adicione nobibàs opções do documento:

\RequirePackage{filecontents}

\begin{filecontents}{bib.bib}
@book{golub13,
  author = {Golub, Gene H. and van Loan, Charles F.},
  edition = {4th},
  title = {Matrix Computations},
  year = 2013,
  publisher = {JHU Press}
}
\end{filecontents}

\documentclass[nobib]{tufte-handout}
\usepackage{fullpage}
\begin{document}
It is well-known that the eigenvalues of $A + vv^T$ interlace those of
$A$ \cite[Theorem 8.1.8]{golub13}.

\bibliography{bib}
\bibliographystyle{alpha}

\end{document}

insira a descrição da imagem aqui

informação relacionada