I am looking for a way have white text on black background in the LaTeX applied to a document containing a basic table with dividing lines and some colored links.
Using this code as below. However I can not write the table as in the figure.
\documentclass[a4paper, 10pt]{article}
\usepackage[a4paper]{geometry}
\usepackage[table]{xcolor}
\usepackage{array}
\begin{document}
\newcolumntype{L}[1]{>{\raggedright\arraybackslash}p{#1}}
\newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}}
\newcolumntype{R}[1]{>{\raggedleft\arraybackslash}p{#1}}
\newcolumntype{B}{>{\columncolor{black}\color{white}}c}
\newcolumntype{E}{>{\columncolor{black}\color{white}}l}
\newcolumntype{P}[1]{>{\columncolor{black}\hspace{0pt}\color{white}}p{#1}}
\section{SCHEDULE (AT CLASS)}
\vspace{-0.5cm}
\begin{center}
\begin{longtable}{|C{1.0cm}|C{7.0cm}|C{4.1cm}|C{4.0cm}|}
\hline
\textbf{(Number Week)} & \multicolumn{1}{c|}{\textbf{Introduction (Learning objectives)}} & \textbf{Class (Teaching Strategies)} & \textbf{Keypoint
(Student Activities)} \\
\hline
1 & \textbf{Chapter 0: Introduction about the important in this book} & & \\
\hline
1 & - Introduction & & \\
\hline
\end{longtable}
%\end{tabular}
\end{center}
\end{document}


itemizeenvironment for it. for this see http://tex.stackexchange.com/questions/347253/ – Zarko Jul 27 '18 at 10:18