Document Classes ⇒ Class for typesetting Manuals or Guides
Class for typesetting Manuals or Guides
I'm looking for a document class to typeset owner's manuals and user guides. I need one for an ECE project I'm working on, so this is for hardware not software. I've looked at the refman class but it seemed rather complicated and I'm still relatively new to LaTeX. Thank you so much.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
-
- Posts: 274
- Joined: Fri Feb 05, 2010 10:15 pm
Re: Class for typesetting Manuals or Guides
Class for typesetting Manuals or Guides
Alternatively, I tried just using the article class which I'm more familiar with than the other ones, but I had a problem with the title page. I was unable to insert spaces between the header and the title with \vspace or \vfill. Here's the code
Code: Select all
\documentclass[12pt,twoside,letter]{article}
\documentclass[12pt,twoside,letter]{article}
\usepackage{fullpage}
\usepackage{indentfirst}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{wrapfig}
\usepackage[scriptsize,bf]{caption}
\usepackage{fancyhdr}
\usepackage{titlesec}
\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\renewcommand{\headrulewidth}{0pt}
\headsep = 0.25 in
\headheight = 0.25 in
\voffset = -0.5 in
\fancyhead[LE,RO]{\thepage}
\fancyhead[CO,CE]{User Guide}
\titleformat*{\section}{\sc \large}
\titleformat{\subsection}[block]{}{\thesubsection}{.5em}{\sc}
\begin{document}
\title{title}
\author{author}
\date{date}
\maketitle
\thispagestyle{empty}
\end{document}