Page LayoutReview Page Alternatives

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
Michael_590
Posts: 51
Joined: Wed Aug 06, 2014 6:59 pm

Review Page Alternatives

Post by Michael_590 »

How can I put a nice page in my document that somehow lists the people who have signed off on it.

I.E.: A signature next to a person's name indicates they have read it. An "X" next to the name indicates they have accepted it as the final document. A checkmark indicates that they have accepted it, but it could use more work. Alternately, there could be two boxes next to each name to represent the "X" and checkmark.

Thanks,

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Review Page Alternatives

Post by Johannes_B »

What you are describing sound just like a regular table (i.e. tabular). If you meant something different, please give a verbose description along with a minimal working example.

Code: Select all

\documentclass{article}
\begin{document}
	\renewcommand{\arraystretch}{2}
\begin{tabular}{cccc}
	name & checked & accepted & signature\\
	banana\\
	captain beefheart\\
	the liver guy\\
	the indian cook\\
\end{tabular}
\end{document}
I doubled the \arraystretch as a hand written signature usually needs a bit more space.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply