여기에서 온다:이전 스레드, 한 가지 질문에 집중하여 MVE를 제공합니다. 내 문제는 외부(내부 및 공개 버전)에서 트리거된 두 개의 서로 다른 빌드를 구별하기 위해 매크로를 통해 동일한 색상으로 longtable의 행에 색상을 지정하고 싶습니다. rowcolor를 통해 이 작업을 수행하면 첫 번째 행만 색상이 지정되고 나머지 행은 기본 배경색으로 유지됩니다. 모든 행에서 명령을 사용할 수 있지만 명령은 하나만 사용하고 싶습니다.
감사해요.
MWE는 다음과 같습니다.
\documentclass[a4paper,11pt,index=totoc]{scrreprt}
% --- out of style file
% \def\isRelease{1}
\usepackage{colortbl}
\usepackage{array}
\usepackage{longtable}
\usepackage{booktabs}
\usepackage[justification=centering,font=scriptsize,labelfont=bf,position=bottom]{caption}
\usepackage{xifthen}
\usepackage{color}
\newcommand{\headcol}{\rowcolor{black}}
\newcommand{\internCol}{\rowcolor{yellow}}
\newcommand{\startLongTable}%
{%
\renewcommand{\arraystretch}{1.2}%
\setlength\LTleft{0pt plus \textwidth}%
\setlength\LTright{0pt plus \textwidth}%
}
\newcommand{\tableRowEnd}%
{%
\\ \midrule%
}
\newcommand{\lastTableRowEnd}%
{%
\\ \addlinespace%
}
\newcommand{\preTableHeaderLine}{\arrayrulecolor{black}\specialrule{\heavyrulewidth}{\abovetopsep}{0pt}%
\arrayrulecolor{black}\specialrule{\belowrulesep}{0pt}{0pt}%
\arrayrulecolor{black}}
\newcommand{\postTableHeaderLine}{\arrayrulecolor{black}\specialrule{\aboverulesep}{0pt}{0pt}%
\arrayrulecolor{black}\specialrule{\lightrulewidth}{0pt}{0pt}%
\arrayrulecolor{black}}
\newcommand{\tableIntern}[2]%
{%
\ifdefined\isRelease%
#1%
\else%
\tableRowEnd%
\internCol#2%
\fi%
}
% --- --------------------------
\begin{document}
\startLongTable
\begin{longtable}{ >{\centering}p{0.1\textwidth-2\tabcolsep}
p{0.2\textwidth-2\tabcolsep}
p{0.4\textwidth-2\tabcolsep}
>{\centering}p{0.2\textwidth-2\tabcolsep}
>{\centering\arraybackslash}p{0.1\textwidth-2\tabcolsep}
}
\preTableHeaderLine
\headcol \color{white} Field & \color{white} Name & \color{white} Description & \color{white} Format & \color{white} \# \\
\postTableHeaderLine \addlinespace
\endhead
1 & Field1 & Name1 & A & 2 \tableRowEnd
2 & Field2 & Name2 & B & 3
\tableIntern{\lastTableRowEnd}
{
3 & Field3 & Name3 & C & 3 \tableRowEnd
4 & Field4 & Name4 & C & 4 \lastTableRowEnd
}
\bottomrule
\caption{stackoverflow MWE}
\label{table:stackoverflowMWE}
\end{longtable}
\end{document}
답변1
대신 xcolor
옵션으로 로드할 수 있습니다 . 짝수 행과 홀수 행에 대해 동일한 색상을 선택하면 원하는 작업을 수행하는 명령 으로 후자를 확장합니다 .[table]
colortbl
\rowcolors{no of 1st coloured row}{odd rows colour}{even rows colour}
한 가지 코멘트를 드리자면, 컬러 행 사이의 수평선이 그다지 좋아 보이지는 않는 것 같습니다. 로 대체할 수도 있습니다 \addlinespace
. 또한 흰색 스트립이 없는 가로 룰을 원하는 경우 패키지에 일부 (색상) 패딩을 설정하고 추가 \above/belowrulesep
할 수 있습니다 . 마지막 요점: 제 생각에는 검은색 배경에 흰색 기둥 머리글을 굵은 글꼴로 사용하면 더 읽기 쉽습니다.0pt
cellspace
\documentclass[a4paper,11pt,index=totoc]{scrreprt}
% --- out of style file
% \def\isRelease{1}
\usepackage[table]{xcolor}
\usepackage{array}
\usepackage{longtable}
\usepackage{booktabs}
\usepackage[justification=centering,font=scriptsize,labelfont=bf,position=bottom]{caption}
\usepackage{xifthen}
\newcommand{\headcol}{\rowcolor{black}}
\newcommand{\internCol}{\rowcolor{yellow}}
\newcommand{\startLongTable}%
{%
\renewcommand{\arraystretch}{1.2}%
\setlength\LTleft{0pt plus \textwidth}%
\setlength\LTright{0pt plus \textwidth}%
}
\newcommand{\tableRowEnd}%
{%
\\ \midrule%
}
\newcommand{\lastTableRowEnd}%
{%
\\ \addlinespace%
}
\newcommand{\preTableHeaderLine}{\arrayrulecolor{black}\specialrule{\heavyrulewidth}{\abovetopsep}{0pt}%
\arrayrulecolor{black}\specialrule{\belowrulesep}{0pt}{0pt}%
\arrayrulecolor{black}}
\newcommand{\postTableHeaderLine}{\arrayrulecolor{black}\specialrule{\aboverulesep}{0pt}{0pt}%
\arrayrulecolor{black}\specialrule{\lightrulewidth}{0pt}{0pt}%
\arrayrulecolor{black}}
\newcommand{\tableIntern}[2]%
{%
\ifdefined\isRelease%
#1%
\else%
\tableRowEnd%
\internCol#2%
\fi%
}
% --- --------------------------
\begin{document}
\startLongTable\rowcolors{2}{yellow}{yellow}
\begin{longtable}{ >{\centering}p{0.1\textwidth-2\tabcolsep}
p{0.2\textwidth-2\tabcolsep}
p{0.4\textwidth-2\tabcolsep}
>{\centering}p{0.2\textwidth-2\tabcolsep}
>{\centering\arraybackslash}p{0.1\textwidth-2\tabcolsep}
}
\preTableHeaderLine
\headcol \color{white}\bfseries Field & \color{white}\bfseries Name & \color{white}\bfseries Description & \color{white}\bfseries Format & \color{white}\bfseries \# \\
\postTableHeaderLine \addlinespace
\endhead
1 & Field1 & Name1 & A & 2 \tableRowEnd
2 & Field2 & Name2 & B & 3
\tableIntern{\lastTableRowEnd}
{
3 & Field3 & Name3 & C & 3 \tableRowEnd
4 & Field4 & Name4 & C & 4 \lastTableRowEnd
}
\hiderowcolors
\bottomrule
\caption{stackoverflow MWE}
\label{table:stackoverflowMWE}
\end{longtable}
\end{document}
편집하다:
행 색상을 활성화 및 비활성화하기 위해 \showRowcolors
및 스위치를 사용하는 또 다른 코드는 다음과 같습니다 .\hideRowcolors
\documentclass[a4paper,11pt,index=totoc]{scrreprt}
% --- out of style file
% \def\isRelease{1}
\usepackage[table]{xcolor}
\usepackage{array}
\usepackage{longtable}
\usepackage{booktabs}
\usepackage[justification=centering,font=scriptsize,labelfont=bf,position=bottom]{caption}
\usepackage{xifthen}
\newcommand{\headcol}{\rowcolor{black}}
\newcommand{\internCol}{\rowcolor{yellow}}
\newcommand{\startLongTable}%
{%
\renewcommand{\arraystretch}{1.2}%
\setlength\LTleft{0pt plus \textwidth}%
\setlength\LTright{0pt plus \textwidth}%
}
\newcommand{\tableRowEnd}%
{%
\\ \midrule%
}
\newcommand{\lastTableRowEnd}%
{%
\\ \addlinespace%
}
\newcommand{\preTableHeaderLine}{\arrayrulecolor{black}\specialrule{\heavyrulewidth}{\abovetopsep}{0pt}%
\specialrule{\belowrulesep}{0pt}{0pt}%
}
\newcommand{\postTableHeaderLine}{\arrayrulecolor{black}\specialrule{\aboverulesep}{0pt}{0pt}%
\specialrule{\lightrulewidth}{0pt}{0pt}%
}
\newcommand{\tableIntern}[2]%
{%
\ifdefined\isRelease%
#1%
\else%
\tableRowEnd%
\internCol#2%
\fi%
}
% --- --------------------------
\begin{document}
\startLongTable\rowcolors{2}{yellow}{yellow}
\begin{longtable}{ >{\centering}p{0.1\textwidth-2\tabcolsep}
p{0.2\textwidth-2\tabcolsep}
p{0.4\textwidth-2\tabcolsep}
>{\centering}p{0.2\textwidth-2\tabcolsep}
>{\centering\arraybackslash}p{0.1\textwidth-2\tabcolsep}
}
\preTableHeaderLine
\headcol \color{white}\bfseries Field & \color{white}\bfseries Name & \color{white}\bfseries Description & \color{white}\bfseries Format & \color{white}\bfseries \# \\
\postTableHeaderLine% \addlinespace
\endhead
\hiderowcolors 1 & Field1 & Name1 & A & 2 \tableRowEnd
2 & Field2 & Name2 & B & 3
\tableIntern{\lastTableRowEnd}
{
3 & Field3 & Name3 & C & 3 \tableRowEnd
4 & Field4 & Name4 & C & 4 \tableRowEnd
}
\hiderowcolors 5 & Field5 & Name5 & D & 2 \tableRowEnd
\showrowcolors 6 & Field6 & Name6 & E & 3\lastTableRowEnd
\hiderowcolors
\bottomrule
\caption{stackoverflow MWE}
\label{table:stackoverflowMWE}
\end{longtable}
\end{document}
답변2
나는 논쟁에 표 형식의 줄을 넣지 않을 것입니다. 이것은 다소 취약합니다. 나는 \startrelease
... 과 같은 구문을 사용합니다 \stoprelease
.
이 외에도: 부품 \tableIntern
이 다른 라인 명령으로 끝나면 다음과 같이 작동할 수 있습니다.
\documentclass[a4paper,11pt,index=totoc]{scrreprt}
% --- out of style file
% \def\isRelease{1}
\usepackage{colortbl}
\usepackage{array}
\usepackage{longtable}
\usepackage{booktabs}
\usepackage[justification=centering,font=scriptsize,labelfont=bf,position=bottom]{caption}
\usepackage{xifthen}
\usepackage{color}
\newcommand{\headcol}{\rowcolor{black}}
\newcommand{\internCol}{\rowcolor{yellow}}
\newcommand{\startLongTable}%
{%
\renewcommand{\arraystretch}{1.2}%
\setlength\LTleft{0pt plus \textwidth}%
\setlength\LTright{0pt plus \textwidth}%
}
\newcommand{\tableRowEnd}%
{%
\\ \midrule%
}
\newcommand{\lastTableRowEnd}%
{%
\\ \addlinespace%
}
\newcommand{\preTableHeaderLine}{\arrayrulecolor{black}\specialrule{\heavyrulewidth}{\abovetopsep}{0pt}%
\arrayrulecolor{black}\specialrule{\belowrulesep}{0pt}{0pt}%
\arrayrulecolor{black}}
\newcommand{\postTableHeaderLine}{\arrayrulecolor{black}\specialrule{\aboverulesep}{0pt}{0pt}%
\arrayrulecolor{black}\specialrule{\lightrulewidth}{0pt}{0pt}%
\arrayrulecolor{black}}
\newcommand{\tableIntern}[2]%
{%
\ifdefined\isRelease%
#1%
\else%
\gdef \tableRowEnd{\\\midrule\internCol}%
\gdef \lastTableRowEnd{\gdef\tableRowEnd{\\\midrule}\\\addlinespace}%
\tableRowEnd%
\internCol#2%
\fi%
}
% --- --------------------------
\begin{document}
\startLongTable
\begin{longtable}{ >{\centering}p{0.1\textwidth-2\tabcolsep}
p{0.2\textwidth-2\tabcolsep}
p{0.4\textwidth-2\tabcolsep}
>{\centering}p{0.2\textwidth-2\tabcolsep}
>{\centering\arraybackslash}p{0.1\textwidth-2\tabcolsep}
}
\preTableHeaderLine
\headcol \color{white} Field & \color{white} Name & \color{white} Description & \color{white} Format & \color{white} \# \\
\postTableHeaderLine \addlinespace
\endhead
1 & Field1 & Name1 & A & 2 \tableRowEnd
2 & Field2 & Name2 & B & 3
\tableIntern{\lastTableRowEnd}
{
3 & Field3 & Name3 & C & 3 \tableRowEnd
4 & Field4 & Name4 & C & 4 \lastTableRowEnd
}
5 & text & Name3 & C & 3 \tableRowEnd
6 & test\\
\bottomrule
\caption{stackoverflow MWE}
\label{table:stackoverflowMWE}
\end{longtable}
\end{document}
답변3
아이디어는 "팬텀 추가 열"을 만들고 그 안에 행 색상만 사용하여 빈 다중 행 명령을 제공하는 것입니다. 어려움을 발견하면... 도움을 요청하세요... (조금 시도했지만 그렇지 않습니다. 코드를 입력하는 것이 약간 복잡합니다). 나는 당신이 아주 쉽게 할 수 있다고 생각합니다. (당신은 이미 당신의 코드가 어떻게 작동하는지 알고 있습니다.)