2017-05-03 8 views
1

の変更「参考文献」の単語、私は参考文献を使用して、次の走り書きの文書があります。Scriblib Autobib書誌

Scribble Document

書誌セクション:

#lang scribble/base 

@(require scriblib/autobib) 

@(define-cite cite citet gen-bib) 

This is a [email protected][the-citation]. 

@(define the-citation 
    (make-bib #:title "Hello" 
      #:author "World" 
      #:date "1337")) 

@gen-bib[] 

ドキュメントの結果は次のようになりますタイトルは「BIBLIOGRAPHY」ですが、実際には「REFERENCES」と題されていますが、これはフリークブルで可能ですか、それともラテックスのハッキングに落とす必要がありますか?

答えて

1

ありがとうございます。それは、Scribble(またはむしろscriblib/autobib)で可能です。

使用したgen-bib関数(define-citeで定義)には、#:sec-titleというオプションがあり、参考文献のタイトルを設定できます。あなたがその行を変更した場合:

@gen-bib[#:sec-title "References"] 

ザ・あなたは「参考文献」セクションではなく、「文献目録」1を除いて、同じ文書を取得します。

Document with References

コードは次のようになります。

#lang scribble/base 

@(require scriblib/autobib) 

@(define-cite cite citet gen-bib) 

This is a [email protected][the-citation]. 

@(define the-citation 
    (make-bib #:title "Hello" 
      #:author "World" 
      #:date "1337")) 

@gen-bib[#:sec-title "References"] 
関連する問題