blob: 485f92dc7b7225a7f7f44d35784a4d13cc04ba3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
%# -*- coding: utf-8 -*-
\ifx\epTeXinputencoding\undefined\else % defined in e-pTeX (> TL2016)
\epTeXinputencoding utf8 % ensure utf-8 encoding for platex
\fi
\documentclass[a4paper]{jsarticle}
\usepackage[nohyperref]{doc}% doc v3
\usepackage{colortbl}
\usepackage{plextcolortbl}
\GetFileInfo{plextcolortbl.sty}
\title{Package \textsf{plextcolortbl} \fileversion}
\author{Hironobu Yamashita}
\date{\filedate}
\begin{document}
\maketitle
The package \textsf{plextcolortbl} provides a tiny patch to
make \textsf{colortbl} compatible with \textsf{plext}.
\bigskip
\textsf{plextcolortbl}パッケージは、David Carlisle氏による
\textsf{colortbl}パッケージと、p\LaTeX の拡張パッケージである
\textsf{plext}パッケージを同時に使えるようにするものです。
\section{使いかた}
\textsf{plext}と\textsf{colortbl}を共存させたいときに、プリアンブルに
\verb+\usepackage{plextcolortbl}+と書きます。
以下に例を示します。
\bigskip
\begin{minipage}{0.5\linewidth}
\begin{verbatim}
\documentclass{jsarticle}
%\usepackage{plext}
%\usepackage{colortbl}
\usepackage{plextcolortbl}
\begin{document}
\begin{tabular*}<t>{3cm}{%
@{\extracolsep{\fill}}
>{\columncolor{green}[0pt][20mm]}l
>{\columncolor{yellow}[5mm][0pt]}l
@{}}
one & いち \\
two & に
\end{tabular*}
\end{document}
\end{verbatim}
\end{minipage}
\begin{minipage}{0.4\linewidth}
\begin{tabular*}<t>{3cm}{%
@{\extracolsep{\fill}}
>{\columncolor{green}[0pt][20mm]}l
>{\columncolor{yellow}[5mm][0pt]}l
@{}}
one & いち \\
two & に
\end{tabular*}
\end{minipage}
\end{document}
|