Texmaker and TeXstudio ⇒ New \item in Texmaker
New \item in Texmaker
I wonder if a kind of autocomplete is available with Texmaker and I haven't found of yet.
In Auctex times (but I don't want to go back to Emacs) and in enumerate/itemize envorinments I would hit Alt+Enter to get a new line with \item in the beginning.
Is this behavior also available with Texmaker? I couldn't find it so far..
Tanks,
Michael
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Posts: 2
- Joined: Sun Feb 22, 2015 1:39 am
New \item in Texmaker
Code: Select all
\item
Code: Select all
\documentclass{article}
\begin{document}
\begin{enumerate}
\item one item %%<---- press Enter here and then Ctrl+Shift+I
\item
\end{enumerate}
\end{document}