-
Notifications
You must be signed in to change notification settings - Fork 0
/
GPTs.html
653 lines (628 loc) · 37.8 KB
/
GPTs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>GPTs Pós*BR</title><style>
body {
font-family: Arial, sans-serif;
margin: 20px;
color: #333;
}
h1 {
font-size: 24px;
color: #333;
text-align: center;
margin-top: 20px;
margin-bottom: 40px;
}
h2 {
font-size: 16px;
color: #333;
text-align: center;
margin-top: 20px;
margin-bottom: 40px;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
table, th, td {
border: 1px solid #ddd;
}
.categoria, .detalhe-GrandeArea, .Detalhe-Area {
padding: 8px;
text-align: left;
}
.detalhe-TodasAreas {
padding: 20px;
text-align: center;
}
.categoria {
background-color: #f2f2f2;
color: #333;
white-space: pre-line; /* Respeita a quebra de linha */
}
.detalhe-GrandeArea {
background-color: #e8eaf6;
font-weight: bold;
color: #333;
white-space: pre-line; /* Respeita a quebra de linha */
}
.detalhe-TodasAreas {
background-color: #e8eaf6;
font-weight: bold;
color: #333;
white-space: pre-line; /* Respeita a quebra de linha */
}
.Detalhe-Area {
background-color: #fff;
color: #555;
}
tr:nth-child(even) .Detalhe-Area {
background-color: #f9f9f9;
}
.detalhe-TodasAreas, .detalhe-GrandeArea, .Detalhe-Area {
position: relative; /* Adiciona posição relativa às células */
/* ...outros estilos... */
}
.detalhe-TodasAreas:hover::after, .Detalhe-Area:hover::after, .detalhe-GrandeArea:hover::after {
content: attr(data-tooltip);
position: absolute;
visibility: hidden;
opacity: 0;
transition: opacity 0.3s, visibility 0.3s;
z-index: 100;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
background-color: #f9f9f9;
color: #333;
padding: 5px 10px;
border-radius: 6px;
border: 1px solid #ddd;
box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
font-size: 12px;
white-space: pre-line; /* Respeita a quebra de linha */
}
.detalhe-TodasAreas:hover::after, .Detalhe-Area:hover::after, .detalhe-GrandeArea:hover::after {
visibility: visible;
opacity: 1;
}
.GPT {
/* Estilo para links dentro das células */
text-decoration: none; /* Remove o sublinhado padrão dos links */
color: #1a0dab; /* Cor azul padrão dos links */
font-weight: bold; /* Faz o texto do link em negrito */
}
.GPT:hover,
.GPT:focus {
text-decoration: underline; /* Adiciona sublinhado no hover ou foco para melhor acessibilidade */
color: #0c4b8e; /* Cor azul mais escura para hover ou foco */
}
.nota-licenca {
margin-top: 20px;
margin-bottom: 20px;
padding: 15px;
background-color: #f8f9fa;
border-left: 5px solid #007bff;
color: #333;
font-style: italic;
}
.see-more-section {
padding: 20px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0,0,0,.1);
margin-top: 40px; /* Or the desired spacing from the content above */
}
.see-more-section h3 {
font-size: 1.4em;
color: #37474f;
margin-bottom: 15px;
}
.see-more-note {
margin-bottom: 15px;
}
.see-more-link {
font-size: 1.2em;
color: #1a0dab;
text-decoration: none;
display: inline-block;
margin-bottom: 5px;
}
.see-more-link:hover,
.see-more-link:focus {
text-decoration: underline;
color: #0c4b8e;
}
@media screen and (max-width: 600px) {
.see-more-section {
padding: 10px;
}
}
</style></head>
<body>
<h1>GPTs Pós*BR - Produções Acadêmicas da Base de Teses e Dissertações da Capes</h1>
<h2>Aqui você encontra GPTs que dão acesso a 1.401.067 produções (dissertações e teses)
acadêmicas do Brasil no período de 1987 a 2021
</h2>
<div class="nota-licenca">
Estes GPTs utilizam dados provenientes do 'Catálogo de Teses e Dissertações - Brasil',
um recurso fornecido pela Coordenação de Aperfeiçoamento de Pessoal de Nível Superior
(CAPES), disponível sob a licença Creative Commons Attribution (CC BY).
</div>
<table border="1">
<tr>
<td class="categoria">Todas as Áreas do Conhecimento</td>
<td class="detalhe-TodasAreas" colspan="9" data-tooltip="1401067 Registros

