LaTeX Change \imath Command for LaTeX

  • Thread starter Thread starter coyote_001
  • Start date Start date
  • Tags Tags
    Change
AI Thread Summary
The discussion centers around the use of the \imath command in LaTeX, particularly in the context of a physics document that requires the symbol to be replaced with a dotted version. A user seeks to redefine the \imath command to \dot{\imath} but encounters compilation errors due to LaTeX's handling of the command. Participants suggest using the "find & replace all" feature in text editors to efficiently replace all instances of \imath, rather than redefining the command, which can lead to recursive substitution errors. An alternative suggestion is to create a new command, such as \myi, to represent the dotted version, allowing for a straightforward replacement throughout the document without causing compilation issues. Overall, the focus is on finding efficient solutions to modify the \imath symbol across a large document without manual editing.
coyote_001
Messages
7
Reaction score
0
change imath command (LaTeX)

Hello,
I have a question about the \imath command... :confused:

I am a physics student and I wrote a huge document with many equations. In some equations there is the \imath symbol. When my professor saw this document he told me to change the symbol and use one with a dotted \imath.

So I thought to change the \imath command and use at the beginning


Code:
 \renewcommand{\imath}{\ensuremath{\dot{\imath}}}


but when I compile the document using this command the compiler comes with some errors concerning the \imath symbol.

There are a lot of \imath symbols in my document and changing them one by one it is going to take a lot of time :cry: .

Thank you in advance!
 
Last edited:
Physics news on Phys.org
What text editor are you using? You can just find/replace all and replace \imath with \dot{\imath} (or just i)!
 
What text editor are you using?
The question is about LaTeX...

You can just find/replace all and replace \imath with \dot{\imath} (or just i)!

It will take hours to replace one by one the symbol \imath, because the document is more than 150 pages and more than 400 equations.
 
coyote_001 said:
The question is about LaTeX...

Yes, but my point was that, if you're using a standard text editor, you can use the built in "find & replace all" function to replace all the occurances of \imath. This will have less potential for causing problems than redefining characters.

However, if you wish to do that, then use something like \renewcommand\imath{i}

(Latex doesn't like you dotting \imath, for some reason).
 
The problem is that your redefinition uses the original command, causing LaTeX to substitute it over and over:

\imath

\ensuremath{\dot{\imath}}

\ensuremath{\dot{\ensuremath{\dot{\imath}}}}

\ensuremath{\dot{\ensuremath{\dot{\ensuremath{\dot{\imath}}}}}}

...

I would recommend replacing it everywhere -- 150 pages of replacements should take Notepad 10 seconds or any modern editor < 50 ms. But I would replace \imath with \myi and define
\define{\myi}{\ensuremath{\dot{\imath}}}
(replacing \myi with some appropriate name).
 

Similar threads

Replies
4
Views
7K
Replies
3
Views
2K
Replies
1
Views
2K
Replies
2
Views
2K
Replies
23
Views
3K
Replies
5
Views
3K
Back
Top