就提供的功能而言,“\usepackage[table]{xcolor}”与“\usepackage{xcolor}”相比如何?

就提供的功能而言,“\usepackage[table]{xcolor}”与“\usepackage{xcolor}”相比如何?

如何“加载没有参数的包”例如\usepackage{xcolor}相比于“使用参数加载包”例如\usepackage[表]{xcolor}?!

换句话说,这两个表达式是否相等, 或者 ”\usepackage[表]{xcolor}“ 有更具体的用途,不能简单地被取代”\usepackage{xcolor}“?!

我需要拨打“\usepackage[表]{xcolor}“在我的表格中使用颜色,但我想知道我是否会因为仅指定[桌子]作为一个论点!

以下是我的序言:

\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc} 
\usepackage[T1]{fontenc} 
\usepackage[french]{babel}
\usepackage[table]{xcolor} % <== Here it is
\usepackage{graphicx}
\usepackage{geometry}
\usepackage{enumitem}
\usepackage{url}    
\usepackage{hyperref}
\usepackage[backend=biber,style=ieee]{biblatex}
\usepackage{longtable}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{float}
\usepackage{caption}

\def\frenchtablename{Tableau}

以下是表格代码:

\begin{table}[h]

\centerline{

\newcolumntype{S}{>{\columncolor{gray!50}} p{3cm}}

\arrayrulecolor{white}

\begin{tabularx}{1.1\textwidth}{|S|p{1cm}p{1cm}p{1cm}p{1cm}p{1.7cm}p{1.3cm}p{1.1cm}p{1.3cm}|}
\hline
\rowcolor{gray!50} 
\hline 
{}&\textbf{Argent}&\textbf{Cuivre}&\textbf{Indium}&\textbf{Galium}&\textbf{Germanium}&\textbf{Lithium}&\textbf{Tantale}&\textbf{Terres rares}\\
\hline
\textbf{Usage} & \rowcolor{gray!10} {Contacts & Câbles & Écrans & Leds & Wifi & Batteries & LCD, condensateurs & LCD, aimants}\\
\hline
\textbf{Part de la production mondiale dédiée aux TICs} & \rowcolor{gray!10} {21\% & 42\% & >50\% & 40\% & 15\% & 20\% & 66\% & 20\%}\\
\hline
\textbf{Réserve (ans)} & \rowcolor{gray!10} {15-30 & 40 & 10-15 & 10-15 & 10-15 & grandes & 150 & grandes}\\
\hline
\textbf{Recyclage} & \rowcolor{gray!10} {>50\% & >50\% & >1\% & >1\% & >1\% & >1\% &  >1\% & >1\%}

\end{tabularx}
}

\caption{Exemples de métaux utilisés dans les TICs et les enjeux associés (DREZET, 2012 ; VIDAL, 2016) \cite{lien1}}

\end{table}

下表为编制情况:

在此处输入图片描述

PS:抱歉,这听起来是一个非常基本的问题,但我是新手,我正在尝试消除一些困惑。

答案1

table选项导致colortbl包被加载,并添加一些额外的表相关的命令,如\rowcolors

相关内容