Período: 1987‑2021">
BASE DE TESES E DISSERTAÇÕES <br><br><a href="https://chat.openai.com/g/g-1ZmP81GZR-posbtdbr" class="GPT">PósBTDTBR (Pesquisa Convencional: mais lenta e dados completos)</a><br><br><a href="https://chat.openai.com/g/g-iz88YQyLX-posresumotitulobr" class="GPT">PósResumoTextoBR (Pesquisa Textual: mais rápida e dados mais relevantes)</a></td>
</tr>
<tr>
<td class="categoria">Grande Áreas do Conhecimento</td>
<td class="detalhe-GrandeArea" data-tooltip="128889 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-LlVqWqDvE-poscienciasexatasedaterrabr" class="GPT">Ciências Exatas e da Terra</a></td>
<td class="detalhe-GrandeArea" data-tooltip="104242 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-2N10s0Nre-poscienciasbiologicasbr" class="GPT">Ciências Biológicas</a></td>
<td class="detalhe-GrandeArea" data-tooltip="166769 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-3OERgpXbT-posengenhariasbr" class="GPT">Engenharias</a></td>
<td class="detalhe-GrandeArea" data-tooltip="218968 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-rXPnUXnJY-poscienciasdasaudebr" class="GPT">Ciências da Saúde</a></td>
<td class="detalhe-GrandeArea" data-tooltip="143748 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-GbMmgO4O0-poscienciasagrariasbr" class="GPT">Ciências Agrárias</a></td>
<td class="detalhe-GrandeArea" data-tooltip="191973 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-84qng0bVy-poscienciassociaisaplicadabr" class="GPT">Ciências Sociais Aplicadas</a></td>
<td class="detalhe-GrandeArea" data-tooltip="232899 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-ABympQtuk-poscienciashumanasbr" class="GPT">Ciências Humanas</a></td>
<td class="detalhe-GrandeArea" data-tooltip="85756 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-gdKC89QZz-poslinguisticaletraseartesbr" class="GPT">Linguística, Letras e Artes</a></td>
<td class="detalhe-GrandeArea" data-tooltip="127823 Registros

Período: 1992‑2021"><a href="https://chat.openai.com/g/g-LTf1HlOIv-posmultidisciplinarbr" class="GPT">Multidisciplinar</a></td>
</tr>
<tr>
<td class="categoria">Área do Conhecimento</td>
<td>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="18264 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-u1ITQCiTk-posmatematicabr" class="GPT">Matemática</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="2098 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-YuiFnVGZj-posprobabilidadeeestatisticabr" class="GPT">Probabilidade e Estatística</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="30771 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-g8o1AnxqN-poscienciadacomputacaobr" class="GPT">Ciência da Computação</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="1139 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-iGy2tPfgf-posastronomiabr" class="GPT">Astronomia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="21072 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-qsgfMRi7T-posfisicab" class="GPT">Física</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="31853 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-7OBuWYHNf-posquimicabr" class="GPT">Química</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="16864 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-MuqrEHgct-posgeocienciasbr" class="GPT">Geociências</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="2247 Registros

Período: 1993‑2021"><a href="https://chat.openai.com/g/g-oA854E8I5-posoceanografiabr" class="GPT">Oceanografia</a></td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="12533 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-P569R1MzK-posbiologiageralbr" class="GPT">Biologia Geral</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="10271 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-JY4jy6ZEw-posgeneticabr" class="GPT">Genética</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="8751 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-TWIqXJKSC-posbotanicabr" class="GPT">Botânica</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="12695 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-QOS2uOwnx-poszoologiabr" class="GPT">Zoologia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="15751 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-jgph3Iotg-posecologiabr" class="GPT">Ecologia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="3101 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-IzhYEncgi-posmorfologiabr" class="GPT">Morfologia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="8368 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-9jH9OXWW6-posfisiologiabr" class="GPT">Fisiologia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="11611 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-3Wl3opydL-posbioquimicabr" class="GPT">Bioquímica</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="2274 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-QCGR35IfY-posbiofisicabr" class="GPT">Biofísica</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="5534 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-OVDXKt9M5-posfarmacologiabr" class="GPT">Farmacologia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="2849 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-1tG1fEKxv-posimunologiabr" class="GPT">Imunologia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="6180 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-euZq83v0j-posmicrobiologiabr" class="GPT">Microbiologia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="3510 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-GGHy0G3rl-posparasitologiabr" class="GPT">Parasitologia</a></td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="26727 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-9dGNyZZQz-posengenhariacivilbr" class="GPT">Engenharia Civil</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="982 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-3DQP9RVxm-posengenhariademinasbr" class="GPT">Engenharia de Minas</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="14073 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-677NoDMNO-pos-engenharia-de-materiais-e-metalurgica-br" class="GPT">Engenharia de Materiais e Metalúrgica</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="35445 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-pDINLTNtO-posengenhariaeletricabr" class="GPT">Engenharia Elétrica</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="25443 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-Ok1TU7fKa-posengenhariamecanicabr" class="GPT">Engenharia Mecânica</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="15941 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-QUPX5SPrK-posengenhariaquimicabr" class="GPT">Engenharia Química</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="8772 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-m6qTVJLmU-pos-engenharia-sanitaria-br" class="GPT">Engenharia Sanitária</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="20963 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-1aQSD4Rc4-posengenhariadeproducaobr" class="GPT">Engenharia de Produção</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="5410 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-VP1usdi0z-pos-engenharia-nuclear-br" class="GPT">Engenharia Nuclear</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="3139 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-I5MaOV6Qk-pos-engenharia-de-transportes-br" class="GPT">Engenharia de Transportes</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="1536 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-XpBlF4cTM-posengenharianavaleoceanicabr" class="GPT">Engenharia Naval e Oceânica</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="3970 Registros

