What are some good tutorials on writing custom styles (classes) that clearly explain commands used and some of the features that TeX has to offer in the way of styles?
7 Answers
- Minutes in Less Than Hours is a place to start.
- 4,476
-
7Thank you, that's an excellent resource, with actual code included. Much appreciated. – EricR Aug 03 '10 at 21:03
-
2
-
-
1
-
While I cannot point to a pre-built 'how to' guide, I can at least try to provide some pointers here. The first point to remember is that LaTeX2e is rather weak at providing documented 'hooks' for customisation in the kernel. As a result, a lot has to be done by loading support packages.
At the most basic, a class is a collection of instructions to alter the standard formatting. Many simple classes therefore start out as little more than a customised preamble spun out into a separate file. Unless you are very experienced, it is likely that the best place to start a custom class is by loading one of the standard ones, for example
\LoadClass{article}
It's then possible to load a selection of packages (using \RequirePackage rather than \usepackage), to allow modification. Obvious examples here would be geometry, float, caption, various font packages, etc. Quite a lot can be achieved by simply bundling up a group of support packages and appropriate options into one file.
The next thing to consider is providing custom commands. These might be as simply as something like
\newcommand\subject[1]{%
\begin{center}
\bfseries
#1%
\end{center}
}
which I do in a slightly-customised letter class for my own use. Of course, what makes sense here will depend on what you want. Custom commands might of course depend on packages that you know will be loaded as they are included in the list for the class.
The next thing that people tend to do in custom classes is simple redefinition of LaTeX internals. The most obvious one is \@maketitle, which you may well want to modify. Remember that class files set @ as a letter, so \makeatletter is not needed. At this stage, modifications tend to be made by starting with the existing code and altering it. The LaTeX2e kernel classes (article.cls, report.cls, etc.) and the kernel itself (latex.ltx) are the first port of call for code to modify. Taking the \@maketitle example, the version from article.cls reads
\def\@maketitle{%
\newpage
\null
\vskip 2em%
\begin{center}%
\let \footnote \thanks
{\LARGE \@title \par}%
\vskip 1.5em%
{\large
\lineskip .5em%
\begin{tabular}[t]{c}%
\@author
\end{tabular}\par}%
\vskip 1em%
{\large \@date}%
\end{center}%
\par
\vskip 1.5em}
So obvious changes are to alter the spacing or fonts.
Beyond that, you are in to serious (La)TeX programming, where I'd suggest writing some of the code as a package and requiring it from the class might be better. This is a complex subject, and I think is not the way to start out learning how to write class files!
- 259,911
- 34
- 706
- 1,036
The LaTeX Companion[1] has a chapter on writing package/class files.
EDIT: The table of content is available online. The relevant chapter is Appendix A and in particular Section A.4. The style of the chapter is pretty much the same as the style of the rest of the book (Chapter 3 is available online) with all needed commands explained in some details and with lots of examples (and counterexamples).
[1] F. Mittelbach and M. Goossens, The LaTeX Companion. Addison-Wesley 2004
I wrote an article on the LaTeX Community Forum on how to write a LaTeX class file. It's specifically about creating form-style documents, but there is some general class-writing stuff in there, if that's of any use.
Edit: there's also Writing a Class File for a Form which is developed from my LC article.
- 41,153
-
1That's excellent! Very well documented and easy to read. Thank you for sharing – EricR Jan 28 '14 at 15:15
-
@NicolaTalbot I've tried to reach your article, but without success, it is currently a dead link. If it is still around, an update would be welcome. – gusbrs Feb 16 '19 at 12:37
-
@gusbrs It might be worth contacting the LaTeX Community Forum to find out where the LC articles are now located. – Nicola Talbot Mar 02 '19 at 11:39
-
I had to disable that article software since it got hacked and I had to avoid that my provider blocks the whole site. I will see what I can do to bring them back online. I answered @gusbrs on latex.org. – Stefan Kottwitz Mar 02 '19 at 22:51
Flynn (2006) and clsguide?
- 20,795
- 13
- 74
- 91
-
Those are both good links about the elements of a new class, and they should certainly be on-hand when writing a new class or following a tutorial, but they don't provide much for someone who's never made one. They read too much like an API rather than a how-to. – Kevin Vermeer Jul 31 '10 at 15:31
-
I'm afraid that this is probably the best you will get. The issues of programming LaTeX are well-known, and make it very difficult to actually write a 'how to' document. This is one of the reasons for trying to provide a proper programming system within the LaTeX3 work. – Joseph Wright Aug 01 '10 at 07:38
-
These are more like the Java API, when we're looking for how-to tutorials. – Kevin Vermeer Aug 01 '10 at 20:38
If it's the syntax of writing macros that you're looking for I'd definitely recommend Tex By Topic
- 1,753
-
Thank you, but this is more slanted at online tutorials and writing .cls/.sty files. – EricR Aug 03 '10 at 21:04
-
If you want to do some tweaking or write a cls yourself, you will probably need some experience with low-level TeX as well. – Juan A. Navarro Aug 07 '10 at 10:54
The tutorial that helped me the most was Scott Pakins dtxTut. If you are a learn by example type then consider browsing the dtxGallery.
One should also mention the makedtx and sty2dtx packages, which assist with package creation, though I have not used these myself.
Personally I have always found it hard to find information on package writing, presumably my google fu was not up to scratch. This information does exist though. TeX.SE provides a rather complete list which may help you further.
One should also consider reading existing package sources for examples on macro writing for this there is texdoc PACKAGE. Simply punch this into the command line to see relevant documentation e.g. texdoc --view pgfmanual for the TikZ manual, texdoc glossaries for the glossaries package or better yet texdoc -l glossaries.
I do not know whether or not a best practices document exists for package writers. Something that say considers LaTeX3, ConTeXt and related.
-
1
texdoc glossaries-codeshould get you the documented code forglossaries(texdoc glossariesought to show the user guide). – Nicola Talbot Apr 28 '16 at 08:04 -
1I was actually trying to hint that it opens a webpage providing complete listing of the glossaries documentation (User guide, annotated code and examples). Although that may just be on my system (MikTeX on Windows). As a side note : Thank you for the glossaries package it is really useful. Personally I have dtx'd my glossaries if anyone is interested I can post the template. – Carel Apr 28 '16 at 12:56
-
1Okay, I need to use the
-lswitch to get the listing (TeXLive on Linux) so it seems like it's different for me. You're welcome :-) (Incidentallyglossaries.dtxwas created usingmakedtx.) – Nicola Talbot Apr 28 '16 at 13:40
@reemrevnivek, wonderful, thank you!
– EricR Jul 30 '10 at 17:03