Skip to content

Commit d0a59c6

Browse files
committed
Adiciona cronograma
1 parent 335d7ac commit d0a59c6

File tree

2 files changed

+113
-0
lines changed

2 files changed

+113
-0
lines changed

Diff for: cronograma.Rnw

+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
\documentclass[a4paper, 11pt]{article}
2+
\usepackage[margin=1.2cm, landscape]{geometry}
3+
\pagenumbering{gobble}
4+
5+
\usepackage[brazil]{babel}
6+
\usepackage[utf8]{inputenc}
7+
\usepackage[T1]{fontenc}
8+
9+
\usepackage{tabularx}
10+
\usepackage{booktabs}
11+
\usepackage{makecell}
12+
\usepackage{multicol}
13+
14+
\usepackage{float}
15+
\usepackage{mathpazo}
16+
17+
\begin{document}
18+
19+
\begin{center}
20+
\bfseries
21+
UNIVERSIDADE DE SÃO PAULO \\
22+
ESCOLA SUPERIOR DE AGRICULTURA ``LUIZ DE QUEIROZ`` \\
23+
DEPARTAMENTO DE CIÊNCIAS EXATAS \\[0.2cm]
24+
25+
LCE0216 - Introdução à Bioestatística Florestal \\
26+
Professora responsável: Clarice Garcia Borges Demétrio
27+
\end{center}
28+
29+
<<include=FALSE>>=
30+
library(lubridate)
31+
library(xtable)
32+
33+
begin <- as_date(dmy("26/02/2018"))
34+
final <- as_date(dmy("06/07/2018"))
35+
dates <- seq(begin, final, 1)
36+
dates <- dates[wday(dates) %in% c(3, 5)]
37+
38+
contents <- c(
39+
"Apresentação, motivação e início de estatística descritiva",
40+
"Estatística descritiva: representação tabular e gráfica",
41+
"Estatística descritiva: medidas de tendência central e dispersão",
42+
"Estatística descritiva: medidas de tendência central e dispersão",
43+
"Probabilidade: definições e teoremas",
44+
"Probabilidade: definições e teoremas",
45+
"Prof. Thadeu: Bioestatística florestal",
46+
"Prof. Thadeu: Coleta de dados e tabulação",
47+
"\\textcolor{red}{FERIADO: Semana santa}",
48+
"\\textcolor{red}{FERIADO: Semana santa}",
49+
"Probabilidade condicional e indepêndencia de eventos",
50+
"Distribuições de probabilidade",
51+
"Distribuições de probabilidade",
52+
"\\textbf{PRIMEIRA PROVA (P1)}",
53+
"Esperança matemática",
54+
"Esperança matemática",
55+
"Distribuições: Binomial, Poisson, Exponencial, Weibull e Normal",
56+
"Distribuições: Binomial, Poisson, Exponencial, Weibull e Normal",
57+
"\\textcolor{red}{FERIADO: Dia do trabalho}",
58+
"Distribuições: Binomial, Poisson, Exponencial, Weibull e Normal",
59+
"Noções de amostragem e distribuições amostrais",
60+
"Distribuições: t-Student, F-Snedecor e Qui-quadrado",
61+
"Inferência estatística: definição e motivação",
62+
"Inferência estatística: definição e motivação",
63+
"\\textbf{SEGUNDA PROVA (P2)}",
64+
"Inferência estatística: estimação pontual",
65+
"Inferência estatística: estimação intervalar",
66+
"\\textcolor{red}{FERIADO: Corpus Christi}",
67+
"Inferência estatística: testes de hipóteses",
68+
"Inferência estatística: testes de hipóteses",
69+
"Regressão e correlação linear simples",
70+
"Regressão e correlação linear simples",
71+
"Regressão e correlação linear simples",
72+
"Análise de tabelas de contingência",
73+
"Análise de tabelas de contingência",
74+
"\\textbf{TERCEIRA PROVA (P3)}",
75+
"\\textbf{PROVA SUBSTITUTIVA}",
76+
"\\textbf{REVISÃO DE PROVAS}"
77+
)
78+
79+
schedule <- data.frame("Datas" = format(dates, "%d/%m (%A)"),
80+
"Conteúdo" = contents)
81+
schedule <- schedule[order(wday(dates)), ]
82+
83+
@
84+
85+
\begin{table}[H]
86+
\centering \small
87+
\renewcommand{\arraystretch}{1.5}
88+
\caption{Cronograma de aulas do primeiro semestre de 2018.}
89+
\begin{multicols}{2}
90+
\begin{tabularx}{0.5\textwidth}{lllll}
91+
\toprule
92+
<<echo=FALSE, results="asis">>=
93+
print.xtable(xtable(schedule[1:19, ]),
94+
only.contents = TRUE,
95+
booktabs = TRUE,
96+
include.rownames = FALSE,
97+
sanitize.text.function = identity)
98+
@
99+
\end{tabularx}
100+
\begin{tabularx}{0.5\textwidth}{lllll}
101+
\toprule
102+
<<echo=FALSE, results="asis">>=
103+
print.xtable(xtable(schedule[20:38, ]),
104+
only.contents = TRUE,
105+
booktabs = TRUE,
106+
include.rownames = FALSE,
107+
sanitize.text.function = identity)
108+
@
109+
\end{tabularx}
110+
\end{multicols}
111+
\end{table}
112+
113+
\end{document}

Diff for: cronograma.pdf

42.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)