Período: 1988‑2021"><a href="https://chat.openai.com/g/g-dnZs7YTYW-posengenhariaaeroespacialbr" class="GPT">Engenharia Aeroespacial</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="3255 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-zvInZo1In-posengenhariabiomedicabr" class="GPT">Engenharia Biomédica</a></td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="77421 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-21BC4WyZD-posmedicinabr" class="GPT">Medicina</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="36843 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-mwYeDc77B-posodontologiabr" class="GPT">Odontologia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="15745 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-ncGO9HNQ5-posfarmaciabr" class="GPT">Farmácia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="22918 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-U3Jz3v9ID-posenfermagembr" class="GPT">Enfermagem</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="6099 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-yO4IdR7Ut-posnutricaobr" class="GPT">Nutrição</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="25902 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-bm5s7IyG3-possaudecoletivabr" class="GPT">Saúde Coletiva</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="3427 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-8H4Zfdob8-pos-fonoaudiologia-br" class="GPT">Fonoaudiologia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="4213 Registros

Período: 1998‑2021"><a href="https://chat.openai.com/g/g-cP3due6c1-posfisioterapiaeterapiaocupacionalbr" class="GPT">Fisioterapia e Terapia Ocupacional</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="12385 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-IANYvFQwA-poseducacaofisicabr" class="GPT">Educação Física</a></td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="58389 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-pVGf61oAT-posagronomiabr" class="GPT">Agronomia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="8919 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-Q01GE3jxR-pos-recursos-florestais-e-engenharia-florestal-br" class="GPT">Recursos Florestais e Engenharia Florestal</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="7881 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-2G4rBl8Ce-posengenhariaagricolabr" class="GPT">Engenharia Agrícola</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="19064 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-XwGgn8MjL-poszootecniabr" class="GPT">Zootecnia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="25736 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-F5sKI0aJI-posmedicinaveterinariabr" class="GPT">Medicina Veterinária</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="3039 Registros

Período: 1991‑2021"><a href="https://chat.openai.com/g/g-NmGCa8gcD-posrecursospesqueiroseengenhariadepescabr" class="GPT">Recursos Pesqueiros e Engenharia de Pesca</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="15619 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-sjTxyKsMA-poscienciaetecnologiadealimentosbr" class="GPT">Ciência e Tecnologia de Alimentos</a></td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="53165 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-cydinvKSV-posdireitobr" class="GPT">Direito</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="53586 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-a1Iq363Na-posadministracaobr" class="GPT">Administração</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="21598 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-Re6LT8OzS-poseconomiabr" class="GPT">Economia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="53 Registros

Período: 1987‑1995"><a href="https://chat.openai.com/g/g-vbctKMmsp-poseconomiasagrariaedosrecursosnaturaisbr" class="GPT">Economias Agrária e dos Recursos Naturais</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="11868 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-aHBCskTbn-pos-arquitetura-e-urbanismo-br" class="GPT">Arquitetura e Urbanismo</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="7526 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-aBGWrj3yv-posplanejamentourbanoeregionalbr" class="GPT">Planejamento Urbano e Regional</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="902 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-TMZpdjEwe-posdemografiabr" class="GPT">Demografia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="5114 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-AUSCD6aZD-poscienciadainformacaobr" class="GPT">Ciência da Informação</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="475 Registros

Período: 2008‑2021"><a href="https://chat.openai.com/g/g-bR0uRcSud-posmuseologiabr" class="GPT">Museologia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="18532 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-geYnz6j6X-poscomunicacaobr" class="GPT">Comunicação</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="9897 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-3AnQfE1Q6-pos-servico-social-br" class="GPT">Serviço Social</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="33 Registros

