0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

論文用: latexで()の前にスペースを入れる正規表現

Posted at

概要

卒論執筆時に()の前にはスペース( \, )を入れないといけない言われたため、それを自動でしてくれる正規表現をChatGPTに作ってもらいました。使っていてかなり便利なので残しておきます。
overwolfで動作確認済みです

要件

  • ( を \,( に変換する。
  • すでに \,( なら変換しない。
  • 数式の挿入である, \( には反応しない。

コード

検索

(?:(?<=^)|(?<=[^\\,\s]))\s*\(

置換

\\,(

使い方

image.png

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?