私が取り組んでいる問題は 2 つあります。
1 つ目は、ニーズに合わせて 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$
} ?
もう 1 つの問題は日付です。年の後にピリオドは不要で、スペースだけが必要です。(これは 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$
}
2 番目の質問は、より大胆です。PDFLaTeX が、引用ではなく .tex ファイルを入力するかのように、文書本体の引用 (BST ファイルで定義) を呼び出すようにしたいのです。つまり、(たとえば) 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}
bib ファイル:
@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}
bib ファイルではなく BST にフォーマットを含める方法を見つけたいのです\url
が、方法がわかりません。これは私が期待していたほど洗練された解決策ではありませんが、役には立ちます。
コードを整理する方法について何かアドバイスがあれば、ぜひ教えてください。何をすればいいのかよくわかりません...