Graphics, Figures & TablesMake a timetable in latex

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
mikesol
Posts: 8
Joined: Sun Mar 22, 2009 8:42 am

Make a timetable in latex

Post by mikesol »

Hello everybody

I'm doing my master's thesis, and I have to make a timetable. I did something like that

Code: Select all

Code, edit and compile here:
%%Preamble
\usepackage{colortbl}
\definecolor{lgray}{gray}{0.8}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{tabular}{|p{2cm}|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
\hline
Act.\textbackslash{} Fecha & Feb & Mar & Abr & May & Jun & Jul & Ago & Set & Oct & Nov & Dic & Ene & Feb & Mar\\
\hline
\hline
Elaboracion del Anteproyecto & \cellcolor{lgray} & \cellcolor{lgray} & & & & & & & & & & & & \tabularnewline
\hline
Investigación Teórica & & & \cellcolor{lgray} & \cellcolor{lgray} & \cellcolor{lgray} & \cellcolor{lgray} & & & & & & & & \tabularnewline
\hline
Solicitud de Examen de Candidatura & & & & & \cellcolor{lgray} & & & & & & & & & \tabularnewline
\hline
Examen de Candidatura & & & & & & & \cellcolor{lgray} & & & & & & & \tabularnewline
\hline
Programación y Verificación de Resultados & & & & & & & \cellcolor{lgray} & \cellcolor{lgray} & \cellcolor{lgray} & \cellcolor{lgray} & \cellcolor{lgray} & \cellcolor{lgray} & & \tabularnewline
\hline
Redacción Final & & & \cellcolor{lgray} & \cellcolor{lgray} & \cellcolor{lgray} & \cellcolor{lgray} & \cellcolor{lgray} & \cellcolor{lgray} & \cellcolor{lgray} & \cellcolor{lgray} & \cellcolor{lgray} & \cellcolor{lgray} & & \tabularnewline
\hline
Defensa de Tesis & & & & & & & & & & & & & \cellcolor{lgray} & \cellcolor{lgray}\tabularnewline
\hline
\end{tabular}
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
But it looks really ugly. I search if there a package for this. and find one called calendar http://www.ctan.org/tex-archive/macros/ ... /calendar/ but isn't clear how the package works.

Somebody knows how this package works? or there is another way to do that?

Thanks in advance.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Make a timetable in latex

Post by localghost »

Another topic might help in this case. The problem that was introduced there is different from yours but the table structure could be the right one to get things work for you.

[1] View topic: Numbering option for rows in a table


Best regards and welcome to the board
Thorsten¹
mikesol
Posts: 8
Joined: Sun Mar 22, 2009 8:42 am

Make a timetable in latex

Post by mikesol »

I tried to do it with the calendar package. I started with a very simple example but doesn't work.

Code: Select all

Code, edit and compile here:
\documentclass[twoside,12pts]{article}
\usepackage{evntlist}
\begin{document}
\begin{eventlist}{}{}
1 Jan. 2009
\end{eventlist}
\end{document}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
In the output there is an error

Code: Select all

Code, edit and compile here:
Anteproyecto.tex:352:\begin{eventlist} on input line 350 ended by \end{itemize}. \end{eventlist}
Anteproyecto.tex:352:\begin{document} ended by \end{eventlist}. \end{eventlist}
Anteproyecto.tex:352:Extra \endgroup. \end{eventlist}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Any idea?

Thanks
Post Reply