-
Notifications
You must be signed in to change notification settings - Fork 216
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Add bibliography class #1595
base: master
Are you sure you want to change the base?
Conversation
citeproc/ruby/formats/latex.rb を定義すればいいのかなあ? |
citeproc-ruby が latex に対応したら統一的に扱える |
chapterの末尾に参考文献入れる場合と、本の最後に入れる場合がある |
bibliography.rb の冒頭の |
mecabやunicode/eawだとrequireをbegin/rescueして、あとは無視するかエラーにするかとしていますね。 実装を拝見しますね。 |
とりあえず対応しているHTMLとテキストのフォーマッタにて見ていますが、 citeprocのほうは、
実装については、
|
エスケープはしようとしてるんですけど、最後にエスケープしようとしているので汚くてTODOになってますね。いまはスペースを必要とするみたいです。 # citeproc-ruby/lib/citeproc/ruby/formats/html.rb
def finalize!
# TODO find a better solution for this (strip tags?)
# For now make sure not to double encode entities
# by matching spaces before or after.
output.gsub!(/[&<]\s/, '& ' => '& ', '< ' => '< ')
output.gsub!(/\s>/, ' >')
end |
rebaseしようと思いましたがマージが大変すぎたので、新規にコミットしました。 |
|
…ection of the gemspec.
参考文献のソートが環境によって違う? 困った。 |
TestWinだけ失敗している??? |
No description provided.