LoginSignup
13
3

More than 5 years have passed since last update.

Bibtexで小文字になっちゃう問題

Posted at

bibltex で title が小文字になる場合の対処法

@misc{foo,
title = {{Abc BcD}},  # とりあえず{}を二重でかければ大丈夫
}

一括変換

ruby -i -pe '$_.gsub!(/{/, "{{").gsub!(/}/, "}}") if $_.match(/title\s*=\s*/) && $_.scan(/{/).count == 1' ファイル名

エディタの置換でもいい

13
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
3