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.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
coachbennett1981
- 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}