Graphics, Figures & Tables ⇒ Colored horizontal Lines in Table
Colored horizontal Lines in Table
I am a beginner with LaTeX and have a doubt. I am writing code for creating a table. The question is I want to have the horizontal lines of the table in blue color. The lines that separate the rows (\hline). How can I make it in some color?
I tried \color{blue}{\hline} but it's not working. Any help is appreciated.
Thanks,
luffy
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: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Colored horizontal Lines in Table
welcome to the board!
You could use the colortbl package:
Code: Select all
\usepackage{colortbl}
\arrayrulecolor{blue}
Re: Colored horizontal Lines in Table
