Hi I'm really new to LaTeX.
I've started learning yesterday and my plan is to recreate our medical reports from a design PDF to dynamic LaTeX PDF.
My problem is to create these semi-vertical lines between the column 1 and 2 (see below)
What I mean with semi-vertical:
1 2 3
A | B | C
D | E | F
The vertical lines does not touch each other, and the header does not have lines.
I've also wanted to get a more rounded edges from what I have and my line in between isn't where it was supposed to be. I also can't manage to add color to them.
This is what I've achieved up to now:
\documentclass[12pt]{article}
\usepackage{rotating}
\usepackage[utf8]{inputenc}
\usepackage[default]{lato}
\usepackage[T1]{fontenc}
\usepackage{pbox}
\usepackage{booktabs}
\usepackage{tcolorbox}
\usepackage{lipsum}
\tcbuselibrary{fitting}
\definecolor{airforceblue}{rgb}{0.36, 0.54, 0.66}
\begin{document}
\begin{center}
\renewcommand{\arraystretch}{0.2}
\begin{tabular}{c@{\hskip 0mm}c@{\hskip 0mm}c@{\hskip 0mm}c}
\\
\begin{tcolorbox}[colframe=white,colback=airforceblue!10!white, sharp corners,
rounded corners=north, height=15mm, width=30mm, valign=center, halign=center] GENE \end{tcolorbox} &
\begin{tcolorbox}[colframe=white,colback=airforceblue!10!white, sharp corners,
rounded corners=north, height=15mm, width=30mm, valign=center, halign=center] REGIÃO GÊNICA \end{tcolorbox} &
\begin{tcolorbox}[colframe=white,colback=airforceblue!10!white, sharp corners,
rounded corners=north, height=15mm, width=30mm, valign=center, halign=center] HÁ \\ MUTAÇÃO? \end{tcolorbox} &
\begin{tcolorbox}[colframe=white,colback=airforceblue!10!white, sharp corners,
rounded corners=north, height=15mm, width=30mm, valign=center, halign=center] NOTAÇÃO \end{tcolorbox} &
\\
\begin{tcolorbox}[colframe=white,colback=white, height=6mm, width=30mm,
valign=center, halign=center] KRAS \end{tcolorbox} &
\begin{tcolorbox}[colframe=white,colback=white, height=6mm, width=30mm,
valign=center, halign=center] Exons 2 e 3 \end{tcolorbox} &
\begin{tcolorbox}[colframe=white,colback=white, height=6mm, width=30mm,
valign=center, halign=center] Não \end{tcolorbox} &
\begin{tcolorbox}[colframe=white,colback=white, height=6mm, width=30mm,
valign=center, halign=center] - \end{tcolorbox}
\\ \hline
\begin{tcolorbox}[colframe=white,colback=white, height=6mm, width=30mm,
valign=center, halign=center] NRAS \end{tcolorbox} &
\begin{tcolorbox}[colframe=white,colback=white, height=6mm, width=30mm,
valign=center, halign=center] Exons 2 e 3 \end{tcolorbox} &
\begin{tcolorbox}[colframe=white,colback=white,height=6mm, width=30mm,
valign=center, halign=center] Sim \end{tcolorbox} &
\begin{tcolorbox}[colframe=white,colback=white,height=6mm, width=30mm,
valign=center, halign=center] c.181C>A \\ p.Q61K \end{tcolorbox}
\\
\end{tabular}
\end{center}
\end{document}
Just to explain my code. I need the boxes to be of a delimited size. They can not mutate as the text is typed. I will need to manage each box size individually. Some of them won't have the same width size.
I know my coding is not good. I am a beginner in R and have no experience with LaTeX at all. I think that for one day learning I did a decent job
I've search the forum for a long time looking for vertical semi lines. Please let me know if you can help me.



semi-verticalline? And where is the line in between supposed to be? (And which line?) – cfr Apr 01 '16 at 01:48booktabswould probably actually give you thesemi-verticallines you want. (Usually, people consider lines like this a problem to be solved.)booktabsdoesn't work with vertical lines because, basically, they end up 'gappy'. But if gappy is your thing, then it might work OK. – cfr Apr 01 '16 at 01:58tcolorboxes, of course. But that seems like more work. – cfr Apr 01 '16 at 02:00sharp cornersif you want rounded ones. – cfr Apr 01 '16 at 02:04sharp cornershowever it also removes therounded corners=north. I want a more rounded curve at the top and still keep the straight line in the bottom... Is there a way I can increase the arc? without having to create an object? – Rodrigo de Alexandre Apr 01 '16 at 02:14arc=9mmor whatever. At least, that's what I've used for a single rounded corner. – cfr Apr 01 '16 at 02:47