-
-
Notifications
You must be signed in to change notification settings - Fork 90
Intentions
Add a command to the label defining commands list in the settings.
Switch between inline and display math. A shortcut for an action also present in the Convert to other math environment intention.
Insert % @formatter:off
and % @formatter:on
comments around the environment.
See Code formatting.
Currently only enabled on verbatim-like environments.
Add \left
and \right
to brackets, e.g. changing $(\frac 1 2)$
into \left(\frac 1 2 \right)
.
Similar to move selection contents to separate file, except that it is triggered on
a section heading. Any \section{…}
command will trigger this. It turns
\documentclass{article}
\begin{document}
\section{One}
First section.
\end{document}
into the two files
\documentclass{article}
\begin{document}
\section{One}
\input{one}
\end{document}
First section.
Move the selected text to a new file. When triggering this intention, there will be a popup asking for the name and location of the new file. Consider the following file:
\documentclass{article}
\begin{document}
This is a selected sentence.
\end{document}
Selecting the text "This is a selected sentence." will enable the intention. After triggering the inspection and naming
your new file content.tex
we have the following two files
\documentclass{article}
\begin{document}
\input{content}
\end{document}
This is a selected sentence.
This documentation has moved to https://hannah-sten.github.io/TeXiFy-IDEA