LaTeX Particular environment LaTeX help

  • Thread starter Thread starter juef
  • Start date Start date
  • Tags Tags
    Latex
AI Thread Summary
The discussion revolves around the user's inquiry about determining if a specific LaTeX environment, such as the math environment, is currently in use during compilation. The user seeks a command like \isInUse{math} to return a boolean value for this purpose. Responses indicate that such a command does not exist in standard LaTeX, and there is confusion about the necessity of this feature. The user clarifies the intention to create a command for displaying norms, such as \newnorm{x+y}, regardless of the environment. Suggestions include using the \ensuremath{} command to define macros that can function in both text and math environments. The conversation concludes with the user expressing satisfaction with the guidance received.
juef
Messages
27
Reaction score
0
Hey all!

I'm trying to learn \LaTeX, and so far I'm doing fine. However, I would like to know if it is possible to be able to find out if a particular environment is in use at a certain point. Basically, I was wondering if something like:

\isInUse{math}

exists in LaTeX. Does anyone know?

Thank you all!
 
Last edited by a moderator:
Physics news on Phys.org
why not:

sin (math)

?
 
Mattara said:
why not:

sin (math)

?
Hmmm... I don't think I understand how this command can help me finding out if the math environment is in use or not...
 
I've never heard of such a thing. I don't really see a need for it. Why would you need something like that?
 
I don't think any of us know what you're asking for, its not clear in the least. Are you talking about so you can tell if an environment is in use in a certain area while you're editing? Or are you talking about during compilation?
 
You're right, perhaps that was not very clear. I want to be able to tell if an environment is in use in a certain area during compilation. Something that may return a boolean, to be used with some other package (I believe there is a if-then package or something like that... right?).
 
juef said:
You're right, perhaps that was not very clear. I want to be able to tell if an environment is in use in a certain area during compilation. Something that may return a boolean, to be used with some other package (I believe there is a if-then package or something like that... right?).

As far as I know, the answer would be no, but there are a lot of custom home-made packages I'm not aware of. What are you trying to do that you would use this for?
 
Call me lazy, but I'd like to make a new command to quickly display a norm, something like \newnorm{x+y} (to display \|x+y\|), whether I'm in the math environment or not.
 
You can run latex "interactively" which will give you the verbose on what classes you're using - possibly also style files?

However, style files are loaded from the preamble (\usepackage{}) - so you should be able to see from your tex file...
 
  • #10
juef said:
Call me lazy, but I'd like to make a new command to quickly display a norm, something like \newnorm{x+y} (to display \|x+y\|), whether I'm in the math environment or not.
use \ensuremath{}

Thats what I use to set up macros to use in text. Something like

\newcommand{\Msun}{\ensuremath{M_\odot}}

Then I can use \Msun anywhere, in text or math environment and its automatically typeset as math.
 
  • #11
franznietzsche said:
use \ensuremath{}

Thats what I use to set up macros to use in text.
:!) Exactly what I needed! Thank you!
 
  • #12
juef said:
:!) Exactly what I needed! Thank you!


Welcome .
 

Similar threads

Replies
11
Views
5K
Replies
2
Views
2K
Replies
6
Views
2K
Replies
5
Views
2K
Replies
11
Views
2K
Replies
5
Views
3K
Replies
5
Views
3K
Back
Top