감동, 마음이 움직이는 것
[latex] table에 dashed line추가하기 (vertical and horizontal lines) 본문
Tips (Utility, Computer Language, and etc.)
[latex] table에 dashed line추가하기 (vertical and horizontal lines)
Struggler J. 2020. 7. 16. 17:47먼저 horizontal은 \usepackage{arydshln} package를 사용하면 쉽게 사용할 수 있다.
https://tex.stackexchange.com/questions/20140/can-a-table-include-a-horizontal-dashed-line
\usepackage{arydshln}
\begin{tabular}{c:c} <= colon을 이용하면 전체적으로 한 줄 vertical dashed line을 넣을 수 있다.
a & a\\ \hdashline <=이건 dashedline을 한 줄 넣는거임
a & a\\ \cdashline{1-2} <= 이건 정해진 col에만 넣는거임
\end{tabular}
만약 특정 영역에만 vertical dashedline을 넣고 싶다면 \multicolumn{1}{c:}을 사용하면 된다.
\usepackage{arydshln}
\begin{tabular}{cc}
\multicolumn{1}{:c}{a} & a\\ \hdashline <=첫 성분앞에만 dashedline이 생긴다. 뒤에 넣고 싶으면 뒤에 :를 c뒤에 넣으면 된다.
a & a\\ \cdashline{1-2}
\end{tabular}
https://tex.stackexchange.com/questions/291667/dash-line-between-rows-in-a-table
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[gnuplot] fitting script ver2 (0) | 2021.04.14 |
---|---|
[gnuplot] array (0) | 2021.04.14 |
[gnuplot] gif 만들기 (0) | 2020.07.10 |
[python] making a directed network using networkx (0) | 2020.06.21 |
[python] sites for plot examples (0) | 2020.06.21 |