Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ドキュメント内で\cite{something}のすべてのインスタンスを[@something]に変更するにはどうすればよいですか?
私はそれをします:
:%s#\v\\cite\{([^}]+)\}#[@\1]#g
\cite{something}同じ行に複数ある場合は、最後の「g」フラグが重要になることに注意してください。
\cite{something}
すべてのインスタンスを置き換えたいので、「g」で置き換えます。
この正規表現で検索を実行し、次のよう\\cite\{([^\}]+)\} に置き換えます。[@\1]
\\cite\{([^\}]+)\}
[@\1]