4

In WinEdt you can insert text automatically with internal programmable macros. You can do this in Kile or other frontend editor? Can be direct in file.tex via shell or bash on Ubuntu. I need insert:

\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[brazil]{babel}
\usepackage{amssymb,amsfonts,indentfirst}
\usepackage[centertags]{amsmath}
\usepackage[normalem]{ulem}
\usepackage{enumerate,multicol,subfig}
\usepackage{tikz}
  \usetikzlibrary{calc,positioning}
\everymath{\displaystyle}
\graphicspath{{figuras/}}

\begin{document}

\end{document}
Regis Santos
  • 14,463

3 Answers3

6

In Kile's menu there is LaTeX->User Tags. You can easily insert your text there and in Setup->Hot Keys select the Hotkey (by default Ctrl+Shift+1 for first text, Ctrl+Shift+2 for second ...).

Werner
  • 603,163
vazamat
  • 61
5

Since you want to insert what looks like a complete document, you should use a template as described in the online documentation which provides the instructions below. Once you have a template you can select that when you start a new document.

The easiest way to create a new template is to start the wizard, and then add commands in the editor. Once you have your document set up the way you like:

Save your file;

Go to File;

Choose Create Template from Document;

Make any corrections necessary to the template;

Enter a name for your new template;

Click OK to add your template to the menu.

Peter Grill
  • 223,288
0

I use vim to edit my files and it has plugins that would allow what you want to do. Latex-suite is one. I also use a general code snippets plugin called SnipMate.

ravl1084
  • 441
  • and sed commands on linux? – Regis Santos Sep 17 '11 at 02:50
  • sed seems like a very difficult way of editing a Tex file. I have tried Kile, TexMaker and vim, and I like vim the best. And I mostly use the SnipMate plugin for vim because I can define my own snippets of Tex code to insert as I type my documents. – ravl1084 Sep 18 '11 at 21:41