LaTeX/Creating Packages
| Getting Started
Common Elements
Mechanics Technical Texts
Special Pages Special Documents Creating Graphics Programming Miscellaneous Help and Recommendations Appendices |
If you define a lot of new environments and commands, the preamble of your document will get quite long. In this situation, it is a good idea to create a LaTeX package or class containing all your command and environment definitions. It can be made dynamic enough to fit to all your future documents.
Classes are .cls files, package are stored in .sty files. They are very similar, the main difference being that you can load only one class per document.
Contents |
makeatletter and makeatother [edit]
By default, LaTeX will allow the use of the '@' characters for control sequences from within package and class files, but not from within an end-user document. This way it is possible to protect commands, i.e. to make them accessible from packages only.
However it is possible to override this security with the duo \makeatletter and \makeatother. These commands only make sense in a regular document, they are not needed in package or class files.
|
\documentclass{...} |
Creating your own package [edit]
Your package can be made available in your document just like any other package: using the \usepackage command. Writing a package basically consists of copying the contents of your document preamble into a separate file with a name ending in .sty.
Let's write a first custom.sty file as example:
|
\NeedsTeXFormat{LaTeX2e}[1994/06/01] |
- \NeedsTeXFormat{...} specifies which version of TeX or LaTeX is required at least to run your package. The optional date may be used to specify the version more precisely.
- \ProvidesPackage has to have the same name of the file without the extension. It tells LaTeX the name of the package and will allow it to issue a sensible error message when you try to include a package twice. The date is important since it can be used by other package to specify the minimum version requirement they need to use your package.
- Next you may write some TeX or LaTeX code like loading package, but write only the bare minimum needed for the package options set below.
- \RequirePackage is equivalent to \usepackage.
- \DeclareOptions are end-user parameters. Each option is declared by one such command.
- \ExecuteOptions{...} tells which are the default.
- \ProcessOptions\relax terminates the option processing.
- Write whatever you want in it using all the LaTeX commands you know. Normally you should define new commands or import other packages.
- \endinput: this must be the last command.
Once your package is ready, we can use it in any document. Import your new package with the known command \usepackage{mypack}. The file custom.sty and the LaTeX source you are compiling must be in the same directory.
|
\documentclass{...} |
For a more convenient use, it is possible to place the package within $TEXMFHOME (which is ~/texmf by default) accoding to the TeX Directory Structure (TDS). That would be
$TEXMFHOME/tex/latex/custom/custom.sty
On Windows '~' is often C:\Users\username.
You may have to run texhash (or equivalent) to make your TeX distribution index the new file, thus making it available for use for any document. It will allow you to use your package as detailed above, but without it needing to be in the same directory as your document.
Creating your own class [edit]
It is also possible to create your own class file. The process is similar to the creation of your own package, you can call your own style file in the preamble of any document by the command:
|
\documentclass{myclass} |
The name of the class file is then myclass.cls. Let's write a simple example:
|
\NeedsTeXFormat{LaTeX2e} |
- \ProvidesClass is the counterpart of \ProvidesPackage.
- \PassOptionsToClass and \PassOptionsToPackage are used to automatically invoke the corresponding options when the class or the package is loaded.
- \DeclareOption*: the starred version lets you handle non-implemented options.
- \ClassWarning will show the corresponding message in the TeX compiler output.
- \LoadClass specifies the uniq parent class, if any.
Hooks [edit]
There are also hooks for classes and packages.
- \AtEndOfPackage
- \AtEndOfClass
They behave as the document hooks. See LaTeX Hooks.