Created
March 4, 2019 14:32
-
-
Save kmuto/99748f999acb7bfa140ded5672f0c3ea to your computer and use it in GitHub Desktop.
tt, code内の'をtextquotesingleの形にする(textttを書き換えるのはいろいろ大変らしいので…)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ReVIEW | |
module LATEXBuilderOverride | |
def inline_tt(s) | |
super(s).gsub("'", '\textquotesingle ').sub(/(textquotesingle) }$/, '\1}') | |
end | |
def inline_code(s) | |
super(s).gsub("'", '\textquotesingle ').sub(/(textquotesingle) }$/, '\1}') | |
end | |
end | |
class LATEXBuilder | |
prepend LATEXBuilderOverride | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ありがとうございます!
spaceが消えてしまうのと、backquoteも考慮して以下のようにしてみました。