3

I have knowledge about 'Kile' more or less. Now I am using 'Texmaker'. But there is a problem in it. In Kile when we write \begin{env} it automatically write \end{env} from the following :

Settings => Configure Kile => LaTeX => Environments => making tick mark on "Automatically complete \begin{env} with \end{env}" we can set it. But in 'Texmaker' automatic environment is not working. How can I do so.

1 Answers1

3

In Texmaker, you can go to User>Customize Completion and set the \begin{...} and \end{...} that you often use. For example, the tikzpicture environment is not set by default. As I often use it, I have added

\begin{tikzpicture}

and

\end{tikzpicture}

Then, when I type \begin{tik , Texmaker gives me \begin{tikzpicture}, I hit tab and I have the \begin{tikzpicture} and \end{tikzpicture} added to my document.

You may find more information at this post: Customize auto-completion in Texmaker

LouisG
  • 421