Code: Select all
\setlength\tablinesep{10pt}
Code: Select all
\documentclass{article}
\usepackage{booktabs,longtable}
\begin{document}
\begin{longtable}{l p{0.35\textwidth} @{\hspace{2em}} p{0.375\textwidth}}
% first page's table head
\toprule
ISBN & Title & Description \\
\midrule
\endfirsthead
9780201362992 & The \LaTeX\ Companion & A very helpful book about \LaTeX\ written by the developers of many widely-used packages. \\
9780201134476 & Computers and Typesetting, Vol. A: The \TeX book & Written by The Man Himself (Don K.). \\
9780471309321 & Classical Electrodynamics (3rd. Ed.) & One of these is not like the others. \\
\bottomrule
\end{longtable}
\end{document}
It occurs to me that I could do something like
Code: Select all
\newcommand\eor{\\ \addlinespace[10pt]}
By the way, is there a way to write code inline on this board, or am I better off just leaving small code fragments in plain text?