Período: 2015‑2017"><a href="https://chat.openai.com/g/g-x9Dgz75vV-poseconomiadomesticabr" class="GPT">Economia Doméstica</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="3933 Registros

Período: 1997‑2021"><a href="https://chat.openai.com/g/g-x7vOzfBWw-posdesenhoindustrialbr" class="GPT">Desenho Industrial</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="1827 Registros

Período: 2000‑2021"><a href="https://chat.openai.com/g/g-RcJB98mAp-posturismobr" class="GPT">Turismo</a></td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="12555 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-wVcH2MhcC-posfilosofiabr" class="GPT">Filosofia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="21384 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-P3JQVrnDK-possociologiabr" class="GPT">Sociologia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="7313 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-43hCQ5KFv-pos-antropologia-br" class="GPT">Antropologia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="448 Registros

Período: 2005‑2021"><a href="https://chat.openai.com/g/g-02l9vmAek-posarqueologiabr" class="GPT">Arqueologia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="28538 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-6TEFZ89Kp-poshistoriabr" class="GPT">História</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="19560 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-AhBCIwmgg-posgeografiabr" class="GPT">Geografia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="33452 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-nv8sHJsWk-pospsicologiabr" class="GPT">Psicologia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="751 Registros

Período: 1987‑2009"><a href="https://chat.openai.com/g/g-fXvnQrpwu-postratamentoeprevencaopsicologicabr" class="GPT">Tratamento e Prevenção Psicológica</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="88456 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-c5gQngueD-poseducacaobr" class="GPT">Educação</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="9692 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-Y6dAxHJEC-poscienciapoliticabr" class="GPT">Ciência Política</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="7451 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-Ua09IsvOX-posteologiabr" class="GPT">Teologia</a></td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="15587 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-RElOmf9hF-poslinguisticabr" class="GPT">Linguística</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="51758 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-POQLdEMSL-posletrasbr" class="GPT">Letras</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="35 Registros

Período: 2008‑2009"><a href="https://chat.openai.com/g/g-dSJ9L5hLW-pos-literatura-comparada-br" class="GPT">Literatura Comparada</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="16075 Registros

Período: 1987‑2021"><a href="https://chat.openai.com/g/g-NgpZjxrWi-posartesbr" class="GPT">Artes</a></td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="65226 Registros

Período: 1992‑2021"><a href="https://chat.openai.com/g/g-eQAatc932-posinterdisciplinarbr" class="GPT">Interdisciplinar</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="24869 Registros

Período: 1998‑2021"><a href="https://chat.openai.com/g/g-1FfzOxykN-posensinobr" class="GPT">Ensino</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="5596 Registros

Período: 2007‑2021"><a href="https://chat.openai.com/g/g-TeLM7Ki4h-posmateriaisbr" class="GPT">Materiais</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="9952 Registros

Período: 2007‑2021"><a href="https://chat.openai.com/g/g-fsXdj4Rcn-posbiotecnologiabr" class="GPT">Biotecnologia</a></td>
</tr>
</table>
<table>
<tr>
<td class="Detalhe-Area" data-tooltip="15857 Registros

Período: 2011‑2021"><a href="https://chat.openai.com/g/g-EPdH6l6Hl-poscienciasambientaisbr" class="GPT">Ciências Ambientais</a></td>
</tr>
</table>
</td>
</tr>
</table>
<div class="see-more-section">
<h3>Conheça também:</h3>
<div class="see-more-note"><a href="https://joaoli13.github.io/GPTsUK.html" class="see-more-link">🇬🇧 GPTs Teses UK</a><p>Descubra GPTs que oferecem acesso a 627.035 teses acadêmicas do Reino Unido, cobrindo
o período de 1768 a 2023. Esses GPTs utilizam dados do 'EThOS - Serviço Online de
Teses do Reino Unido', um recurso fornecido pela Biblioteca Britânica, disponível
sob a licença Creative Commons Atribuição (CC BY 4.0).
</p>
</div>
<div class="see-more-note"><a href="https://chat.openai.com/g/g-ftpttHQdu-learningladder" class="see-more-link">GPT LearningLadder - Uma Ferramenta de Aprendizado</a><p>Embarque na jornada da LearningLadder de 10 degraus, onde você pode mergulhar em um
tópico de interesse e enfrentar questões cada vez mais complexas. Ganhe pontos parciais
por cada tentativa e receba explicações abrangentes para enriquecer seu conhecimento.
</p>
</div>
</div>
</body>
</html>