我想为引用的文章制作一个与本文相同风格的参考书目。我不知道该选择什么风格。以下是我制作第一篇文章的方式:
@Article{EA01,
author = {Newsholme, E. A. and Dimitriadis, G.},
title = {Integration of biochemical and physiologic effects of insulin on glucose metabolism},
journal = {Experimental and Clinical Endocrinology \& Diabetes},
year = {2001},
volume = {109 Suppl 2},
pages = {S122-34},
note = {Review}}
谢谢
答案1
我生成了一个特殊的 bibstyle,带有给定的建议...唯一没有打印的是Notes
,就像review
第一个例子中的一样。
除此之外,我认为它符合您的期望......
为了生成 bibstyle,我运行了该makebst.tex
文件并按照此处的说明进行操作:创建你的 bistyle。
对于那些想要创建自己的 bibstyle 的人来说,这是一个循序渐进的解决方案。也许你会发现如何包含注释...
我给你提供了医学文献样式.zip包含您需要的所有内容(通过 Dropbox):
medical.bst
文件(bibstyle 文件)Med_bibstyle.tex
(要编译的空 tex 文件)Med_bibstyle.bib
(包含示例条目的 bib 文件)
我希望它能做到;)
输出如下:
祝你在医学研究上取得巨大成功;)
答案2
这是我的biblatex
解决方案的补充楼主之前的问题。
这将按照指示的样式排版参考书目。
最后结果
代码
\begin{filecontents}{\jobname.bib}
@article{newsholme,
title={Integration of biochemical and physiologic effects of insulin on glucose metabolism},
author={Newsholme, E. A. and Dimitriadis, G.},
journal={Experimental and Clinical Endocrinology \& Diabetes},
volume={109},
number={Suppl 2},
pages={S122--S134},
year={2001},
publisher={{\copyright} Johann Ambrosius Barth},
note={Review}
}
@article{rivellese,
title={Exogenous and endogenous postprandial lipid abnormalities in type 2 diabetic patients with optimal blood glucose control and optimal fasting triglyceride levels},
author={Rivellese, Angela A. and De Natale, Claudia and Di Marino, Lucrezia and Patti, Lidia and Iovine, Ciro and Coppola, Silvana and Prato, Stefano Del and Riccardi, Gabriele and Annuzzi, Giovanni},
journal={Journal of Clinical Endocrinology \& Metabolism},
volume={89},
number={5},
pages={2153--2159},
year={2004},
month={may},
publisher={Endocrine Society}
}
@article{chen,
title={Differences in postprandial lipemia between patients with normal glucose tolerance and noninsulin-dependent diabetes mellitus.},
author={Chen, Y. D. and Swami, SRILATHA and Skowronski, ROMAN and Coulston, A and Reaven, GERALD M},
journal={The Journal of clinical endocrinology and metabolism},
volume={76},
number={1},
pages={172--177},
year={1993},
publisher={American Public Health Association}
}
@article{stinson,
title={The Regulation of Post-prandial Cellular Cholesterol Metabolism in Type 2 Diabetic and Non-diabetic Subjects},
author={Stinson, JC and Owens, D and McBrinn, S and Collins, P and Johnson, A and Tomkin, GH},
journal={Diabetic medicine},
volume={10},
number={5},
pages={420--426},
year={1993},
publisher={Wiley Online Library}
}
@article{strandberg,
title={High plasma insulin is associated with lower LDL cholesterol in elderly individuals},
author={Strandberg, Timo E and Tilvis, Reijo S and Lindberg, Otto and Valvanne, Jaakko and Sairanen, Sirpa and Ehnholm, Christian and Tuomilehto, Jaakko},
journal={Atherosclerosis},
volume={121},
number={2},
pages={267--273},
year={1996},
month={apr},
day={5},
publisher={Elsevier}
}
\end{filecontents}
\documentclass[]{report}
\usepackage[
refsection=chapter,
style=authortitle,
backend=biber,
sorting=none,
firstinits=true,
terseinits=true,
maxnames=99,
]{biblatex}
\addbibresource{\jobname.bib}
% Fix first initials
\renewcommand*{\revsdnamepunct}{}
% Fix name ordering (all last-first order)
\DeclareNameAlias{sortname}{last-first}
\DeclareNameAlias{default}{last-first}
% Remove quote marks around title
\DeclareFieldFormat
[article,inbook,incollection,inproceedings,patent,thesis,unpublished]
{title}{#1}
% Remove "In:" designator
\renewbibmacro{in:}{}
% Remove italics on journal name
\DeclareFieldFormat{journaltitle}{#1}
% Fix ordering of issue details
\renewbibmacro*{journal+issuetitle}{%
\usebibmacro{journal}%
\newunit%
\iffieldundef{series}
{}
{\newunit
\printfield{series}%
\setunit{\addspace}}%
\usebibmacro{date+volume+number}%
\setunit{\addcolon\space}%
\usebibmacro{issue}%
\newunit}
\newbibmacro*{date+volume+number}{%
\usebibmacro{date}%
\setunit{\addsemicolon}%
\printfield{volume}%
\printfield[parens]{number}}
\renewbibmacro*{note+pages}{%
\setunit{\addcolon}%
\printfield{pages}%
\newunit%
\printfield{note}%
\newunit}
% Remove "pp." from pages
\DeclareFieldFormat{pages}{#1}
% Make style
\usepackage{amssymb} % For \blacksquare
\def\mathllap{\mathpalette\mathllapinternal}
\def\mathllapinternal#1#2{%
\llap{$\mathsurround=0pt#1{#2}$}}
% Make a new definition of bibliography environment
\defbibenvironment{bibliography}
{\list{}{%
\leftmargin\bibhang
\itemindent-\leftmargin
\itemsep\bibitemsep
\parsep\bibparsep}}
{\endlist}
{\item\hskip \bibhang \relax \ensuremath{\mathllap{\blacksquare\;\;}}\sffamily}
\defbibheading{refbib}[Reference~\therefsegment]{\subsection*{#1}}
\def\refcite#1{\begin{refsegment}\nocite{#1}\footnotemark[\therefsegment]\end{refsegment}}
\begin{document}
\chapter{First}
\section{One}
These are medical articles.\refcite{newsholme,rivellese,chen,stinson,strandberg}
\section*{References for Chapter~\thechapter}
\bibbysegment[heading=refbib]
\end{document}