I'm very new to LaTeX and run into some problems. I'm using Texmaker for windows with pdflatex btw.
When I use special characters and arrows etc. I would like to write it like this.
\wedge
But I have to write it like this
$\wedge$
Why is this ?
Now I would like to write [ and ] in my document. But neither of these examples work.
[
\[
$\[$
How can I write [ and ] in my document?
EDIT:
Here are some parts from my document.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{color}
\usepackage{colortbl}
\usepackage{graphicx}
...
\begin{document}
\begin{tabular}{ll}
[ & this is a square bracket \\
\end{tabular}
\end{document}
Maybe the problem is the table ? When I just write [ I get following error:
! Paragraph ended before \@argarraycr was complete.
EDIT 2: Here is a test document. This one I can not compile.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{color}
\usepackage{colortbl}
\usepackage{graphicx}
\begin{document}
\begin{tabular}{ll}
\{ / \} & test \\
[\{ / ]\} & test \\
\end{tabular}
\end{document}
