Graphics, Figures & Tables ⇒ Box around tabbed text
Box around tabbed text
I'm new to this forum as well as to TeX.
I've succeeded in learning the basics (It took me several days) and I begin to like Tex very much.
Nevertheless, I've spent hour after hour in trying to draw a box around the output of the following output of this TeX document.
\documentclass[12pt]{article}
\pagestyle{empty}
\begin{document}
\begin{tabbing}
Onderwerp: \hspace{1em} \= \textbf{Terugbetaling Electriciteitskosten.}\\
Factuur:\> \textbf{5801635489}\\
Klantnummer:\> \textbf{14-56195-31}\\
Datum.:\> \textbf{20.10.2009}\\
Bijlage(n):\> \textbf{1}\\
\end{tabbing}
\end{document}
I anyone could help me with this, I would be most grateful?
ps. forgive my mistakes in Englsh: i'm not a native English speaker.
gabriël
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Box around tabbed text
Code: Select all
\documentclass[12pt]{article}
\usepackage{array}
\pagestyle{empty}
\begin{document}
\begin{tabular}{|l>{\bfseries}l|}\hline
Onderwerp: & Terugbetaling Electriciteitskosten. \\
Factuur: & 5801635489 \\
Klantnummer: & 14-56195-31 \\
Datum: & 20.10.2009 \\
Bijlage(n): & 1 \\ \hline
\end{tabular}
\end{document}
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Box around tabbed text
This is exactely what I was looking for.
much appreciated, gabriël