
Esta pregunta puede ser abierta y tener muchas soluciones...
Estilo habitual
Considere el siguiente documento simple
que es generado por el siguiente código.
\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 puede ver, el cite
comando toma un argumento opcional 'Teorema 8.1.8' para brindar más información sobre la referencia. Quiero que el lector mire exactamente el Teorema 8.1.8 en el libro para que no tenga que hojear todo el libro de texto de más de 700 páginas para ver qué parte trata sobre el entrelazado de valores propios.
Estilo mechón
Puedo hacer algo similar en un documento estilo Tufte,
que es generado por lo siguiente.
\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}
Desafortunadamente, no puedo brindar información más específica porque el folleto tufte no admite cite
comandos con un argumento opcional. ¿Cuál es la mejor manera de hacer esto?
Una respuesta más sencilla puede ser simplemente utilizar una nota a pie de página al margen y escribir algo como lo siguiente, uno por uno, a mano.
Refer to Theorem 8.1.8 in Golub and van Loan's Matrix Computations.
Pero todavía quiero utilizar el sistema de gestión de bibliografía de LaTeX. Acepto cualquier sugerencia.
Respuesta1
Agregar nobib
a las opciones del 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}