Text Formatting ⇒ CSS border-right equivalent
CSS border-right equivalent
I would like to annotate text in the following manner:
I'm aware of \underline and \overline, but I need to make a border on the right side, like in the attached image, so it looks like an unbroken chain of "__|¯¯|__|¯¯|__".
Thank you.
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
CSS border-right equivalent
welcome to the board!
A quick and easy way would be to define a

For example:
Code: Select all
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{matrix}
\begin{document}
\begin{tikzpicture}
\matrix (m) [matrix of nodes]{
A & B & C & D & E\\};
\draw (m-1-1.north west) -- (m-1-1.north east) -- (m-1-1.south east)
-- (m-1-2.south west) -- (m-1-2.south east) -- (m-1-2.north east)
-- (m-1-5.north east);
\end{tikzpicture}
\end{document}