
이 질문은 개방형일 수 있으며 다양한 해결책이 있습니다....
평소 스타일
다음의 간단한 문서를 고려해보세요
이는 다음 코드에 의해 생성됩니다.
\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}
보시다시피, cite
명령은 참조에 대한 추가 정보를 제공하기 위해 선택적 인수 '정리 8.1.8'을 사용합니다. 나는 독자들이 고유값 인터레이스에 관한 부분을 확인하기 위해 700페이지가 넘는 교과서 전체를 훑어볼 필요가 없도록 책에 있는 정리 8.1.8을 정확히 살펴보기를 바랍니다.
터프티 스타일
Tufte 스타일 문서에서도 비슷한 작업을 수행할 수 있습니다.
이는 다음에 의해 생성됩니다.
\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}
불행하게도 tufte-handout은 cite
선택적 인수가 있는 명령을 지원하지 않기 때문에 더 구체적인 정보를 제공할 수 없습니다. 이를 수행하는 가장 좋은 방법은 무엇입니까?
가장 간단한 대답 중 하나는 옆줄에 각주를 사용하고 다음과 같은 내용을 하나씩 손으로 쓰는 것입니다.
Refer to Theorem 8.1.8 in Golub and van Loan's Matrix Computations.
하지만 저는 여전히 LaTeX의 참고문헌 관리 시스템을 사용하고 싶습니다. 어떤 제안이라도 환영합니다.
답변1
nobib
문서 옵션에 추가 :
\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}