What you have posted is not a . Having said that, you are loading some packages which are not necessary to be loaded. For example
% Set for tables
\usepackage{colortbl} %% loaded by xcolor in next line, not needed
\usepackage[table]{xcolor}
\definecolor{lightgray}{gray}{0.95}
\usepackage ...
Search found 2 matches
- Sun Feb 22, 2015 8:37 am
- Forum: Graphics, Figures & Tables
- Topic: Longtables :: Setting 'global' properties
- Replies: 1
- Views: 6435
- Sun Feb 22, 2015 2:05 am
- Forum: Texmaker and TeXstudio
- Topic: New \item in Texmaker
- Replies: 2
- Views: 7028
New \item in Texmaker
Inside a list in texmaker, to insert , press Enter and then Ctrl+Shift+I.
Code: Select all
\item
Code: Select all
\documentclass{article}
\begin{document}
\begin{enumerate}
\item one item %%<---- press Enter here and then Ctrl+Shift+I
\item
\end{enumerate}
\end{document}