Change \imath Command for LaTeX

  • Context: LaTeX 
  • Thread starter Thread starter coyote_001
  • Start date Start date
  • Tags Tags
    Change
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
5 replies · 4K views
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?
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).