
"jbact" 참고문헌 스타일을 사용하고 있는데 몇 번 조판한 후에 내 참고문헌의 제목이 표시되지 않습니다.
jbact 스타일에는 참조에서 제목을 켜는 코드 줄이 있다고 들었지만 정확하게 수행하는 방법을 찾을 수 없었습니다.
처음에 내 코드 줄은 다음과 같습니다.
\documentclass[oneside]{book}
\begin{document}
\TOCadd{Bibliography}
\bibliographystyle{jbact}
\bibliography{BIB}
\end{document}
내 bibtex는 다음과 같습니다
@article{Lemaitre1997,
author = {Lemaitre, B. and Reichhart, J.M. and Hoffmann, J.A.},
year = {1997},
title = {Drosophila host defense: Differential induction of antimicrobial peptide genes after infection by various classes of microorganisms},
journal = {Proceedings of the National Academy of Sciences of the United States of America},
volume = {94},
pages = {14614 - 14619}
}
@article{Montenegro2005,
author = {Montenegro, H. and Solferini, V.N. and Klaczko, L.B. and Hurst, G.D.D.},
year = {2005},
title = {Male-kiling Spiroplasma naturally infecting Drosophila melanogaster},
journal = {Insect Molecular Biology},
volume = {14},
number = {3},
pages = {281 - 287}
}
감사합니다!
답변1
\nocite{TitlesOn}
, 의 27번째 줄에 쓰여진 대로jbact.bst
% TITLES can be turned on and off!
% Just nocite the reference TitlesOn in the paper (i.e. \nocite{TitlesOn})
% and have a bibliography article in your database with that cite key!
% Without titles is Journal of Molecular Biology;
% With titles is Journal of Theoretical Biology.
메모:
.bib 파일에 해당 항목이 필요합니다.
\documentclass[oneside]{book}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{Montenegro2005,
author = {Montenegro, H. and Solferini, V.N. and Klaczko, L.B. and Hurst, G.D.D.},
year = {2005},
title = {Male-kiling Spiroplasma naturally infecting Drosophila melanogaster},
journal = {Insect Molecular Biology},
volume = {14},
number = {3},
pages = {281 - 287}
}
@article{TitlesOn,
author = "TitlesOn",
title = "TitlesOn",
journal = "TitlesOn",
volume = "TitlesOn",
comment = "If this is nocited, then titles will be turned on in JMB style",
year = "1900"}
\end{filecontents}
\begin{document}
\nocite{TitlesOn}
\cite{Montenegro2005}
\bibliographystyle{jbact}
\bibliography{\jobname}
\end{document}