修改 BST 样式并调用引用

修改 BST 样式并调用引用

我正在努力解决两个问题。

第一步是编辑 BST 文件以满足我的需求。我想要像这样的东西: 在此处输入图片描述

\par我能够通过插入原始 bib 条目(例如)来获取注释和 URL 之间的换行符,note={\par blah blah blah}但肯定有更简单、更优雅的方法吗?另外,我希望在文章标题后有一个换行符。我对以下内容进行了各种修改:

FUNCTION {article}
{ output.bibitem
    format.title "title" output.check
  new.block
  format.authors "author" output.check
  new.block
  crossref missing$
    {
      journal
      "journal" bibinfo.check
      emphasize
      "journal" output.check
      format.date "year" output.check
      date.block
      format.vol.num.pages output
    }
    { format.article.crossref output.nonnull
      format.pages output
    }
  if$
  format.issn output
  new.block
  format.url output 
  new.block
  format.note output
  fin.entry
}

没有任何成功。我在哪里或如何修改上述内容以插入换行符。或者应该编辑:

FUNCTION {format.title}
{ title
  duplicate$ empty$ 'skip$
    { "t" change.case$ }
  if$
  "title" bibinfo.check
  duplicate$ empty$ 'skip$
    {
      bolden
    }
  if$
}

FUNCTION {format.note}
{
 note empty$
    {  "" }
    { note #1 #1 substring$
      duplicate$ "{" =
        'skip$
        { output.state mid.sentence =
          { "l" }
          { "u" }
       if$
        change.case$
        }
      if$
      note #2 global.max$ substring$ * "note" bibinfo.check
    }
  if$
} ?

另一个问题是日期。我不想在年份后面加句号,我只想要一个空格。(我发誓这就是我指示 makebst 的……)过去,我曾编辑过日期字段,用句号替换逗号,但在日期函数中我看不到任何关于句号和逗号的内容:

FUNCTION {format.date}
{
  month "month" bibinfo.check
  duplicate$ empty$
  year  "year"  bibinfo.check duplicate$ empty$
    { swap$ 'skip$
        { "there's a month but no year in " cite$ * warning$ }
      if$
      *
    }
    { swap$ 'skip$
        {
          swap$
          " " * swap$
        }
      if$
      *
    }
  if$
  duplicate$ empty$
    'skip$
    {
      before.all 'output.state :=
    " " swap$ *
    }
  if$
}

第二个问题更大胆。我希望 PDFLaTeX 在文档正文中调用引文(如 BST 文件中所定义),就好像输入的是 .tex 文件而不是引文一样。因此,它将加载我定义的整个条目,而不是显示(例如)Akbarzadeh et al 2016 的文本。我不想要看起来像参考书目的东西,而更像这样:

在此处输入图片描述

有什么想法可以实现这一点吗?我希望某个地方有一个包可以做到这一点。

我不确定需要什么类型的最小示例...让我知道您认为需要什么来帮助解决这个问题。

谢谢

答案1

我无法弄清楚 BibLaTeX(它似乎无法在 TeXWorks 中运行,或者是软件包有问题或其他问题......)但我在这里找到了解决方案:https://tug.org/pracjourn/2008-1/calleecharan/

最小示例:Tex 文件

\documentclass[a4paper]{article}
\usepackage[twoside,inner=25.4mm,tmargin=25.4mm,nohead,bmargin=25.4mm,textwidth=159.2mm]{geometry}
\usepackage[latin1]{inputenc}
\usepackage{lastpage}
\usepackage{url}

\begin{document}
\nocite{begcla1}

\nocite{art2}

\nocite{endcla1}

\nocite{art1}

\nocite{endcla2}

%\nocite{Elem2}

\bibliographystyle{datastyle}
\bibliography{dataset}

\end{document}

围兜文件:

@CREATESECTION{begcla1,
heading={Section 1} 
}

@style1{art1,
title = { My dog eats cats},
author = {Katz, JP},
journal = { Cat cuisine},
volume = {1},
pages = {3--5},
year = {2016},
url = {\url{http://www.cateaters.com}},
note = {I found this article delicious.}
}

@ENDSECTION{endcla1
}

@CREATESECTION{begcla2,
heading={Section 2} 
}

@style1{art2,
title = { My cat eats dogs},
author = {Dags, JP},
journal = { Dog cuisine},
volume = {1},
pages = {3--5},
year = {2016},
url = {\url{http://www.dogeaters.com}},
note = {It made me gag.}
}

@ENDSECTION{endcla2
}

bst 文件:

Entry
{
title
heading
author
journal
volume
pages
year
url
note
} {} {}

FUNCTION{print}
{
    cite$ pop$
}

FUNCTION {bolden}
{ duplicate$ empty$
    { pop$ "" }
    { "{\fontfamily{lmss}\bfseries\selectfont\large " swap$ * "}" * }
  if$
}

FUNCTION {format.heading}
{ heading bolden
}

FUNCTION{createsection}
{
"\vspace{0.5cm}" write$
newline$ newline$ write$
newline$ newline$ write$
 write$ newline$ print format.heading write$ newline$  write$
newline$ newline$ write$
newline$ newline$ write$
"\vspace{0.25cm}" write$
}

FUNCTION{Style1}{
"{\fontfamily{lmss}\bfseries\selectfont " write$ print title write$ "}"     write$%
print write$ ". " write$ newline$ newline$
print write$ author write$%
print write$ ". " write$%
print "{\em " write$ print journal write$ "}" write$%
print write$ ", " write$%
print volume  write$%
print write$ ":" write$%
print pages  write$%
print write$ ", " write$%
print write$ year write$%
print write$ "." write$ newline$ newline$
print write$ url  write$ newline$ newline$
print write$ ``{\normalsize `` write$ print note write$ ``}'' write$     newline$ newline$
}

FUNCTION{fin}
{newline$
}

Read

ITERATE{call.type$}

EXECUTE{fin}

我想找到一种方法将\url格式包含在 BST 而不是 bib 文件中,但还没想出如何做。这不是我希望的那么优雅的解决方案,但它可以完成工作。

如果有人对如何整理代码有任何建议,我将不胜感激。我真的不知道我在做什么......

相关内容