├── .quarto ├── preview │ └── lock ├── xref │ ├── 206b6344 │ ├── b6c3c664 │ ├── 09f8c7ff │ ├── c7172a1d │ ├── bdc691d7 │ ├── 1a50c6ec │ ├── 957f7ffb │ └── INDEX └── idx │ ├── md │ └── about │ │ └── index.qmd.json │ ├── 404.qmd.json │ └── index.qmd.json ├── md ├── .obsidian │ ├── hotkeys.json │ ├── app.json │ ├── appearance.json │ ├── community-plugins.json │ ├── core-plugins.json │ ├── plugins │ │ └── qmd-as-md-obsidian │ │ │ └── manifest.json │ ├── core-plugins-migration.json │ └── workspace.json ├── .DS_Store ├── about │ └── index.qmd ├── B │ ├── zk │ │ ├── __zk01.png │ │ ├── __zk02.png │ │ ├── __zk03.png │ │ ├── __zk04.png │ │ ├── __zk05.png │ │ ├── __zk06.png │ │ ├── __zk07.png │ │ ├── __zk08.png │ │ ├── __zk09.png │ │ ├── __zk10.png │ │ ├── __zk11.png │ │ └── __zk12.png │ └── index.qmd ├── A │ └── index.qmd └── C │ └── index.qmd ├── README.md ├── _site ├── robots.txt ├── files │ ├── 404.gif │ ├── course-icon.png │ ├── favicon-512.png │ ├── social-image-sp23.png │ └── schedule.ics ├── md │ ├── B │ │ └── zk │ │ │ ├── __zk01.png │ │ │ ├── __zk02.png │ │ │ ├── __zk03.png │ │ │ ├── __zk04.png │ │ │ ├── __zk05.png │ │ │ ├── __zk06.png │ │ │ ├── __zk07.png │ │ │ ├── __zk08.png │ │ │ ├── __zk09.png │ │ │ └── __zk12.png │ └── about │ │ └── index.html ├── site_libs │ ├── bootstrap │ │ └── bootstrap-icons.woff │ ├── quarto-contrib │ │ └── fontawesome6-0.1.0 │ │ │ ├── 1e21o67 │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ │ │ └── latex-fontsize.css │ ├── quarto-diagram │ │ ├── mermaid.css │ │ └── mermaid-init.js │ ├── quarto-html │ │ ├── tippy.css │ │ ├── quarto-syntax-highlighting.css │ │ └── anchor.min.js │ ├── clipboard │ │ └── clipboard.min.js │ └── quarto-nav │ │ └── quarto-nav.js └── 404.html ├── css ├── custom.scss ├── syllabus.css ├── custom_style.css └── styles_slides.css ├── files ├── 404.gif ├── course-icon.png ├── favicon-512.png ├── social-image-sp23.png └── schedule.ics ├── _extensions ├── .DS_Store ├── schochastics │ └── academicons │ │ ├── _extension.yml │ │ ├── assets │ │ ├── webfonts │ │ │ ├── academicons.eot │ │ │ ├── academicons.ttf │ │ │ └── academicons.woff │ │ └── css │ │ │ ├── size.css │ │ │ └── all.css │ │ └── academicons.lua └── quarto-ext │ └── fontawesome │ ├── assets │ ├── webfonts │ │ ├── fa-solid-900.ttf │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.ttf │ │ ├── fa-solid-900.woff2 │ │ ├── fa-regular-400.woff2 │ │ ├── fa-v4compatibility.ttf │ │ └── fa-v4compatibility.woff2 │ └── css │ │ └── latex-fontsize.css │ ├── _extension.yml │ └── fontawesome.lua ├── helpers ├── README.md ├── remove-title.html └── remove-nav.html ├── 404.qmd ├── html ├── title-block.html ├── home │ └── title-block.html └── custom.scss ├── .gitignore ├── .luarc.json ├── _variables.yml ├── index.qmd └── _quarto.yml /.quarto/preview/lock: -------------------------------------------------------------------------------- 1 | 64436 -------------------------------------------------------------------------------- /md/.obsidian/hotkeys.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # digital-foreign-relations 2 | -------------------------------------------------------------------------------- /.quarto/xref/206b6344: -------------------------------------------------------------------------------- 1 | {"entries":[],"headings":[]} -------------------------------------------------------------------------------- /.quarto/xref/b6c3c664: -------------------------------------------------------------------------------- 1 | {"headings":[],"entries":[]} -------------------------------------------------------------------------------- /.quarto/xref/09f8c7ff: -------------------------------------------------------------------------------- 1 | {"entries":[],"headings":["ri-digitais"]} -------------------------------------------------------------------------------- /md/.obsidian/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "showUnsupportedFiles": true 3 | } -------------------------------------------------------------------------------- /md/.obsidian/appearance.json: -------------------------------------------------------------------------------- 1 | { 2 | "accentColor": "" 3 | } -------------------------------------------------------------------------------- /.quarto/xref/c7172a1d: -------------------------------------------------------------------------------- 1 | {"entries":[],"headings":["palestrante","horário"]} -------------------------------------------------------------------------------- /md/.obsidian/community-plugins.json: -------------------------------------------------------------------------------- 1 | [ 2 | "qmd-as-md-obsidian" 3 | ] -------------------------------------------------------------------------------- /_site/robots.txt: -------------------------------------------------------------------------------- 1 | Sitemap: https://compasp23.classes.andrewheiss.com/sitemap.xml 2 | -------------------------------------------------------------------------------- /.quarto/xref/bdc691d7: -------------------------------------------------------------------------------- 1 | {"headings":["linguagens-de-marcação","xml","html","markdown","latex"],"entries":[]} -------------------------------------------------------------------------------- /md/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/md/.DS_Store -------------------------------------------------------------------------------- /css/custom.scss: -------------------------------------------------------------------------------- 1 | /*-- scss:defaults --*/ 2 | 3 | $blue: #20794D !default; 4 | /*-- scss:rules --*/ 5 | -------------------------------------------------------------------------------- /files/404.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/files/404.gif -------------------------------------------------------------------------------- /md/about/index.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "About" 3 | citeproc: true 4 | reference-location: margin 5 | --- 6 | 7 | 8 | -------------------------------------------------------------------------------- /_site/files/404.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/files/404.gif -------------------------------------------------------------------------------- /md/B/zk/__zk01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/md/B/zk/__zk01.png -------------------------------------------------------------------------------- /md/B/zk/__zk02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/md/B/zk/__zk02.png -------------------------------------------------------------------------------- /md/B/zk/__zk03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/md/B/zk/__zk03.png -------------------------------------------------------------------------------- /md/B/zk/__zk04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/md/B/zk/__zk04.png -------------------------------------------------------------------------------- /md/B/zk/__zk05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/md/B/zk/__zk05.png -------------------------------------------------------------------------------- /md/B/zk/__zk06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/md/B/zk/__zk06.png -------------------------------------------------------------------------------- /md/B/zk/__zk07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/md/B/zk/__zk07.png -------------------------------------------------------------------------------- /md/B/zk/__zk08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/md/B/zk/__zk08.png -------------------------------------------------------------------------------- /md/B/zk/__zk09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/md/B/zk/__zk09.png -------------------------------------------------------------------------------- /md/B/zk/__zk10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/md/B/zk/__zk10.png -------------------------------------------------------------------------------- /md/B/zk/__zk11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/md/B/zk/__zk11.png -------------------------------------------------------------------------------- /md/B/zk/__zk12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/md/B/zk/__zk12.png -------------------------------------------------------------------------------- /_extensions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_extensions/.DS_Store -------------------------------------------------------------------------------- /files/course-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/files/course-icon.png -------------------------------------------------------------------------------- /files/favicon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/files/favicon-512.png -------------------------------------------------------------------------------- /helpers/README.md: -------------------------------------------------------------------------------- 1 | This directory contains cheap hacks to hide the navigation bar and title from the home page of the website. -------------------------------------------------------------------------------- /_site/md/B/zk/__zk01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/md/B/zk/__zk01.png -------------------------------------------------------------------------------- /_site/md/B/zk/__zk02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/md/B/zk/__zk02.png -------------------------------------------------------------------------------- /_site/md/B/zk/__zk03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/md/B/zk/__zk03.png -------------------------------------------------------------------------------- /_site/md/B/zk/__zk04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/md/B/zk/__zk04.png -------------------------------------------------------------------------------- /_site/md/B/zk/__zk05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/md/B/zk/__zk05.png -------------------------------------------------------------------------------- /_site/md/B/zk/__zk06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/md/B/zk/__zk06.png -------------------------------------------------------------------------------- /_site/md/B/zk/__zk07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/md/B/zk/__zk07.png -------------------------------------------------------------------------------- /_site/md/B/zk/__zk08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/md/B/zk/__zk08.png -------------------------------------------------------------------------------- /_site/md/B/zk/__zk09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/md/B/zk/__zk09.png -------------------------------------------------------------------------------- /_site/md/B/zk/__zk12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/md/B/zk/__zk12.png -------------------------------------------------------------------------------- /_site/files/course-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/files/course-icon.png -------------------------------------------------------------------------------- /_site/files/favicon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/files/favicon-512.png -------------------------------------------------------------------------------- /files/social-image-sp23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/files/social-image-sp23.png -------------------------------------------------------------------------------- /_site/files/social-image-sp23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/files/social-image-sp23.png -------------------------------------------------------------------------------- /.quarto/xref/1a50c6ec: -------------------------------------------------------------------------------- 1 | {"headings":["repositórios-de-referências","repositórios-de-documentos","repositórios-de-código","repositórios-de-dados","coleta-de-dados"],"entries":[]} -------------------------------------------------------------------------------- /_site/site_libs/bootstrap/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/site_libs/bootstrap/bootstrap-icons.woff -------------------------------------------------------------------------------- /_extensions/schochastics/academicons/_extension.yml: -------------------------------------------------------------------------------- 1 | title: Support for academicons 2 | author: David Schoch 3 | version: 0.2.0 4 | contributes: 5 | shortcodes: 6 | - academicons.lua 7 | -------------------------------------------------------------------------------- /helpers/remove-title.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /.quarto/xref/957f7ffb: -------------------------------------------------------------------------------- 1 | {"headings":["o-método-zettelkasten","pastas-etiquetas-e-links-na-caixa-fichário","dialogando","organização","análise","softwares-de-análise-qualitativa","mineração-de-dados","ides"],"entries":[]} -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /_extensions/schochastics/academicons/assets/webfonts/academicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_extensions/schochastics/academicons/assets/webfonts/academicons.eot -------------------------------------------------------------------------------- /_extensions/schochastics/academicons/assets/webfonts/academicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_extensions/schochastics/academicons/assets/webfonts/academicons.ttf -------------------------------------------------------------------------------- /_extensions/schochastics/academicons/assets/webfonts/academicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_extensions/schochastics/academicons/assets/webfonts/academicons.woff -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/_extension.yml: -------------------------------------------------------------------------------- 1 | title: Font Awesome support 2 | author: Carlos Scheidegger 3 | version: 1.1.0 4 | quarto-required: ">=1.2.269" 5 | contributes: 6 | shortcodes: 7 | - fontawesome.lua 8 | -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /_site/site_libs/quarto-contrib/fontawesome6-0.1.0/1e21o67/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/site_libs/quarto-contrib/fontawesome6-0.1.0/1e21o67/fa-brands-400.ttf -------------------------------------------------------------------------------- /_site/site_libs/quarto-contrib/fontawesome6-0.1.0/1e21o67/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/site_libs/quarto-contrib/fontawesome6-0.1.0/1e21o67/fa-solid-900.ttf -------------------------------------------------------------------------------- /_site/site_libs/quarto-contrib/fontawesome6-0.1.0/1e21o67/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/site_libs/quarto-contrib/fontawesome6-0.1.0/1e21o67/fa-brands-400.woff2 -------------------------------------------------------------------------------- /_site/site_libs/quarto-contrib/fontawesome6-0.1.0/1e21o67/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/site_libs/quarto-contrib/fontawesome6-0.1.0/1e21o67/fa-regular-400.ttf -------------------------------------------------------------------------------- /_site/site_libs/quarto-contrib/fontawesome6-0.1.0/1e21o67/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/site_libs/quarto-contrib/fontawesome6-0.1.0/1e21o67/fa-solid-900.woff2 -------------------------------------------------------------------------------- /_site/site_libs/quarto-contrib/fontawesome6-0.1.0/1e21o67/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/site_libs/quarto-contrib/fontawesome6-0.1.0/1e21o67/fa-regular-400.woff2 -------------------------------------------------------------------------------- /_site/site_libs/quarto-contrib/fontawesome6-0.1.0/1e21o67/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/site_libs/quarto-contrib/fontawesome6-0.1.0/1e21o67/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /_site/site_libs/quarto-contrib/fontawesome6-0.1.0/1e21o67/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcdavasconcelos/digital-international-relations/main/_site/site_libs/quarto-contrib/fontawesome6-0.1.0/1e21o67/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /404.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: Page Not Found 3 | sidebar: false 4 | toc: false 5 | --- 6 | 7 | OH NO! The page you were looking for isn't here! 8 | 9 |

GIF by Steph Davidson.

10 | -------------------------------------------------------------------------------- /html/title-block.html: -------------------------------------------------------------------------------- 1 |
2 |

$title$

3 | $if(subtitle)$ 4 |

$subtitle$

5 | $endif$ 6 | 7 | $if(date)$ 8 |
9 |

$date-heading.content$ $date$

10 |
11 | $endif$ 12 |
13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | DS_Store 3 | *DS_Store 4 | .vscode/settings.json 5 | desktop.ini 6 | .texpadtmp/ 7 | .idea/ 8 | /*.rtf 9 | *.scriv 10 | /site 11 | .env.local 12 | .env.development.local 13 | .env.test.local 14 | .env.production.local 15 | npm-debug.log* 16 | yarn-debug.log* 17 | yarn-error.log* 18 | *Icon* 19 | *~$*.docx 20 | 21 | /.luarc.json 22 | 23 | /.quarto/ 24 | -------------------------------------------------------------------------------- /_site/site_libs/quarto-diagram/mermaid.css: -------------------------------------------------------------------------------- 1 | .mermaidTooltip { 2 | position: absolute; 3 | text-align: center; 4 | max-width: 200px; 5 | padding: 2px; 6 | font-family: "trebuchet ms", verdana, arial; 7 | font-size: 12px; 8 | background: #ffffde; 9 | border: 1px solid #aaaa33; 10 | border-radius: 2px; 11 | pointer-events: none; 12 | z-index: 1000; 13 | } 14 | -------------------------------------------------------------------------------- /md/.obsidian/core-plugins.json: -------------------------------------------------------------------------------- 1 | [ 2 | "file-explorer", 3 | "global-search", 4 | "switcher", 5 | "graph", 6 | "backlink", 7 | "canvas", 8 | "outgoing-link", 9 | "tag-pane", 10 | "page-preview", 11 | "daily-notes", 12 | "templates", 13 | "note-composer", 14 | "command-palette", 15 | "editor-status", 16 | "bookmarks", 17 | "outline", 18 | "word-count", 19 | "file-recovery" 20 | ] -------------------------------------------------------------------------------- /.quarto/xref/INDEX: -------------------------------------------------------------------------------- 1 | { 2 | "404.qmd": { 3 | "404.html": "b6c3c664" 4 | }, 5 | "index.qmd": { 6 | "index.html": "c7172a1d" 7 | }, 8 | "md/A/index.qmd": { 9 | "index.html": "1a50c6ec" 10 | }, 11 | "md/B/index.qmd": { 12 | "index.html": "957f7ffb" 13 | }, 14 | "md/C/index.qmd": { 15 | "index.html": "bdc691d7" 16 | }, 17 | "md/about/index.qmd": { 18 | "index.html": "206b6344" 19 | }, 20 | "md/intro/index.qmd": { 21 | "index.html": "09f8c7ff" 22 | } 23 | } -------------------------------------------------------------------------------- /md/.obsidian/plugins/qmd-as-md-obsidian/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "qmd-as-md-obsidian", 3 | "version": "0.0.2", 4 | "description": "This plugin provides an initial support for viewing files with .qmd extension. QMD files contain a combination of markdown and executable code cells and are a format supported by Quarto open source publishing system.", 5 | "name": "qmd as md", 6 | "author": "Daniel Borek", 7 | "authorUrl": "https://github.com/danieltomasz", 8 | "isDesktopOnly": false, 9 | "minAppVersion": "0.10.12" 10 | } 11 | -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/css/latex-fontsize.css: -------------------------------------------------------------------------------- 1 | .fa-tiny { 2 | font-size: 0.5em; 3 | } 4 | .fa-scriptsize { 5 | font-size: 0.7em; 6 | } 7 | .fa-footnotesize { 8 | font-size: 0.8em; 9 | } 10 | .fa-small { 11 | font-size: 0.9em; 12 | } 13 | .fa-normalsize { 14 | font-size: 1em; 15 | } 16 | .fa-large { 17 | font-size: 1.2em; 18 | } 19 | .fa-Large { 20 | font-size: 1.5em; 21 | } 22 | .fa-LARGE { 23 | font-size: 1.75em; 24 | } 25 | .fa-huge { 26 | font-size: 2em; 27 | } 28 | .fa-Huge { 29 | font-size: 2.5em; 30 | } 31 | -------------------------------------------------------------------------------- /_site/site_libs/quarto-contrib/fontawesome6-0.1.0/latex-fontsize.css: -------------------------------------------------------------------------------- 1 | .fa-tiny { 2 | font-size: 0.5em; 3 | } 4 | .fa-scriptsize { 5 | font-size: 0.7em; 6 | } 7 | .fa-footnotesize { 8 | font-size: 0.8em; 9 | } 10 | .fa-small { 11 | font-size: 0.9em; 12 | } 13 | .fa-normalsize { 14 | font-size: 1em; 15 | } 16 | .fa-large { 17 | font-size: 1.2em; 18 | } 19 | .fa-Large { 20 | font-size: 1.5em; 21 | } 22 | .fa-LARGE { 23 | font-size: 1.75em; 24 | } 25 | .fa-huge { 26 | font-size: 2em; 27 | } 28 | .fa-Huge { 29 | font-size: 2.5em; 30 | } 31 | -------------------------------------------------------------------------------- /helpers/remove-nav.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /md/.obsidian/core-plugins-migration.json: -------------------------------------------------------------------------------- 1 | { 2 | "file-explorer": true, 3 | "global-search": true, 4 | "switcher": true, 5 | "graph": true, 6 | "backlink": true, 7 | "canvas": true, 8 | "outgoing-link": true, 9 | "tag-pane": true, 10 | "page-preview": true, 11 | "daily-notes": true, 12 | "templates": true, 13 | "note-composer": true, 14 | "command-palette": true, 15 | "slash-command": false, 16 | "editor-status": true, 17 | "bookmarks": true, 18 | "markdown-importer": false, 19 | "zk-prefixer": false, 20 | "random-note": false, 21 | "outline": true, 22 | "word-count": true, 23 | "slides": false, 24 | "audio-recorder": false, 25 | "workspaces": false, 26 | "file-recovery": true, 27 | "publish": false, 28 | "sync": false 29 | } -------------------------------------------------------------------------------- /html/home/title-block.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

4 | $title$ 5 |

6 |
7 |

$subtitle$

8 |
9 |
10 |

$details$

11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | -------------------------------------------------------------------------------- /.luarc.json: -------------------------------------------------------------------------------- 1 | { 2 | "Generator": [ 3 | "Quarto", 4 | "This file provides type information for Lua completion and diagnostics.", 5 | "Quarto will automatically update this file to reflect the current path", 6 | "of your Quarto installation, and the file will also be added to .gitignore", 7 | "since it points to the absolute path of Quarto on the local system.", 8 | "Remove the 'Generator' key to manage this file's contents manually." 9 | ], 10 | "Lua.runtime.version": "Lua 5.3", 11 | "Lua.workspace.checkThirdParty": false, 12 | "Lua.workspace.library": [ 13 | "/Applications/quarto/share/lua-types" 14 | ], 15 | "Lua.runtime.plugin": "/Applications/quarto/share/lua-plugin/plugin.lua", 16 | "Lua.completion.showWord": "Disable", 17 | "Lua.completion.keywordSnippet": "Both", 18 | "Lua.diagnostics.disable": [ 19 | "lowercase-global", 20 | "trailing-space" 21 | ] 22 | } -------------------------------------------------------------------------------- /css/syllabus.css: -------------------------------------------------------------------------------- 1 | table.syllabus td { 2 | vertical-align: text-top; 3 | border: 0; 4 | } 5 | 6 | table.syllabus tbody tr.even{ 7 | padding: 0.5rem 0.5rem; 8 | background-color: transparent; 9 | box-shadow: inset 0 0 0 9999px transparent; 10 | } 11 | 12 | table.syllabus tbody tr.even:last-child { 13 | border-bottom-width: 1px; 14 | } 15 | 16 | table.syllabus tr.odd { 17 | background-color: var(--bs-blue); 18 | color: var(--bs-white); 19 | } 20 | 21 | details.special { 22 | border: 1px solid #aaa; 23 | border-radius: 4px; 24 | padding: .5em .5em 0; 25 | } 26 | 27 | details.special summary { 28 | font-weight: bold; 29 | margin: -.5em -.5em 0; 30 | padding: .5em; 31 | } 32 | 33 | details.special[open] { 34 | padding: .5em; 35 | } 36 | 37 | details.special[open] summary { 38 | border-bottom: 1px solid #aaa; 39 | margin-bottom: .5em; 40 | } -------------------------------------------------------------------------------- /_variables.yml: -------------------------------------------------------------------------------- 1 | author: Bernardo Vasconcelos 2 | 3 | instructor: 4 | name: Bernardo Vasconcelos 5 | name_no_title: Bernardo Vasconcelos 6 | email: bernardovasconcelos@gmail.com 7 | url: "https://github.com/bcdavasconcelos" 8 | github: bcdavasconcelos 9 | office: Dr. em Filosofia pela UFMG 10 | contact_policy: >- 11 | E-mail is the best way to get in contact with me. I will try to respond to all course-related e-mails within 24 hours (*really*), but also remember that life can be busy and chaotic for everyone (including me!), so if I don't respond right away, don't worry! 12 | appointment_url: https://calendly.com/andrewheiss/ 13 | 14 | course: 15 | days: "Segunda" 16 | time: "15:20" 17 | location: "Auditório do Prédio 9" 18 | dates: "22 de Maio, 2023" 19 | github: "https://www.github.com/andrewheiss/compasp23.classes.andrewheiss.com" 20 | url: "https://compasp23.classes.andrewheiss.com" 21 | copyright_year: "2023" 22 | 23 | -------------------------------------------------------------------------------- /_site/site_libs/quarto-html/tippy.css: -------------------------------------------------------------------------------- 1 | .tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1} -------------------------------------------------------------------------------- /_extensions/schochastics/academicons/assets/css/size.css: -------------------------------------------------------------------------------- 1 | .ai-tiny { 2 | font-size: 0.5em; 3 | } 4 | 5 | .ai-scriptsize { 6 | font-size: 0.7em; 7 | } 8 | 9 | .ai-footnotesize { 10 | font-size: 0.8em; 11 | } 12 | 13 | .ai-small { 14 | font-size: 0.9em; 15 | } 16 | 17 | .ai-normalsize { 18 | font-size: 1em; 19 | } 20 | 21 | .ai-large { 22 | font-size: 1.2em; 23 | } 24 | 25 | .ai-Large { 26 | font-size: 1.5em; 27 | } 28 | 29 | .ai-LARGE { 30 | font-size: 1.75em; 31 | } 32 | 33 | .ai-huge { 34 | font-size: 2em; 35 | } 36 | 37 | .ai-Huge { 38 | font-size: 2.5em; 39 | } 40 | 41 | .ai-1x { 42 | font-size: 1em; 43 | } 44 | 45 | .ai-2x { 46 | font-size: 2em; 47 | } 48 | 49 | .ai-3x { 50 | font-size: 3em; 51 | } 52 | 53 | .ai-4x { 54 | font-size: 4em; 55 | } 56 | 57 | .ai-5x { 58 | font-size: 5em; 59 | } 60 | 61 | .ai-6x { 62 | font-size: 6em; 63 | } 64 | 65 | .ai-7x { 66 | font-size: 7em; 67 | } 68 | 69 | .ai-8x { 70 | font-size: 8em; 71 | } 72 | 73 | .ai-9x { 74 | font-size: 9em; 75 | } 76 | 77 | .ai-10x { 78 | font-size: 10em; 79 | } 80 | 81 | .ai-2xs { 82 | font-size: 0.625em; 83 | line-height: 0.1em; 84 | vertical-align: 0.225em; 85 | } 86 | 87 | .ai-xs { 88 | font-size: 0.75em; 89 | line-height: 0.08333em; 90 | vertical-align: 0.125em; 91 | } 92 | 93 | .ai-sm { 94 | font-size: 0.875em; 95 | line-height: 0.07143em; 96 | vertical-align: 0.05357em; 97 | } 98 | 99 | .ai-lg { 100 | font-size: 1.25em; 101 | line-height: 0.05em; 102 | vertical-align: -0.075em; 103 | } 104 | 105 | .ai-xl { 106 | font-size: 1.5em; 107 | line-height: 0.04167em; 108 | vertical-align: -0.125em; 109 | } 110 | 111 | .ai-2xl { 112 | font-size: 2em; 113 | line-height: 0.03125em; 114 | vertical-align: -0.1875em; 115 | } 116 | -------------------------------------------------------------------------------- /css/custom_style.css: -------------------------------------------------------------------------------- 1 | 2 | .navbar-dark .navbar-brand { 3 | color: #ffffff; 4 | } 5 | 6 | div.csl-entry { 7 | margin-top: 1rem; 8 | } 9 | 10 | div.csl-entry a::before { 11 | content: "\a"; 12 | white-space: pre; 13 | } 14 | 15 | div.csl-entry a { 16 | color: var(--bs-indigo); 17 | } 18 | 19 | /* CSS */ 20 | .button-61 { 21 | align-items: center; 22 | appearance: none; 23 | border-radius: 4px; 24 | border-style: none; 25 | box-shadow: rgba(0, 0, 0, .2) 0 3px 1px -2px,rgba(0, 0, 0, .14) 0 2px 2px 0,rgba(0, 0, 0, .12) 0 1px 5px 0; 26 | box-sizing: border-box; 27 | color: var(--bs-white); 28 | cursor: pointer; 29 | display: inline-flex; 30 | font-family: Roboto,sans-serif; 31 | font-size: .875rem; 32 | font-weight: 500; 33 | height: 36px; 34 | justify-content: center; 35 | letter-spacing: .0892857em; 36 | line-height: normal; 37 | min-width: 64px; 38 | outline: none; 39 | overflow: visible; 40 | padding: 0 16px; 41 | position: relative; 42 | text-align: center; 43 | text-decoration: none; 44 | text-transform: uppercase; 45 | transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1); 46 | user-select: none; 47 | -webkit-user-select: none; 48 | touch-action: manipulation; 49 | vertical-align: middle; 50 | will-change: transform,opacity; 51 | } 52 | 53 | .button-61:hover { 54 | box-shadow: rgba(0, 0, 0, .2) 0 2px 4px -1px, rgba(0, 0, 0, .14) 0 4px 5px 0, rgba(0, 0, 0, .12) 0 1px 10px 0; 55 | } 56 | 57 | .button-61:disabled { 58 | background-color: rgba(0, 0, 0, .12); 59 | box-shadow: rgba(0, 0, 0, .2) 0 0 0 0, rgba(0, 0, 0, .14) 0 0 0 0, rgba(0, 0, 0, .12) 0 0 0 0; 60 | color: rgba(0, 0, 0, .37); 61 | cursor: default; 62 | pointer-events: none; 63 | } 64 | 65 | .button-61:not(:disabled) { 66 | background-color: var(--bs-blue); 67 | } 68 | 69 | .button-61:focus { 70 | box-shadow: rgba(0, 0, 0, .2) 0 2px 4px -1px, rgba(0, 0, 0, .14) 0 4px 5px 0, rgba(0, 0, 0, .12) 0 1px 10px 0; 71 | } 72 | 73 | .button-61:active { 74 | box-shadow: rgba(0, 0, 0, .2) 0 5px 5px -3px, rgba(0, 0, 0, .14) 0 8px 10px 1px, rgba(0, 0, 0, .12) 0 3px 14px 2px; 75 | background: var(--bs-blue); 76 | } 77 | -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/fontawesome.lua: -------------------------------------------------------------------------------- 1 | local function ensureLatexDeps() 2 | quarto.doc.use_latex_package("fontawesome5") 3 | end 4 | 5 | local function ensureHtmlDeps() 6 | quarto.doc.add_html_dependency({ 7 | name = 'fontawesome6', 8 | version = '0.1.0', 9 | stylesheets = {'assets/css/all.css', 'assets/css/latex-fontsize.css'} 10 | }) 11 | end 12 | 13 | local function isEmpty(s) 14 | return s == nil or s == '' 15 | end 16 | 17 | local function isValidSize(size) 18 | local validSizes = { 19 | "tiny", 20 | "scriptsize", 21 | "footnotesize", 22 | "small", 23 | "normalsize", 24 | "large", 25 | "Large", 26 | "LARGE", 27 | "huge", 28 | "Huge" 29 | } 30 | for _, v in ipairs(validSizes) do 31 | if v == size then 32 | return size 33 | end 34 | end 35 | return "" 36 | end 37 | 38 | return { 39 | ["fa"] = function(args, kwargs) 40 | 41 | local group = "solid" 42 | local icon = pandoc.utils.stringify(args[1]) 43 | if #args > 1 then 44 | group = icon 45 | icon = pandoc.utils.stringify(args[2]) 46 | end 47 | 48 | local title = pandoc.utils.stringify(kwargs["title"]) 49 | if not isEmpty(title) then 50 | title = " title=\"" .. title .. "\"" 51 | end 52 | 53 | local label = pandoc.utils.stringify(kwargs["label"]) 54 | if isEmpty(label) then 55 | label = " aria-label=\"" .. icon .. "\"" 56 | else 57 | label = " aria-label=\"" .. label .. "\"" 58 | end 59 | 60 | local size = pandoc.utils.stringify(kwargs["size"]) 61 | 62 | -- detect html (excluding epub which won't handle fa) 63 | if quarto.doc.is_format("html:js") then 64 | ensureHtmlDeps() 65 | if not isEmpty(size) then 66 | size = " fa-" .. size 67 | end 68 | return pandoc.RawInline( 69 | 'html', 70 | "" 71 | ) 72 | -- detect pdf / beamer / latex / etc 73 | elseif quarto.doc.is_format("pdf") then 74 | ensureLatexDeps() 75 | if isEmpty(isValidSize(size)) then 76 | return pandoc.RawInline('tex', "\\faIcon{" .. icon .. "}") 77 | else 78 | return pandoc.RawInline('tex', "{\\" .. size .. "\\faIcon{" .. icon .. "}}") 79 | end 80 | else 81 | return pandoc.Null() 82 | end 83 | end 84 | } 85 | -------------------------------------------------------------------------------- /_extensions/schochastics/academicons/academicons.lua: -------------------------------------------------------------------------------- 1 | -- function ensureLatexDeps() 2 | -- quarto.doc.useLatexPackage("academicons") 3 | -- end 4 | 5 | local function ensureHtmlDeps() 6 | quarto.doc.addHtmlDependency({ 7 | name = "academicons", 8 | version = "1.9.2", 9 | stylesheets = {"assets/css/all.css", "assets/css/size.css"} 10 | }) 11 | end 12 | 13 | local function isEmpty(s) 14 | return s == nil or s == '' 15 | end 16 | 17 | local function isEmpty(color) 18 | return color == "black" 19 | end 20 | 21 | local function isValidSize(size) 22 | local validSizes = { 23 | "tiny", "scriptsize", "footnotesize", "small", "normalsize", 24 | "large", "Large", "LARGE", "huge", "Huge", 25 | "1x", "2x", "3x", "4x", "5x", "6x", "7x", "8x", "9x", "10x", 26 | "2xs", "xs", "sm", "lg", "xl", "2xl" 27 | } 28 | for _, v in ipairs(validSizes) do 29 | if v == size then 30 | return " ai-" .. size 31 | end 32 | end 33 | return "" 34 | end 35 | 36 | return { 37 | ["ai"] = function(args, kwargs) 38 | 39 | local group = "" 40 | local icon = pandoc.utils.stringify(args[1]) 41 | if #args > 1 then 42 | group = icon 43 | icon = pandoc.utils.stringify(args[2]) 44 | end 45 | 46 | local size = isValidSize(pandoc.utils.stringify(kwargs["size"])) 47 | 48 | local color = pandoc.utils.stringify(kwargs["color"]) 49 | if not isEmpty(color) then 50 | color = " style=\"color:" .. color .. "\"" 51 | end 52 | 53 | local title = pandoc.utils.stringify(kwargs["title"]) 54 | if not isEmpty(title) then 55 | title = " title=\"" .. title .. "\"" 56 | end 57 | 58 | -- detect html (excluding epub) 59 | if quarto.doc.isFormat("html:js") then 60 | ensureHtmlDeps() 61 | if isEmpty(size) then 62 | return pandoc.RawInline( 63 | 'html', 64 | "" 65 | ) 66 | else 67 | return pandoc.RawInline( 68 | 'html', 69 | "" 70 | ) 71 | end 72 | -- detect pdf / beamer / latex / etc 73 | -- elseif quarto.doc.isFormat("pdf") then 74 | -- ensureLatexDeps() 75 | -- return pandoc.RawInline('tex', "\\aiIcon{" .. icon .. "}") 76 | else 77 | return pandoc.Null() 78 | end 79 | 80 | end 81 | } 82 | -------------------------------------------------------------------------------- /index.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "RI Digitais" 3 | subtitle: "Um apanhado dos recursos digitais de pesquisa em Relações Internacionais" 4 | details: | 5 | PUC Minas Poços de Caldas • Maio 2023
Curso de Relações Internacionais da Pontifícia Universidade Católica de Minas Gerais 6 | sidebar: false 7 | toc: false 8 | page-layout: full 9 | format: 10 | html: 11 | template-partials: 12 | - html/home/title-block.html 13 | course-logo: /files/course-icon.png 14 | --- 15 | 16 | 17 | 18 | ::: {.home} 19 | :::::: {.grid .course-details} 20 | ::::::::: {.g-col-12 .g-col-sm-6 .g-col-md-4} 21 | ### Palestrante 22 | 23 | - {{< fa user >}}   [{{< var instructor.name >}}]({{< var instructor.url >}}) 24 | 25 | - {{< fa envelope >}}   {{< var instructor.email >}} 26 | ::::::::: 27 | ::::::::: {.g-col-12 .g-col-sm-6 .g-col-md-4} 28 | :::::::::::: {.g-col-6} 29 | ### Horário 30 | 31 | - {{< fa calendar-alt >}}   {{< var course.dates >}} 32 | - {{< fa clock >}}   {{< var course.time >}} 33 | - {{< fa location-dot >}}   {{< var course.location >}} 34 | :::::::::::: 35 | :::::::::::: {.g-col-6} 36 | 37 | :::::::::::: 38 | ::::::::: 39 | ::::::::: {.g-col-12 .g-col-sm-6 .g-col-md-4} 40 | :::::::::::: {.g-col-6} 41 | > ’Chrōmetha gar politeia ou zēlousē tous tōn pelas nomous, paradeigma de mallon autoi ontes tisin ē mimoumenoi heterous. kai onoma men dia to mē es oligous all’ es pleionas oikein dēmokratia keklētai^[’Χρώμεθα γὰρ πολιτείᾳ οὐ ζηλούσῃ τοὺς τῶν πέλας νόμους, παράδειγμα δὲ μᾶλλον αὐτοὶ ὄντες τισὶν ἢ μιμούμενοι ἑτέρους. καὶ ὄνομα μὲν διὰ τὸ μὴ ἐς ὀλίγους ἀλλ’ ἐς πλείονας οἰκεῖν δημοκρατία κέκληται·]\ 42 | > Tucídides, *Historiae* II 36 [-@ThuHist]^[Trecho da oração fúnebre proferida por Péricles, em 431 a.C., por ocasião do fim do primeiro ano da guerra do Peloponeso, recontada pelo historiador ateniense Tucídides. Péricles foi um eminente político que liderou a democracia ateniense em seu período áureo e que proferiu este discurso com o propósito de elevar a moral da população, exaltando os valores do modelo institucional ateniense em detrimento ao modelo militarista e oligárquico espartano.] 43 | :::::::::::: 44 | :::::::::::: {.g-col-6} 45 | > Vivemos sob uma forma de governo que não se baseia nas instituições de nossos vizinhos; ao contrário, servimos de modelo a alguns ao invés de imitar outros. Seu nome, como tudo depende não de poucos mas da maioria, é democracia. 46 | :::::::::::: 47 | ::::::::: 48 | :::::: 49 | ::: 50 | 51 | 52 | 53 | --- 54 | references: 55 | - id: ThuHist 56 | abstract: |- 57 | Tucídides 58 | 2 vols 59 | author: 60 | - family: Thucydides 61 | given: '' 62 | call-number: '0003.001' 63 | citation-key: ThuHist 64 | container-title: Thucydidis Historiae 65 | editor: 66 | - family: Jones 67 | given: H. S. 68 | event-place: Oxford 69 | issued: 70 | - year: 1942 71 | publisher: Clarendon 72 | publisher-place: Oxford 73 | title: Historiae 74 | title-short: Thu 75 | type: chapter 76 | --- 77 | -------------------------------------------------------------------------------- /_site/site_libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- 1 | /* quarto syntax highlight colors */ 2 | :root { 3 | --quarto-hl-al-color: #ff5555; 4 | --quarto-hl-an-color: #75715e; 5 | --quarto-hl-at-color: #f92672; 6 | --quarto-hl-bn-color: #ae81ff; 7 | --quarto-hl-bu-color: #66D9EF; 8 | --quarto-hl-ch-color: #e6db74; 9 | --quarto-hl-co-color: #75715e; 10 | --quarto-hl-cv-color: #75715e; 11 | --quarto-hl-cn-color: #ae81ff; 12 | --quarto-hl-cf-color: #f92672; 13 | --quarto-hl-dt-color: #66d9ef; 14 | --quarto-hl-dv-color: #ae81ff; 15 | --quarto-hl-do-color: #75715e; 16 | --quarto-hl-er-color: #ff5555; 17 | --quarto-hl-ex-color: #a6e22e; 18 | --quarto-hl-fl-color: #ae81ff; 19 | --quarto-hl-fu-color: #a6e22e; 20 | --quarto-hl-im-color: #f92672; 21 | --quarto-hl-in-color: #f1fa8c; 22 | --quarto-hl-kw-color: #f92672; 23 | --quarto-hl-op-color: #f8f8f2; 24 | --quarto-hl-pp-color: #f92672; 25 | --quarto-hl-re-color: #75715e; 26 | --quarto-hl-sc-color: #ae81ff; 27 | --quarto-hl-ss-color: #e6db74; 28 | --quarto-hl-st-color: #e6db74; 29 | --quarto-hl-va-color: #f8f8f2; 30 | --quarto-hl-vs-color: #e6db74; 31 | --quarto-hl-wa-color: #ff5555; 32 | } 33 | 34 | /* other quarto variables */ 35 | :root { 36 | --quarto-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 37 | } 38 | 39 | code span.al { 40 | font-weight: bold; 41 | color: #ff5555; 42 | } 43 | 44 | code span.an { 45 | color: #75715e; 46 | } 47 | 48 | code span.at { 49 | color: #f92672; 50 | } 51 | 52 | code span.bn { 53 | color: #ae81ff; 54 | } 55 | 56 | code span.bu { 57 | color: #66D9EF; 58 | } 59 | 60 | code span.ch { 61 | color: #e6db74; 62 | } 63 | 64 | code span.co { 65 | color: #75715e; 66 | } 67 | 68 | code span.cv { 69 | color: #75715e; 70 | } 71 | 72 | code span.cn { 73 | color: #ae81ff; 74 | } 75 | 76 | code span.cf { 77 | color: #f92672; 78 | } 79 | 80 | code span.dt { 81 | font-style: italic; 82 | color: #66d9ef; 83 | } 84 | 85 | code span.dv { 86 | color: #ae81ff; 87 | } 88 | 89 | code span.do { 90 | color: #75715e; 91 | } 92 | 93 | code span.er { 94 | color: #ff5555; 95 | text-decoration: underline; 96 | } 97 | 98 | code span.ex { 99 | font-weight: bold; 100 | color: #a6e22e; 101 | } 102 | 103 | code span.fl { 104 | color: #ae81ff; 105 | } 106 | 107 | code span.fu { 108 | color: #a6e22e; 109 | } 110 | 111 | code span.im { 112 | color: #f92672; 113 | } 114 | 115 | code span.in { 116 | color: #f1fa8c; 117 | } 118 | 119 | code span.kw { 120 | color: #f92672; 121 | } 122 | 123 | pre > code.sourceCode > span { 124 | color: #f8f8f2; 125 | } 126 | 127 | code span { 128 | color: #f8f8f2; 129 | } 130 | 131 | code.sourceCode > span { 132 | color: #f8f8f2; 133 | } 134 | 135 | div.sourceCode, 136 | div.sourceCode pre.sourceCode { 137 | color: #f8f8f2; 138 | } 139 | 140 | code span.op { 141 | color: #f8f8f2; 142 | } 143 | 144 | code span.pp { 145 | color: #f92672; 146 | } 147 | 148 | code span.re { 149 | color: #75715e; 150 | } 151 | 152 | code span.sc { 153 | color: #ae81ff; 154 | } 155 | 156 | code span.ss { 157 | color: #e6db74; 158 | } 159 | 160 | code span.st { 161 | color: #e6db74; 162 | } 163 | 164 | code span.va { 165 | color: #f8f8f2; 166 | } 167 | 168 | code span.vs { 169 | color: #e6db74; 170 | } 171 | 172 | code span.wa { 173 | color: #ff5555; 174 | } 175 | 176 | .prevent-inlining { 177 | content: " .slides > section > section { 110 | transform-style: flat; 111 | } 112 | 113 | /* @jonjoncardoso: The following is a trick I created to override mis-alignment of slides with multiple columns 114 | Similar to what was reported here: https://github.com/quarto-dev/quarto-cli/issues/892 */ 115 | 116 | .reveal .columns>.column>:not(ul,ol) { 117 | margin-left: 0; 118 | margin-right: 0; 119 | } 120 | 121 | .reveal .columns>.column:last-child>:not(ul,ol) { 122 | margin-right: 0; 123 | margin-left: 0; 124 | } 125 | 126 | .reveal .callout.callout-captioned .callout-icon::before { 127 | margin-top: 0.3rem; 128 | } 129 | 130 | .reveal .callout.callout-style-simple .callout-icon::before { 131 | margin-top: 0.6rem; 132 | } 133 | 134 | .reveal .callout.callout-style-default .callout-icon::before, .reveal .callout.callout-style-simple .callout-icon::before { 135 | background-size: 1.5rem 1.5rem; 136 | } 137 | 138 | .reveal div.sourceCode{ 139 | font-size: 1.4rem; 140 | } 141 | 142 | .reveal div.cell-output pre { 143 | font-size: 0.9rem; 144 | margin-top: 0.5rem; 145 | margin-bottom: 0.5rem; 146 | } 147 | 148 | /* .reveal section#title-slide h1.title{ 149 | margin-left:15%; 150 | margin-right:15%; 151 | } */ 152 | 153 | details { 154 | margin-bottom: 1em; 155 | font-size: 0.5em; 156 | } -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- 1 | project: 2 | type: website 3 | render: 4 | - "*.qmd" 5 | resources: 6 | - "files/" 7 | preview: 8 | port: 3333 9 | 10 | execute: 11 | freeze: auto # Re-render only when source changes 12 | 13 | bibliography: files/bib/readings.bib 14 | csl: files/bib/chicago-author-date.csl 15 | description-meta: "Um apanhado dos recursos digitais de pesquisa em Relações Internacionais" 16 | 17 | website: 18 | title: "RI Digitais" 19 | # site-url: "https://compasp23.classes.andrewheiss.com" 20 | 21 | favicon: "/files/favicon-512.png" 22 | 23 | open-graph: 24 | image: "/files/social-image-sp23.png" 25 | locale: pt_BR 26 | 27 | navbar: 28 | pinned: true 29 | background: "#341648" 30 | right: 31 | - text: "Introdução" 32 | file: md/intro/index.qmd 33 | - text: "A" 34 | file: md/A/index.qmd 35 | - text: "B" 36 | file: md/B/index.qmd 37 | - text: "C" 38 | file: md/C/index.qmd 39 | 40 | sidebar: 41 | - title: "Classes" 42 | style: "docked" 43 | search: false 44 | background: light 45 | # contents: 46 | # - section: "Overview" 47 | # contents: 48 | # - C/index.qmd 49 | # - section: "Classes" 50 | # contents: 51 | # - section: "1–4: Foundations of public management and governance" 52 | # contents: 53 | # - text: "1: Introduction to public administration and management" 54 | # file: C/01-class.qmd 55 | # - text: "2: Rediscovery of bureaucracy and good governance" 56 | # file: C/02-class.qmd 57 | # - text: "3: Quality of government and governance outcomes" 58 | # file: C/03-class.qmd 59 | # - text: "4: Institutions" 60 | # file: C/04-class.qmd 61 | # - section: "5–9: Comparative bureaucracy and civil society" 62 | # contents: 63 | # - text: "5: Bureaucracy and governance outcomes" 64 | # file: C/05-class.qmd 65 | # - text: "6: Bureaucracy and bureaucratic behavior" 66 | # file: C/06-class.qmd 67 | # - text: "7: Civil society and good governnace" 68 | # file: C/07-class.qmd 69 | # - text: "8: Civil society across countries" 70 | # file: C/08-class.qmd 71 | # - text: "~~9: Representative bureaucracy and philanthropy~~" 72 | # file: C/09-class.qmd 73 | # - section: "10–14: Regional deep dives" 74 | # contents: 75 | # - text: "10: The OECD" 76 | # file: C/10-class.qmd 77 | # - text: "11: Latin America" 78 | # file: C/11-class.qmd 79 | # - text: "12: Africa" 80 | # file: C/12-class.qmd 81 | # - text: "13: Middle East and North Africa" 82 | # file: C/13-class.qmd 83 | # - text: "14: Asia" 84 | # file: C/14-class.qmd 85 | 86 | - title: "Assignments" 87 | contents: 88 | - section: "Overview" 89 | # contents: 90 | # - D/index.qmd 91 | # - section: "Preparation" 92 | # contents: 93 | # - D/reading-report.qmd 94 | # - D/presentation-discussion.qmd 95 | # - section: "Essays" 96 | # contents: 97 | # - D/data-exploration.qmd 98 | # - D/theory-in-real-life.qmd 99 | # - section: "Final project" 100 | # contents: 101 | # - D/policy-brief.qmd 102 | 103 | page-footer: 104 | left: | 105 | Content {{< fa brands creative-commons >}} {{< var course.copyright_year >}} by [{{< var instructor.name_no_title >}}]({{< var instructor.url >}}) & [Andrew Heiss](https://www.andrewheiss.com)
106 | All content licensed under a {{< fa brands creative-commons >}} 107 | {{< fa brands creative-commons-by >}} {{< fa brands creative-commons-nc >}} 108 | [Creative Commons Attribution-NonCommercial 4.0 International license (CC BY-NC 4.0)](https://creativecommons.org/licenses/by-nc/4.0/) 109 | right: | 110 | Made with {{< fa brands r-project >}} and [Quarto](https://quarto.org/)
111 | [View the source at {{< fa brands github >}} GitHub]({{< var course.github >}}) 112 | 113 | format: 114 | html: 115 | theme: 116 | - litera 117 | - html/custom.scss 118 | toc: true 119 | highlight-style: monokai 120 | -------------------------------------------------------------------------------- /md/.obsidian/workspace.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": { 3 | "id": "78c0a92f35a23b20", 4 | "type": "split", 5 | "children": [ 6 | { 7 | "id": "939808faf11c04db", 8 | "type": "tabs", 9 | "children": [ 10 | { 11 | "id": "1348065258b46576", 12 | "type": "leaf", 13 | "state": { 14 | "type": "empty", 15 | "state": {} 16 | } 17 | }, 18 | { 19 | "id": "b4ca93e892f4acd1", 20 | "type": "leaf", 21 | "state": { 22 | "type": "markdown", 23 | "state": { 24 | "file": "B/index.qmd", 25 | "mode": "source", 26 | "source": false 27 | } 28 | } 29 | } 30 | ], 31 | "currentTab": 1 32 | } 33 | ], 34 | "direction": "vertical" 35 | }, 36 | "left": { 37 | "id": "00214f3aad9bb302", 38 | "type": "split", 39 | "children": [ 40 | { 41 | "id": "d93bb38177f2b53a", 42 | "type": "tabs", 43 | "children": [ 44 | { 45 | "id": "d4a846c8fc99df80", 46 | "type": "leaf", 47 | "state": { 48 | "type": "file-explorer", 49 | "state": { 50 | "sortOrder": "alphabetical" 51 | } 52 | } 53 | }, 54 | { 55 | "id": "c49538ea240c4954", 56 | "type": "leaf", 57 | "state": { 58 | "type": "search", 59 | "state": { 60 | "query": "", 61 | "matchingCase": false, 62 | "explainSearch": false, 63 | "collapseAll": false, 64 | "extraContext": false, 65 | "sortOrder": "alphabetical" 66 | } 67 | } 68 | }, 69 | { 70 | "id": "cfadb82029d52ab7", 71 | "type": "leaf", 72 | "state": { 73 | "type": "bookmarks", 74 | "state": {} 75 | } 76 | } 77 | ] 78 | } 79 | ], 80 | "direction": "horizontal", 81 | "width": 300 82 | }, 83 | "right": { 84 | "id": "0790d8937aaf3c40", 85 | "type": "split", 86 | "children": [ 87 | { 88 | "id": "5fb96702b58af7f1", 89 | "type": "tabs", 90 | "children": [ 91 | { 92 | "id": "c2e9247383cf7a4b", 93 | "type": "leaf", 94 | "state": { 95 | "type": "backlink", 96 | "state": { 97 | "file": "B/index.qmd", 98 | "collapseAll": false, 99 | "extraContext": false, 100 | "sortOrder": "alphabetical", 101 | "showSearch": false, 102 | "searchQuery": "", 103 | "backlinkCollapsed": false, 104 | "unlinkedCollapsed": true 105 | } 106 | } 107 | }, 108 | { 109 | "id": "0f6b9d2b56d3b1e4", 110 | "type": "leaf", 111 | "state": { 112 | "type": "outgoing-link", 113 | "state": { 114 | "file": "B/index.qmd", 115 | "linksCollapsed": false, 116 | "unlinkedCollapsed": true 117 | } 118 | } 119 | }, 120 | { 121 | "id": "6812d09ac8574571", 122 | "type": "leaf", 123 | "state": { 124 | "type": "tag", 125 | "state": { 126 | "sortOrder": "frequency", 127 | "useHierarchy": true 128 | } 129 | } 130 | }, 131 | { 132 | "id": "0b1b59067c0b0ed2", 133 | "type": "leaf", 134 | "state": { 135 | "type": "outline", 136 | "state": { 137 | "file": "B/index.qmd" 138 | } 139 | } 140 | } 141 | ] 142 | } 143 | ], 144 | "direction": "horizontal", 145 | "width": 300 146 | }, 147 | "left-ribbon": { 148 | "hiddenItems": { 149 | "switcher:Open quick switcher": false, 150 | "graph:Open graph view": false, 151 | "canvas:Create new canvas": false, 152 | "daily-notes:Open today's daily note": false, 153 | "templates:Insert template": false, 154 | "command-palette:Open command palette": false 155 | } 156 | }, 157 | "active": "b4ca93e892f4acd1", 158 | "lastOpenFiles": [ 159 | "B/index.qmd", 160 | "about/index.qmd", 161 | "A/index.qmd" 162 | ] 163 | } -------------------------------------------------------------------------------- /_site/site_libs/quarto-html/anchor.min.js: -------------------------------------------------------------------------------- 1 | // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat 2 | // 3 | // AnchorJS - v4.3.1 - 2021-04-17 4 | // https://www.bryanbraun.com/anchorjs/ 5 | // Copyright (c) 2021 Bryan Braun; Licensed MIT 6 | // 7 | // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat 8 | !function(A,e){"use strict";"function"==typeof define&&define.amd?define([],e):"object"==typeof module&&module.exports?module.exports=e():(A.AnchorJS=e(),A.anchors=new A.AnchorJS)}(this,function(){"use strict";return function(A){function d(A){A.icon=Object.prototype.hasOwnProperty.call(A,"icon")?A.icon:"",A.visible=Object.prototype.hasOwnProperty.call(A,"visible")?A.visible:"hover",A.placement=Object.prototype.hasOwnProperty.call(A,"placement")?A.placement:"right",A.ariaLabel=Object.prototype.hasOwnProperty.call(A,"ariaLabel")?A.ariaLabel:"Anchor",A.class=Object.prototype.hasOwnProperty.call(A,"class")?A.class:"",A.base=Object.prototype.hasOwnProperty.call(A,"base")?A.base:"",A.truncate=Object.prototype.hasOwnProperty.call(A,"truncate")?Math.floor(A.truncate):64,A.titleText=Object.prototype.hasOwnProperty.call(A,"titleText")?A.titleText:""}function w(A){var e;if("string"==typeof A||A instanceof String)e=[].slice.call(document.querySelectorAll(A));else{if(!(Array.isArray(A)||A instanceof NodeList))throw new TypeError("The selector provided to AnchorJS was invalid.");e=[].slice.call(A)}return e}this.options=A||{},this.elements=[],d(this.options),this.isTouchDevice=function(){return Boolean("ontouchstart"in window||window.TouchEvent||window.DocumentTouch&&document instanceof DocumentTouch)},this.add=function(A){var e,t,o,i,n,s,a,c,r,l,h,u,p=[];if(d(this.options),"touch"===(l=this.options.visible)&&(l=this.isTouchDevice()?"always":"hover"),0===(e=w(A=A||"h2, h3, h4, h5, h6")).length)return this;for(null===document.head.querySelector("style.anchorjs")&&((u=document.createElement("style")).className="anchorjs",u.appendChild(document.createTextNode("")),void 0===(A=document.head.querySelector('[rel="stylesheet"],style'))?document.head.appendChild(u):document.head.insertBefore(u,A),u.sheet.insertRule(".anchorjs-link{opacity:0;text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}",u.sheet.cssRules.length),u.sheet.insertRule(":hover>.anchorjs-link,.anchorjs-link:focus{opacity:1}",u.sheet.cssRules.length),u.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",u.sheet.cssRules.length),u.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',u.sheet.cssRules.length)),u=document.querySelectorAll("[id]"),t=[].map.call(u,function(A){return A.id}),i=0;i\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),A=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||A||!1}}}); 9 | // @license-end -------------------------------------------------------------------------------- /.quarto/idx/md/about/index.qmd.json: -------------------------------------------------------------------------------- 1 | {"title":"About","markdown":{"yaml":{"title":"About","citeproc":true,"reference-location":"margin"},"containsRefs":false,"markdown":"\n\n\n","srcMarkdownNoYaml":"\n\n\n"},"formats":{"html":{"identifier":{"display-name":"HTML","target-format":"html","base-format":"html"},"execute":{"fig-width":7,"fig-height":5,"fig-format":"retina","fig-dpi":96,"df-print":"default","error":false,"eval":true,"cache":null,"freeze":"auto","echo":true,"output":true,"warning":true,"include":true,"keep-md":false,"keep-ipynb":false,"ipynb":null,"enabled":null,"daemon":null,"daemon-restart":false,"debug":false,"ipynb-filters":[],"engine":"markdown"},"render":{"keep-tex":false,"keep-source":false,"keep-hidden":false,"prefer-html":false,"output-divs":true,"output-ext":"html","fig-align":"default","fig-pos":null,"fig-env":null,"code-fold":"none","code-overflow":"scroll","code-link":false,"code-line-numbers":false,"code-tools":false,"tbl-colwidths":"auto","merge-includes":true,"inline-includes":false,"preserve-yaml":false,"latex-auto-mk":true,"latex-auto-install":true,"latex-clean":true,"latex-max-runs":10,"latex-makeindex":"makeindex","latex-makeindex-opts":[],"latex-tlmgr-opts":[],"latex-input-paths":[],"latex-output-dir":null,"link-external-icon":false,"link-external-newwindow":false,"self-contained-math":false,"format-resources":[],"notebook-links":true,"format-links":true},"pandoc":{"standalone":true,"wrap":"none","default-image-extension":"png","to":"html","toc":true,"highlight-style":"monokai","citeproc":true,"reference-location":"margin","output-file":"index.html"},"language":{"toc-title-document":"Table of contents","toc-title-website":"On this page","related-formats-title":"Other Formats","related-notebooks-title":"Notebooks","source-notebooks-prefix":"Source","section-title-abstract":"Abstract","section-title-appendices":"Appendices","section-title-footnotes":"Footnotes","section-title-references":"References","section-title-reuse":"Reuse","section-title-copyright":"Copyright","section-title-citation":"Citation","appendix-attribution-cite-as":"For attribution, please cite this work as:","appendix-attribution-bibtex":"BibTeX citation:","title-block-author-single":"Author","title-block-author-plural":"Authors","title-block-affiliation-single":"Affiliation","title-block-affiliation-plural":"Affiliations","title-block-published":"Published","title-block-modified":"Modified","callout-tip-title":"Tip","callout-note-title":"Note","callout-warning-title":"Warning","callout-important-title":"Important","callout-caution-title":"Caution","code-summary":"Code","code-tools-menu-caption":"Code","code-tools-show-all-code":"Show All Code","code-tools-hide-all-code":"Hide All Code","code-tools-view-source":"View Source","code-tools-source-code":"Source Code","code-line":"Line","code-lines":"Lines","copy-button-tooltip":"Copy to Clipboard","copy-button-tooltip-success":"Copied!","repo-action-links-edit":"Edit this page","repo-action-links-source":"View source","repo-action-links-issue":"Report an issue","back-to-top":"Back to top","search-no-results-text":"No results","search-matching-documents-text":"matching documents","search-copy-link-title":"Copy link to search","search-hide-matches-text":"Hide additional matches","search-more-match-text":"more match in this document","search-more-matches-text":"more matches in this document","search-clear-button-title":"Clear","search-detached-cancel-button-title":"Cancel","search-submit-button-title":"Submit","search":"Search","toggle-section":"Toggle section","toggle-sidebar":"Toggle sidebar navigation","toggle-dark-mode":"Toggle dark mode","toggle-reader-mode":"Toggle reader mode","toggle-navigation":"Toggle navigation","crossref-fig-title":"Figure","crossref-tbl-title":"Table","crossref-lst-title":"Listing","crossref-thm-title":"Theorem","crossref-lem-title":"Lemma","crossref-cor-title":"Corollary","crossref-prp-title":"Proposition","crossref-cnj-title":"Conjecture","crossref-def-title":"Definition","crossref-exm-title":"Example","crossref-exr-title":"Exercise","crossref-ch-prefix":"Chapter","crossref-apx-prefix":"Appendix","crossref-sec-prefix":"Section","crossref-eq-prefix":"Equation","crossref-lof-title":"List of Figures","crossref-lot-title":"List of Tables","crossref-lol-title":"List of Listings","environment-proof-title":"Proof","environment-remark-title":"Remark","environment-solution-title":"Solution","listing-page-order-by":"Order By","listing-page-order-by-default":"Default","listing-page-order-by-date-asc":"Oldest","listing-page-order-by-date-desc":"Newest","listing-page-order-by-number-desc":"High to Low","listing-page-order-by-number-asc":"Low to High","listing-page-field-date":"Date","listing-page-field-title":"Title","listing-page-field-description":"Description","listing-page-field-author":"Author","listing-page-field-filename":"File Name","listing-page-field-filemodified":"Modified","listing-page-field-subtitle":"Subtitle","listing-page-field-readingtime":"Reading Time","listing-page-field-categories":"Categories","listing-page-minutes-compact":"{0} min","listing-page-category-all":"All","listing-page-no-matches":"No matching items"},"metadata":{"lang":"en","fig-responsive":true,"quarto-version":"1.3.353","bibliography":["../../files/bib/readings.bib"],"csl":"../../files/bib/chicago-author-date.csl","description-meta":"Um apanhado dos recursos digitais de pesquisa em Relações Internacionais","_quarto-vars":{"author":"Bernardo Vasconcelos","instructor":{"name":"Bernardo Vasconcelos","name_no_title":"Bernardo Vasconcelos","email":"bernardovasconcelos@gmail.com","url":"https://github.com/bcdavasconcelos","github":"bcdavasconcelos","office":"Dr. em Filosofia pela UFMG","contact_policy":"E-mail is the best way to get in contact with me. I will try to respond to all course-related e-mails within 24 hours (*really*), but also remember that life can be busy and chaotic for everyone (including me!), so if I don't respond right away, don't worry!","appointment_url":"https://calendly.com/andrewheiss/"},"course":{"days":"Segunda","time":"15:20","location":"Auditório do Prédio 9","dates":"22 de Maio, 2023","github":"https://www.github.com/andrewheiss/compasp23.classes.andrewheiss.com","url":"https://compasp23.classes.andrewheiss.com","copyright_year":"2023"}},"theme":["litera","../../html/custom.scss"],"title":"About"},"extensions":{"book":{"multiFile":true}}}},"projectFormats":["html"]} -------------------------------------------------------------------------------- /.quarto/idx/404.qmd.json: -------------------------------------------------------------------------------- 1 | {"title":"Page Not Found","markdown":{"yaml":{"title":"Page Not Found","sidebar":false,"toc":false},"containsRefs":false,"markdown":"\n\nOH NO! The page you were looking for isn't here!\n\n

GIF by Steph Davidson.

\n","srcMarkdownNoYaml":"\n\nOH NO! The page you were looking for isn't here!\n\n

GIF by Steph Davidson.

\n"},"formats":{"html":{"identifier":{"display-name":"HTML","target-format":"html","base-format":"html"},"execute":{"fig-width":7,"fig-height":5,"fig-format":"retina","fig-dpi":96,"df-print":"default","error":false,"eval":true,"cache":null,"freeze":"auto","echo":true,"output":true,"warning":true,"include":true,"keep-md":false,"keep-ipynb":false,"ipynb":null,"enabled":null,"daemon":null,"daemon-restart":false,"debug":false,"ipynb-filters":[],"engine":"markdown"},"render":{"keep-tex":false,"keep-source":false,"keep-hidden":false,"prefer-html":false,"output-divs":true,"output-ext":"html","fig-align":"default","fig-pos":null,"fig-env":null,"code-fold":"none","code-overflow":"scroll","code-link":false,"code-line-numbers":false,"code-tools":false,"tbl-colwidths":"auto","merge-includes":true,"inline-includes":false,"preserve-yaml":false,"latex-auto-mk":true,"latex-auto-install":true,"latex-clean":true,"latex-max-runs":10,"latex-makeindex":"makeindex","latex-makeindex-opts":[],"latex-tlmgr-opts":[],"latex-input-paths":[],"latex-output-dir":null,"link-external-icon":false,"link-external-newwindow":false,"self-contained-math":false,"format-resources":[],"notebook-links":true,"format-links":true},"pandoc":{"standalone":true,"wrap":"none","default-image-extension":"png","to":"html","toc":false,"highlight-style":"monokai","output-file":"404.html"},"language":{"toc-title-document":"Table of contents","toc-title-website":"On this page","related-formats-title":"Other Formats","related-notebooks-title":"Notebooks","source-notebooks-prefix":"Source","section-title-abstract":"Abstract","section-title-appendices":"Appendices","section-title-footnotes":"Footnotes","section-title-references":"References","section-title-reuse":"Reuse","section-title-copyright":"Copyright","section-title-citation":"Citation","appendix-attribution-cite-as":"For attribution, please cite this work as:","appendix-attribution-bibtex":"BibTeX citation:","title-block-author-single":"Author","title-block-author-plural":"Authors","title-block-affiliation-single":"Affiliation","title-block-affiliation-plural":"Affiliations","title-block-published":"Published","title-block-modified":"Modified","callout-tip-title":"Tip","callout-note-title":"Note","callout-warning-title":"Warning","callout-important-title":"Important","callout-caution-title":"Caution","code-summary":"Code","code-tools-menu-caption":"Code","code-tools-show-all-code":"Show All Code","code-tools-hide-all-code":"Hide All Code","code-tools-view-source":"View Source","code-tools-source-code":"Source Code","code-line":"Line","code-lines":"Lines","copy-button-tooltip":"Copy to Clipboard","copy-button-tooltip-success":"Copied!","repo-action-links-edit":"Edit this page","repo-action-links-source":"View source","repo-action-links-issue":"Report an issue","back-to-top":"Back to top","search-no-results-text":"No results","search-matching-documents-text":"matching documents","search-copy-link-title":"Copy link to search","search-hide-matches-text":"Hide additional matches","search-more-match-text":"more match in this document","search-more-matches-text":"more matches in this document","search-clear-button-title":"Clear","search-detached-cancel-button-title":"Cancel","search-submit-button-title":"Submit","search":"Search","toggle-section":"Toggle section","toggle-sidebar":"Toggle sidebar navigation","toggle-dark-mode":"Toggle dark mode","toggle-reader-mode":"Toggle reader mode","toggle-navigation":"Toggle navigation","crossref-fig-title":"Figure","crossref-tbl-title":"Table","crossref-lst-title":"Listing","crossref-thm-title":"Theorem","crossref-lem-title":"Lemma","crossref-cor-title":"Corollary","crossref-prp-title":"Proposition","crossref-cnj-title":"Conjecture","crossref-def-title":"Definition","crossref-exm-title":"Example","crossref-exr-title":"Exercise","crossref-ch-prefix":"Chapter","crossref-apx-prefix":"Appendix","crossref-sec-prefix":"Section","crossref-eq-prefix":"Equation","crossref-lof-title":"List of Figures","crossref-lot-title":"List of Tables","crossref-lol-title":"List of Listings","environment-proof-title":"Proof","environment-remark-title":"Remark","environment-solution-title":"Solution","listing-page-order-by":"Order By","listing-page-order-by-default":"Default","listing-page-order-by-date-asc":"Oldest","listing-page-order-by-date-desc":"Newest","listing-page-order-by-number-desc":"High to Low","listing-page-order-by-number-asc":"Low to High","listing-page-field-date":"Date","listing-page-field-title":"Title","listing-page-field-description":"Description","listing-page-field-author":"Author","listing-page-field-filename":"File Name","listing-page-field-filemodified":"Modified","listing-page-field-subtitle":"Subtitle","listing-page-field-readingtime":"Reading Time","listing-page-field-categories":"Categories","listing-page-minutes-compact":"{0} min","listing-page-category-all":"All","listing-page-no-matches":"No matching items"},"metadata":{"lang":"en","fig-responsive":true,"quarto-version":"1.3.353","bibliography":["files/bib/readings.bib"],"csl":"files/bib/chicago-author-date.csl","description-meta":"Um apanhado dos recursos digitais de pesquisa em Relações Internacionais","_quarto-vars":{"author":"Bernardo Vasconcelos","instructor":{"name":"Bernardo Vasconcelos","name_no_title":"Bernardo Vasconcelos","email":"bernardovasconcelos@gmail.com","url":"https://github.com/bcdavasconcelos","github":"bcdavasconcelos","office":"Dr. em Filosofia pela UFMG","contact_policy":"E-mail is the best way to get in contact with me. I will try to respond to all course-related e-mails within 24 hours (*really*), but also remember that life can be busy and chaotic for everyone (including me!), so if I don't respond right away, don't worry!","appointment_url":"https://calendly.com/andrewheiss/"},"course":{"days":"Segunda","time":"15:20","location":"Auditório do Prédio 9","dates":"22 de Maio, 2023","github":"https://www.github.com/andrewheiss/compasp23.classes.andrewheiss.com","url":"https://compasp23.classes.andrewheiss.com","copyright_year":"2023"}},"theme":["litera","html/custom.scss"],"title":"Page Not Found","sidebar":false},"extensions":{"book":{"multiFile":true}}}},"projectFormats":["html"]} -------------------------------------------------------------------------------- /html/custom.scss: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap'); 2 | @import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap'); 3 | 4 | /*-- scss:defaults --*/ 5 | $white: #fff !default; 6 | $gray-100: #f8f9fa !default; 7 | $gray-200: #e9ecef !default; 8 | $gray-300: #ddd !default; 9 | $gray-400: #ced4da !default; 10 | $gray-500: #adb5bd !default; 11 | $gray-600: #868e96 !default; 12 | $gray-700: #495057 !default; 13 | $gray-800: #343a40 !default; 14 | $gray-900: #212529 !default; 15 | $black: #000 !default; 16 | 17 | // Tam colors from MetBrewer R package (https://github.com/BlakeRMills/MetBrewer#tam) 18 | // #> MetBrewer::met.brewer("Tam") 19 | // 20 | // Supplemented with: 21 | // - Blue and green from the Signac palette: MetBrewer::met.brewer("Signac") 22 | // - Teal and cyan from https://clrs.cc/ 23 | $blue: #1f6e9c !default; // Signac 24 | $indigo: #341648 !default; // Tam 25 | $purple: #62205f !default; // Tam 26 | $pink: #9f2d55 !default; // Tam 27 | $red: #bb292c !default; // Tam 28 | $orange: #ef8737 !default; // Tam 29 | $yellow: #ffd353 !default; // Tam 30 | $green: #2b9b81 !default; // Signac 31 | $teal: #39CCCC !default; // clrs.cc 32 | $cyan: #7FDBFF !default; // clrs.cc 33 | 34 | $primary: $purple !default; 35 | $secondary: $gray-500 !default; 36 | $success: $green !default; 37 | $info: $cyan !default; 38 | $warning: $yellow !default; 39 | $danger: $red !default; 40 | $light: $gray-100 !default; 41 | $dark: $gray-800 !default; 42 | 43 | $font-family-sans-serif: Public Sans, Source Sans Pro, sans-serif !default; 44 | $font-family-serif: Public Sans, Source Sans Pro, serif !default; /* Not actually a serif font but whatever */ 45 | 46 | $font-size-base: 1.05rem !default; 47 | $headings-font-weight: 700 !default; 48 | 49 | $h1-font-size: $font-size-base * 2.35; 50 | $h2-font-size: $font-size-base * 1.8; 51 | $h3-font-size: $font-size-base * 1.45; 52 | $h4-font-size: $font-size-base * 1.1; 53 | $h5-font-size: $font-size-base * 1; 54 | $h6-font-size: $font-size-base * 0.8; 55 | 56 | $toc-font-size: 0.95rem; 57 | $sidebar-font-size: 1.1rem; 58 | $sidebar-font-size-section: 0.9rem; 59 | 60 | $link-color: $red; 61 | $link-hover-color: $yellow; 62 | 63 | $monokai-bg: #2e3440; 64 | 65 | 66 | /*-- scss:rules --*/ 67 | h2 { 68 | border-bottom: 1px solid $gray-500; 69 | } 70 | 71 | ul, 72 | ol { 73 | font-family: $font-family-serif; 74 | } 75 | 76 | // Home page stuff 77 | .title-block { 78 | margin: 1em 0; 79 | border-bottom: 3px solid $gray-200; 80 | padding-bottom: 1em; 81 | } 82 | 83 | .course-details { 84 | margin: 0 0 1em; 85 | border-bottom: 3px solid $gray-200; 86 | padding-bottom: 1em; 87 | } 88 | 89 | .course-details h3 { 90 | margin-top: 0; 91 | } 92 | 93 | .course-title { 94 | font-size: 3.5rem; 95 | margin-top: 0; 96 | } 97 | 98 | .course-subtitle { 99 | font-size: 1.7rem; 100 | } 101 | 102 | .course-meta { 103 | font-size: 1.2rem; 104 | color: $gray-600; 105 | } 106 | 107 | .course-details ul { 108 | list-style: none; 109 | text-indent: -0.7rem; 110 | padding-left: 1.4rem; 111 | } 112 | 113 | .contact-policy p { 114 | font-size: 1rem; 115 | line-height: 1.5; 116 | } 117 | 118 | .course-details-smaller li { 119 | font-size: 1rem; 120 | } 121 | 122 | .course-details-smaller h3 { 123 | font-size: 1.4rem; 124 | } 125 | 126 | 127 | // Active links in navbar and sidebar 128 | .navbar-dark .navbar-nav .show>.nav-link, 129 | .navbar-dark .navbar-nav .active>.nav-link, 130 | .navbar-dark .navbar-nav .nav-link.active, 131 | div.sidebar-item-container .active, 132 | div.sidebar-item-container .show>.nav-link, 133 | div.sidebar-item-container .sidebar-link>code{ 134 | color: $orange; 135 | 136 | } 137 | 138 | .navbar-dark .navbar-nav .nav-link:hover, 139 | .navbar-dark .navbar-brand:hover { 140 | color: $yellow; 141 | } 142 | 143 | 144 | // Footer stuff 145 | .nav-footer-left { 146 | text-align: left; 147 | } 148 | 149 | .nav-footer-right { 150 | text-align: right; 151 | } 152 | 153 | 154 | // Schedule stuff 155 | .class-title { 156 | font-weight: 700; 157 | } 158 | 159 | .class-note { 160 | font-size: 0.8rem; 161 | display: block; 162 | } 163 | 164 | .schedule-page h3 { 165 | text-align: left; 166 | margin-top: 3rem; 167 | // border-bottom: 3px solid $indigo; 168 | // padding-bottom: 0.5rem; 169 | } 170 | 171 | .download-btn { 172 | padding-top: 0.25rem; 173 | margin-bottom: 0; 174 | text-align: center; 175 | } 176 | 177 | 178 | 179 | // Content page stuff 180 | // Date bar 181 | .date-block { 182 | font-size: 1.1rem; 183 | 184 | p.date { 185 | margin-bottom: 0 !important; 186 | } 187 | } 188 | 189 | .bg-class { 190 | background-color: $orange; 191 | } 192 | 193 | .bg-assignment { 194 | background-color: $red; 195 | } 196 | 197 | .fake-date-block { 198 | margin-bottom: 1em; 199 | 200 | p { 201 | margin-bottom: 0; 202 | } 203 | } 204 | 205 | // Slightly larger buttons 206 | p a.btn, .buttons span.btn { 207 | font-size: 1.1rem; 208 | } 209 | 210 | .buttons .btn { 211 | margin-bottom: 1rem; 212 | } 213 | 214 | main { 215 | // No space after lists-within-lists 216 | ol ol, 217 | ul ul, 218 | ol ul, 219 | ul ol { 220 | margin-bottom: 0em; 221 | } 222 | 223 | // But yes space after lists-within-lists when paragraphs are involved 224 | ol p + ol, 225 | ul p + ul, 226 | ol p + ul, 227 | ul p + ol { 228 | margin-bottom: 1em; 229 | } 230 | } 231 | 232 | 233 | // Make callout text and icon bigger 234 | // .callout.callout-style-default { 235 | // > div.callout-header, 236 | // > .callout-body { 237 | // font-size: 1rem; 238 | // } 239 | // 240 | // .callout-icon::before { 241 | // height: 1rem; 242 | // width: 1rem; 243 | // background-size: 1rem 1rem; 244 | // } 245 | // } 246 | 247 | // Increase font size in sidebar 248 | .sidebar-navigation .sidebar-section .sidebar-item, 249 | .sidebar-navigation .sidebar-item{ 250 | line-height: 1.2; 251 | padding-bottom: 0.4rem; 252 | } 253 | 254 | .sidebar-item .sidebar-item-toggle .bi { 255 | // The dongle for opening and closing sections 256 | font-size: 1.1rem; 257 | text-align: center; 258 | } 259 | 260 | // Increase font size in TOC 261 | #TOC { 262 | padding-bottom: 0.1em; 263 | } 264 | 265 | #toc-title { 266 | font-weight: 700; 267 | } 268 | 269 | .sidebar nav[role="doc-toc"] > ul li a { 270 | padding-top: 0.3rem; 271 | padding-bottom: 0.3rem; 272 | 273 | &.active { 274 | border-left: 1px solid $orange; 275 | color: $orange !important; 276 | } 277 | } 278 | 279 | // Code stuff 280 | // Shrink blocks of code 281 | pre.text, pre.sourceCode, .cell-output pre { 282 | font-size: 0.775em; 283 | } 284 | 285 | // Slight bottom margin to output 286 | .cell-output { 287 | margin: 0 0 1em; 288 | } 289 | 290 | // Remove margin on pre in output 291 | .cell-output pre { 292 | margin-bottom: 0; 293 | color: #ffffff; 294 | } 295 | 296 | // Format output and plain text blocks like code 297 | .cell-output, pre.text { 298 | border: none; 299 | padding: .4em; 300 | background-color: $monokai-bg; 301 | border: 1px solid $monokai-bg; 302 | border-radius: .25rem; 303 | } 304 | 305 | pre.text { 306 | color: #ffffff; 307 | } 308 | -------------------------------------------------------------------------------- /md/A/index.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Coleta e Preparação do material de pesquisa" 3 | citeproc: true 4 | reference-location: margin 5 | --- 6 | 7 | Toda pesquisa em ciências humanas inevitavelmente envolve três etapas, de pesquisa: preparação, execução e divulgação. 8 | 9 |
10 | ```{mermaid} 11 | graph TD 12 | A(Coleta de dados e referências bibliográficas) --> B(Análise das referências e estruturação dos dados) 13 | B --> C(Preparação de um texto ou relatório para publicação) 14 | C --> A 15 | ``` 16 |
17 | 18 | Na primeira fase, o pesquisador deve buscar por fontes primárias e secundárias, bem como por dados que possam ser utilizados para a análise do objeto de estudo. Em linhas gerais, as fontes primárias são os documentos, dados e materiais que constituem o objeto de estudo em si, enquanto as fontes secundárias são as referências bibliográficas que tratam do objeto de estudo. 19 | 20 | ### Repositórios de referências 21 | 22 | Para encontrar referências bibliográficas propriamente, confira o [Internet Archive Scholar](https://scholar.archive.org), [Research Rabbit](https://www.researchrabbit.ai), o [Google Scholar](https://scholar.google.com.br/), [Semantic Scholar](https://www.semanticscholar.org), [CrossRef](https://www.crossref.org), 23 | ou o [JSTOR](https://www.jstor.org/). Pesquisadores de diversas áreas também compartilham com frequência sua produção acadêmica em redes sociais, como [Academia.edu](https://www.academia.edu/), [ResearchGate](https://www.researchgate.net/), ou com o [Mendeley](https://www.mendeley.com/). Em alguns casos, é possível encontrar bibliografias anotadas e comentadas por acadêmicos na forma de publicações (*e.g.* [*Oxford Bibliographies in International Relations*](https://www.oxfordbibliographies.com/page/140)) ou nos sites pessoais de pesquisadoras. 24 | 25 | 26 | #### Repositórios de documentos 27 | 28 | O [Internet Archive](https://archive.org/) hospeda conteúdo em domínio público e torna possível retirar livros digitalmente em bibliotecas estrangeiras. Além disso, ele hospeda a Wayback Machine, responsável por fazer snapshots periódicos de uma grande parte do conteúdo da internet. Este recurso é importante para permitir referências estáveis em trabalhos acadêmicos. Nesta categoria temos ainda o [Arquivo Nacional](http://www.arquivonacional.gov.br), a [Europeana](https://www.europeana.eu/pt), a e [Biblioteca Digital Mundial](https://www.wdl.org/pt/) com coleções de museus, bibliotecas e arquivos de todo o mundo. 29 | 30 | ::: {.callout-tip} 31 | Não deixe de explorar o Internet Archive e os repositórios públicos de material digitalizado. Trata-se de uma fonte inestimável para qualquer pesquisa em humanidades que lida com documentos históricos. 32 | ::: 33 | 34 | 35 | #### Repositórios de código 36 | 37 | Para encontrar códigos de programas, consulte o [Github](https://github.com), o [Gitlab](https://gitlab.com/), ou o [Bitbucket](https://bitbucket.org/). O Github é o maior repositório de código aberto do mundo, e é uma excelente fonte para encontrar códigos de programas. O Gitlab e o Bitbucket são uma alternativas ao Github, que também permitem hospedar códigos de programas. Aprender a navegar e utilizar o Github é uma habilidade importante para qualquer pesquisador, e pode ser aprendida por meio de tutoriais como [este](https://guides.github.com/activities/hello-world/). 38 | 39 | 40 | #### Repositórios de dados 41 | 42 | Para acessar bancos de dados em domínio público, consulte o [Our World in Data](https://ourworldindata.org/), o [Gapminder](https://www.gapminder.org/), o [World Bank Open Data](https://data.worldbank.org/), o [UNdata](https://data.un.org/), o [World Bank DataBank](https://databank.worldbank.org/home.aspx), ou o [Portal Brasileiro de Dados Abertos](http://dados.gov.br/). Talvez o melhor repositório de dados seja o [Google Dataset Search](https://datasetsearch.research.google.com/), que permite buscar por conjuntos de dados em diversos repositórios. Apesar de não ser um repositório de dados propriamente, o [Github](https://github.com) frequentemente hospeda conjuntos de dados, e é uma boa fonte para encontrar scripts de raspagem de dados. 43 | 44 | #### Coleta de dados 45 | 46 | A coleta de dados é uma tarefa que pode ser realizada de diversas formas. Dados podem ser coletados por meio de entrevistas, observação participante, ou por meio de questionários. Em outros casos, os dados podem ser coletados por meio de raspagem de dados de sites, ou por meio de APIs. Para este tipo de tarefa, o pesquisador pode utilizar ferramentas como o [Import.io](https://www.import.io/), o [Octoparse](https://www.octoparse.com/), ou o [ParseHub](https://www.parsehub.com/), ou scripts em [Python](https://www.python.org/), [R](https://www.r-project.org/), que podem ser escritos com o [Jupyter Notebooks](https://jupyter.org/), com [R Markdown](https://rmarkdown.rstudio.com/), ou outra linguagem de programação.^[Para aprender mais, consulte, em particular, [Python Humanities](https://pythonhumanities.com) e [Programming Historian](https://programminghistorian.org).] Em outros casos, os dados podem ser coletados por meio de experimentos, ou por meio de simulações computacionais. 47 | 48 | 49 | 50 | 51 | **Consulte ainda:** 52 | 53 | - [Biblioteca Digital Brasileira de Teses e Dissertações](https://bdtd.ibict.br/vufind/): [PUC MG](https://web.sistemas.pucminas.br/BDP/PUC%20Minas), [PUC SP](https://tede2.pucsp.br), [PUC Rio](http://www.ser.puc-rio.br/index.php/pos-graduacao/teses-e-dissertacoes), [PUC RS](https://repositorio.pucrs.br/dspace/handle/10923/10719/browse?type=subject&order=ASC&rpp=20&value=RELAÇÕES+INTERNACIONAIS), [UFMG](https://repositorio.ufmg.br/handle/1843/BUOS-8V4H6X), [USP](https://www.teses.usp.br/), [Unicamp](https://www.bibliotecadigital.unicamp.br/), [Unesp](https://repositorio.unesp.br/handle/11449/102), [UFRJ](https://bdtd.ibict.br/vufind/), [UFRGS](https://www.lume.ufrgs.br/handle/10183/1), [UFSC](https://repositorio.ufsc.br/handle/123456789/2), [UFPE](https://repositorio.ufpe.br/handle/123456789/2), [UFBA](https://repositorio.ufba.br/ri/handle/ri/2), [UFRN](https://repositorio.ufrn.br/handle/123456789/2), [UERJ](https://www.maxwell.vrac.puc-rio.br/colecao.php?strSecao=resultado&nrSeq=2&nrArq=2), [UFC](https://repositorio.ufc.br/handle/riufc/2), [UFSM](https://repositorio.ufsm.br/handle/1/2), [UFPR](https://acervodigital.ufpr.br/handle/1884/2), [UFPB](https://repositorio.ufpb.br/jspui/handle/123456789/2), [UFG](https://repositorio.bc.ufg.br/tede/handle/tede/2), [UFS](https://ri.ufs.br/handle/riufs/2), [UFPA](https://repositorio.ufpa.br/jspui/handle/2011/2), [UFSCar](https://repositorio.ufscar.br/handle/ufscar/2), [UFCG](https://repositorio.ufcg.edu.br/jspui/handle/riufcg/2), [UFLA](https://repositorio.ufla.br/handle/1/2), [UFV](https://repositorio.ufv.br/handle/123456789/2), [UFPI](https://repositorio.ufpi.br/jspui/handle/123456789/2), [UFMS](https://repositorio.ufms.br/handle/123456789/2), [UFAL](https://www.repositorio.ufal.br/handle/riufal/2), [UFGD](https://repositorio.ufgd.edu.br/jspui/handle/prefix/2) 54 | - [Open Access](https://www.openaccessbutton.org/), [Open Access Journals](https://doaj.org/), [Open Access Theses and Dissertations](https://oatd.org/), [Open Access Books](https://www.doabooks.org/), [Open Access Repositories](https://www.opendoar.org/) 55 | - [Internet Archive](https://archive.org/), [Internet Archive Wayback Machine](https://archive.org/web/), [Internet Archive Scholar](https://scholar.archive.org/) 56 | - [Portal Brasileiro de Dados Abertos](http://dados.gov.br/) 57 | 58 | 59 | 60 | 61 | 62 | --- 63 | references: 64 | - id: ThuHist 65 | abstract: |- 66 | Tucídides 67 | 2 vols 68 | author: 69 | - family: Thucydides 70 | given: '' 71 | call-number: '0003.001' 72 | citation-key: ThuHist 73 | container-title: Thucydidis Historiae 74 | editor: 75 | - family: Jones 76 | given: H. S. 77 | event-place: Oxford 78 | issued: 79 | - year: 1942 80 | publisher: Clarendon 81 | publisher-place: Oxford 82 | title: Historiae 83 | title-short: Thu 84 | type: chapter 85 | ... 86 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /_site/site_libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * clipboard.js v2.0.11 3 | * https://clipboardjs.com/ 4 | * 5 | * Licensed MIT © Zeno Rocha 6 | */ 7 | !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return n={686:function(t,e,n){"use strict";n.d(e,{default:function(){return b}});var e=n(279),i=n.n(e),e=n(370),u=n.n(e),e=n(817),r=n.n(e);function c(t){try{return document.execCommand(t)}catch(t){return}}var a=function(t){t=r()(t);return c("cut"),t};function o(t,e){var n,o,t=(n=t,o="rtl"===document.documentElement.getAttribute("dir"),(t=document.createElement("textarea")).style.fontSize="12pt",t.style.border="0",t.style.padding="0",t.style.margin="0",t.style.position="absolute",t.style[o?"right":"left"]="-9999px",o=window.pageYOffset||document.documentElement.scrollTop,t.style.top="".concat(o,"px"),t.setAttribute("readonly",""),t.value=n,t);return e.container.appendChild(t),e=r()(t),c("copy"),t.remove(),e}var f=function(t){var e=1 { 17 | btn.style.display = "none"; 18 | }; 19 | const showBackToTop = () => { 20 | btn.style.display = "inline-block"; 21 | }; 22 | if (btn) { 23 | window.document.addEventListener( 24 | "scroll", 25 | function () { 26 | const currentScrollTop = 27 | window.pageYOffset || document.documentElement.scrollTop; 28 | 29 | // Shows and hides the button 'intelligently' as the user scrolls 30 | if (currentScrollTop - scrollDownBuffer > lastScrollTop) { 31 | hideBackToTop(); 32 | lastScrollTop = currentScrollTop <= 0 ? 0 : currentScrollTop; 33 | } else if (currentScrollTop < lastScrollTop - scrollUpBuffer) { 34 | showBackToTop(); 35 | lastScrollTop = currentScrollTop <= 0 ? 0 : currentScrollTop; 36 | } 37 | 38 | // Show the button at the bottom, hides it at the top 39 | if (currentScrollTop <= 0) { 40 | hideBackToTop(); 41 | } else if ( 42 | window.innerHeight + currentScrollTop >= 43 | document.body.offsetHeight 44 | ) { 45 | showBackToTop(); 46 | } 47 | }, 48 | false 49 | ); 50 | } 51 | 52 | function throttle(func, wait) { 53 | var timeout; 54 | return function () { 55 | const context = this; 56 | const args = arguments; 57 | const later = function () { 58 | clearTimeout(timeout); 59 | timeout = null; 60 | func.apply(context, args); 61 | }; 62 | 63 | if (!timeout) { 64 | timeout = setTimeout(later, wait); 65 | } 66 | }; 67 | } 68 | 69 | function headerOffset() { 70 | // Set an offset if there is are fixed top navbar 71 | const headerEl = window.document.querySelector("header.fixed-top"); 72 | if (headerEl) { 73 | return headerEl.clientHeight; 74 | } else { 75 | return 0; 76 | } 77 | } 78 | 79 | function footerOffset() { 80 | const footerEl = window.document.querySelector("footer.footer"); 81 | if (footerEl) { 82 | return footerEl.clientHeight; 83 | } else { 84 | return 0; 85 | } 86 | } 87 | 88 | function updateDocumentOffsetWithoutAnimation() { 89 | updateDocumentOffset(false); 90 | } 91 | 92 | function updateDocumentOffset(animated) { 93 | // set body offset 94 | const topOffset = headerOffset(); 95 | const bodyOffset = topOffset + footerOffset(); 96 | const bodyEl = window.document.body; 97 | bodyEl.setAttribute("data-bs-offset", topOffset); 98 | bodyEl.style.paddingTop = topOffset + "px"; 99 | 100 | // deal with sidebar offsets 101 | const sidebars = window.document.querySelectorAll( 102 | ".sidebar, .headroom-target" 103 | ); 104 | sidebars.forEach((sidebar) => { 105 | if (!animated) { 106 | sidebar.classList.add("notransition"); 107 | // Remove the no transition class after the animation has time to complete 108 | setTimeout(function () { 109 | sidebar.classList.remove("notransition"); 110 | }, 201); 111 | } 112 | 113 | if (window.Headroom && sidebar.classList.contains("sidebar-unpinned")) { 114 | sidebar.style.top = "0"; 115 | sidebar.style.maxHeight = "100vh"; 116 | } else { 117 | sidebar.style.top = topOffset + "px"; 118 | sidebar.style.maxHeight = "calc(100vh - " + topOffset + "px)"; 119 | } 120 | }); 121 | 122 | // allow space for footer 123 | const mainContainer = window.document.querySelector(".quarto-container"); 124 | if (mainContainer) { 125 | mainContainer.style.minHeight = "calc(100vh - " + bodyOffset + "px)"; 126 | } 127 | 128 | // link offset 129 | let linkStyle = window.document.querySelector("#quarto-target-style"); 130 | if (!linkStyle) { 131 | linkStyle = window.document.createElement("style"); 132 | linkStyle.setAttribute("id", "quarto-target-style"); 133 | window.document.head.appendChild(linkStyle); 134 | } 135 | while (linkStyle.firstChild) { 136 | linkStyle.removeChild(linkStyle.firstChild); 137 | } 138 | if (topOffset > 0) { 139 | linkStyle.appendChild( 140 | window.document.createTextNode(` 141 | section:target::before { 142 | content: ""; 143 | display: block; 144 | height: ${topOffset}px; 145 | margin: -${topOffset}px 0 0; 146 | }`) 147 | ); 148 | } 149 | if (init) { 150 | window.dispatchEvent(headroomChanged); 151 | } 152 | init = true; 153 | } 154 | 155 | // initialize headroom 156 | var header = window.document.querySelector("#quarto-header"); 157 | if (header && window.Headroom) { 158 | const headroom = new window.Headroom(header, { 159 | tolerance: 5, 160 | onPin: function () { 161 | const sidebars = window.document.querySelectorAll( 162 | ".sidebar, .headroom-target" 163 | ); 164 | sidebars.forEach((sidebar) => { 165 | sidebar.classList.remove("sidebar-unpinned"); 166 | }); 167 | updateDocumentOffset(); 168 | }, 169 | onUnpin: function () { 170 | const sidebars = window.document.querySelectorAll( 171 | ".sidebar, .headroom-target" 172 | ); 173 | sidebars.forEach((sidebar) => { 174 | sidebar.classList.add("sidebar-unpinned"); 175 | }); 176 | updateDocumentOffset(); 177 | }, 178 | }); 179 | headroom.init(); 180 | 181 | let frozen = false; 182 | window.quartoToggleHeadroom = function () { 183 | if (frozen) { 184 | headroom.unfreeze(); 185 | frozen = false; 186 | } else { 187 | headroom.freeze(); 188 | frozen = true; 189 | } 190 | }; 191 | } 192 | 193 | window.addEventListener( 194 | "hashchange", 195 | function (e) { 196 | if ( 197 | getComputedStyle(document.documentElement).scrollBehavior !== "smooth" 198 | ) { 199 | window.scrollTo(0, window.pageYOffset - headerOffset()); 200 | } 201 | }, 202 | false 203 | ); 204 | 205 | // Observe size changed for the header 206 | const headerEl = window.document.querySelector("header.fixed-top"); 207 | if (headerEl && window.ResizeObserver) { 208 | const observer = new window.ResizeObserver( 209 | updateDocumentOffsetWithoutAnimation 210 | ); 211 | observer.observe(headerEl, { 212 | attributes: true, 213 | childList: true, 214 | characterData: true, 215 | }); 216 | } else { 217 | window.addEventListener( 218 | "resize", 219 | throttle(updateDocumentOffsetWithoutAnimation, 50) 220 | ); 221 | } 222 | setTimeout(updateDocumentOffsetWithoutAnimation, 250); 223 | 224 | // fixup index.html links if we aren't on the filesystem 225 | if (window.location.protocol !== "file:") { 226 | const links = window.document.querySelectorAll("a"); 227 | for (let i = 0; i < links.length; i++) { 228 | if (links[i].href) { 229 | links[i].href = links[i].href.replace(/\/index\.html/, "/"); 230 | } 231 | } 232 | 233 | // Fixup any sharing links that require urls 234 | // Append url to any sharing urls 235 | const sharingLinks = window.document.querySelectorAll( 236 | "a.sidebar-tools-main-item" 237 | ); 238 | for (let i = 0; i < sharingLinks.length; i++) { 239 | const sharingLink = sharingLinks[i]; 240 | const href = sharingLink.getAttribute("href"); 241 | if (href) { 242 | sharingLink.setAttribute( 243 | "href", 244 | href.replace("|url|", window.location.href) 245 | ); 246 | } 247 | } 248 | 249 | // Scroll the active navigation item into view, if necessary 250 | const navSidebar = window.document.querySelector("nav#quarto-sidebar"); 251 | if (navSidebar) { 252 | // Find the active item 253 | const activeItem = navSidebar.querySelector("li.sidebar-item a.active"); 254 | if (activeItem) { 255 | // Wait for the scroll height and height to resolve by observing size changes on the 256 | // nav element that is scrollable 257 | const resizeObserver = new ResizeObserver((_entries) => { 258 | // The bottom of the element 259 | const elBottom = activeItem.offsetTop; 260 | const viewBottom = navSidebar.scrollTop + navSidebar.clientHeight; 261 | 262 | // The element height and scroll height are the same, then we are still loading 263 | if (viewBottom !== navSidebar.scrollHeight) { 264 | // Determine if the item isn't visible and scroll to it 265 | if (elBottom >= viewBottom) { 266 | navSidebar.scrollTop = elBottom; 267 | } 268 | 269 | // stop observing now since we've completed the scroll 270 | resizeObserver.unobserve(navSidebar); 271 | } 272 | }); 273 | resizeObserver.observe(navSidebar); 274 | } 275 | } 276 | } 277 | }); 278 | -------------------------------------------------------------------------------- /files/schedule.ics: -------------------------------------------------------------------------------- 1 | BEGIN:VCALENDAR 2 | PRODID:ATFutures/calendar 3 | VERSION:2.0 4 | CALSCALE:GREGORIAN 5 | METHOD:PUBLISH 6 | BEGIN:VEVENT 7 | UID:ical-b3c3807e-2c30-4e80-b7e0-0042b9fd82e7 8 | DTSTART;VALUE=DATE:20230109 9 | DTEND;VALUE=DATE:20230110 10 | SUMMARY:PMAP 8441: (Topic 1) Introduction, historical development of public administration and management, and recent critiques 11 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/01-class.html 12 | DTSTAMP:20230227T164513Z 13 | END:VEVENT 14 | BEGIN:VEVENT 15 | UID:ical-9d800bf1-d251-42e9-926e-6b894833667b 16 | DTSTART;VALUE=DATE:20230116 17 | DTEND;VALUE=DATE:20230117 18 | SUMMARY:PMAP 8441: (Topic 2) Rediscovery of bureaucracy and good governance 19 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/02-class.html 20 | DTSTAMP:20230227T164513Z 21 | END:VEVENT 22 | BEGIN:VEVENT 23 | UID:ical-4612ecf7-cd10-453d-b877-49ce8939e5ac 24 | DTSTART;VALUE=DATE:20230115 25 | DTEND;VALUE=DATE:20230116 26 | SUMMARY:PMAP 8441: Reading report 2 27 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 28 | DTSTAMP:20230227T164513Z 29 | END:VEVENT 30 | BEGIN:VEVENT 31 | UID:ical-757f0ff1-d229-4a3f-9208-6d0c30f6ba63 32 | DTSTART;VALUE=DATE:20230123 33 | DTEND;VALUE=DATE:20230124 34 | SUMMARY:PMAP 8441: (Topic 3) Quality of government and governance outcomes 35 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/03-class.html 36 | DTSTAMP:20230227T164513Z 37 | END:VEVENT 38 | BEGIN:VEVENT 39 | UID:ical-46fb07e2-531b-4ccd-b3d0-2eeb7f70313c 40 | DTSTART;VALUE=DATE:20230122 41 | DTEND;VALUE=DATE:20230123 42 | SUMMARY:PMAP 8441: Reading report 3 43 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 44 | DTSTAMP:20230227T164513Z 45 | END:VEVENT 46 | BEGIN:VEVENT 47 | UID:ical-7104f949-8f30-40ec-8bba-484934ef83b5 48 | DTSTART;VALUE=DATE:20230206 49 | DTEND;VALUE=DATE:20230207 50 | SUMMARY:PMAP 8441: Data-based essay 51 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/data-exploration.html 52 | DTSTAMP:20230227T164513Z 53 | END:VEVENT 54 | BEGIN:VEVENT 55 | UID:ical-ca454b77-a7b7-4110-99a7-b295d4269c7a 56 | DTSTART;VALUE=DATE:20230130 57 | DTEND;VALUE=DATE:20230131 58 | SUMMARY:PMAP 8441: (Topic 4) Institutions 59 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/04-class.html 60 | DTSTAMP:20230227T164513Z 61 | END:VEVENT 62 | BEGIN:VEVENT 63 | UID:ical-c4ea9e2d-5dff-4f03-a994-3f4f2cbea56f 64 | DTSTART;VALUE=DATE:20230129 65 | DTEND;VALUE=DATE:20230130 66 | SUMMARY:PMAP 8441: Reading report 4 67 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 68 | DTSTAMP:20230227T164513Z 69 | END:VEVENT 70 | BEGIN:VEVENT 71 | UID:ical-308f1607-84ca-48a6-9035-2547a9e15898 72 | DTSTART;VALUE=DATE:20230206 73 | DTEND;VALUE=DATE:20230207 74 | SUMMARY:PMAP 8441: (Topic 5) Bureaucratic structures, politicization, and governance outcomes 75 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/05-class.html 76 | DTSTAMP:20230227T164513Z 77 | END:VEVENT 78 | BEGIN:VEVENT 79 | UID:ical-f7fbfadb-0a2b-4a2e-8558-91e3c492d6c0 80 | DTSTART;VALUE=DATE:20230205 81 | DTEND;VALUE=DATE:20230206 82 | SUMMARY:PMAP 8441: Reading report 5 83 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 84 | DTSTAMP:20230227T164513Z 85 | END:VEVENT 86 | BEGIN:VEVENT 87 | UID:ical-3ab3c996-1738-49ae-9bfb-bc8a22917f41 88 | DTSTART;VALUE=DATE:20230213 89 | DTEND;VALUE=DATE:20230214 90 | SUMMARY:PMAP 8441: (Topic 6) Bureaucratic structures, politicization, and bureaucratic behavior 91 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/06-class.html 92 | DTSTAMP:20230227T164513Z 93 | END:VEVENT 94 | BEGIN:VEVENT 95 | UID:ical-f8ad53fd-3810-4cbd-b407-ae2e0420ec2c 96 | DTSTART;VALUE=DATE:20230212 97 | DTEND;VALUE=DATE:20230213 98 | SUMMARY:PMAP 8441: Reading report 6 99 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 100 | DTSTAMP:20230227T164513Z 101 | END:VEVENT 102 | BEGIN:VEVENT 103 | UID:ical-4292cc16-a9b9-4b5f-b9ca-8d58df67d09a 104 | DTSTART;VALUE=DATE:20230220 105 | DTEND;VALUE=DATE:20230221 106 | SUMMARY:PMAP 8441: (Topic 7) Civil society and good governance 107 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/07-class.html 108 | DTSTAMP:20230227T164513Z 109 | END:VEVENT 110 | BEGIN:VEVENT 111 | UID:ical-9ef6a241-2835-4010-b7de-eb89c2e57ab7 112 | DTSTART;VALUE=DATE:20230219 113 | DTEND;VALUE=DATE:20230220 114 | SUMMARY:PMAP 8441: Reading report 7 115 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 116 | DTSTAMP:20230227T164513Z 117 | END:VEVENT 118 | BEGIN:VEVENT 119 | UID:ical-63c40e62-bf80-4435-aab2-8a1a034572d4 120 | DTSTART;VALUE=DATE:20230306 121 | DTEND;VALUE=DATE:20230307 122 | SUMMARY:PMAP 8441: (Topic 8) Civil society across countries 123 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/08-class.html 124 | DTSTAMP:20230227T164513Z 125 | END:VEVENT 126 | BEGIN:VEVENT 127 | UID:ical-676749d9-122a-4a0b-89eb-228974d39549 128 | DTSTART;VALUE=DATE:20230305 129 | DTEND;VALUE=DATE:20230306 130 | SUMMARY:PMAP 8441: Reading report 8 131 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 132 | DTSTAMP:20230227T164513Z 133 | END:VEVENT 134 | BEGIN:VEVENT 135 | UID:ical-b9a021f6-65e1-4662-8672-d61bdf262c5d 136 | DTSTART;VALUE=DATE:20230306 137 | DTEND;VALUE=DATE:20230307 138 | SUMMARY:PMAP 8441: (Topic 9) ~~Representative bureaucracy and philanthropy~~ 139 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/09-class.html 140 | DTSTAMP:20230227T164513Z 141 | END:VEVENT 142 | BEGIN:VEVENT 143 | UID:ical-76f5740f-3da5-4387-a078-fa58b0380396 144 | DTSTART;VALUE=DATE:20230305 145 | DTEND;VALUE=DATE:20230306 146 | SUMMARY:PMAP 8441: ~~Reading report 9~~ 147 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 148 | DTSTAMP:20230227T164513Z 149 | END:VEVENT 150 | BEGIN:VEVENT 151 | UID:ical-9aeae366-313c-4d09-9117-42c3ea187374 152 | DTSTART;VALUE=DATE:20230320 153 | DTEND;VALUE=DATE:20230321 154 | SUMMARY:PMAP 8441: Theory in real life essay 155 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/theory-in-real-life.html 156 | DTSTAMP:20230227T164513Z 157 | END:VEVENT 158 | BEGIN:VEVENT 159 | UID:ical-e860bab1-7822-4c90-b99f-2c1dda7049c6 160 | DTSTART;VALUE=DATE:20230320 161 | DTEND;VALUE=DATE:20230321 162 | SUMMARY:PMAP 8441: (Topic 10) The OECD 163 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/10-class.html 164 | DTSTAMP:20230227T164513Z 165 | END:VEVENT 166 | BEGIN:VEVENT 167 | UID:ical-c4d35b56-6b61-4be4-a823-edcf20a7d690 168 | DTSTART;VALUE=DATE:20230319 169 | DTEND;VALUE=DATE:20230320 170 | SUMMARY:PMAP 8441: Reading report 10 171 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 172 | DTSTAMP:20230227T164513Z 173 | END:VEVENT 174 | BEGIN:VEVENT 175 | UID:ical-6c8566b6-e60e-47e0-9d6d-2bc501b1e4f9 176 | DTSTART;VALUE=DATE:20230327 177 | DTEND;VALUE=DATE:20230328 178 | SUMMARY:PMAP 8441: (Topic 11) Latin America 179 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/11-class.html 180 | DTSTAMP:20230227T164513Z 181 | END:VEVENT 182 | BEGIN:VEVENT 183 | UID:ical-173e5b51-f991-4bbe-929c-123572fb239f 184 | DTSTART;VALUE=DATE:20230326 185 | DTEND;VALUE=DATE:20230327 186 | SUMMARY:PMAP 8441: Reading report 11 187 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 188 | DTSTAMP:20230227T164513Z 189 | END:VEVENT 190 | BEGIN:VEVENT 191 | UID:ical-c0a902b3-3e00-4fd4-83d4-76a14bf085ba 192 | DTSTART;VALUE=DATE:20230403 193 | DTEND;VALUE=DATE:20230404 194 | SUMMARY:PMAP 8441: (Topic 12) Africa 195 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/12-class.html 196 | DTSTAMP:20230227T164513Z 197 | END:VEVENT 198 | BEGIN:VEVENT 199 | UID:ical-db60d0e4-1612-442a-99d4-f8138b2008c0 200 | DTSTART;VALUE=DATE:20230402 201 | DTEND;VALUE=DATE:20230403 202 | SUMMARY:PMAP 8441: Reading report 12 203 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 204 | DTSTAMP:20230227T164513Z 205 | END:VEVENT 206 | BEGIN:VEVENT 207 | UID:ical-40053a1a-266c-4bf4-b6a9-69b7c95faf3c 208 | DTSTART;VALUE=DATE:20230410 209 | DTEND;VALUE=DATE:20230411 210 | SUMMARY:PMAP 8441: (Topic 13) Middle East and North Africa 211 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/13-class.html 212 | DTSTAMP:20230227T164513Z 213 | END:VEVENT 214 | BEGIN:VEVENT 215 | UID:ical-bd5f16e4-3ba7-4896-842b-84b1ed8dbc20 216 | DTSTART;VALUE=DATE:20230409 217 | DTEND;VALUE=DATE:20230410 218 | SUMMARY:PMAP 8441: Reading report 13 219 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 220 | DTSTAMP:20230227T164513Z 221 | END:VEVENT 222 | BEGIN:VEVENT 223 | UID:ical-9a9e382e-0a5e-4651-a838-f9ca042532a9 224 | DTSTART;VALUE=DATE:20230417 225 | DTEND;VALUE=DATE:20230418 226 | SUMMARY:PMAP 8441: (Topic 14) Asia 227 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/14-class.html 228 | DTSTAMP:20230227T164513Z 229 | END:VEVENT 230 | BEGIN:VEVENT 231 | UID:ical-1b101720-2c4d-400f-a66b-1e621b91b7af 232 | DTSTART;VALUE=DATE:20230416 233 | DTEND;VALUE=DATE:20230417 234 | SUMMARY:PMAP 8441: Reading report 14 235 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 236 | DTSTAMP:20230227T164513Z 237 | END:VEVENT 238 | BEGIN:VEVENT 239 | UID:ical-d6c118dd-9e85-48fa-bcf3-3a94a75973e5 240 | DTSTART;VALUE=DATE:20230427 241 | DTEND;VALUE=DATE:20230428 242 | SUMMARY:PMAP 8441: Policy brief 243 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/policy-brief.html 244 | DTSTAMP:20230227T164513Z 245 | END:VEVENT 246 | END:VCALENDAR 247 | -------------------------------------------------------------------------------- /_site/files/schedule.ics: -------------------------------------------------------------------------------- 1 | BEGIN:VCALENDAR 2 | PRODID:ATFutures/calendar 3 | VERSION:2.0 4 | CALSCALE:GREGORIAN 5 | METHOD:PUBLISH 6 | BEGIN:VEVENT 7 | UID:ical-b3c3807e-2c30-4e80-b7e0-0042b9fd82e7 8 | DTSTART;VALUE=DATE:20230109 9 | DTEND;VALUE=DATE:20230110 10 | SUMMARY:PMAP 8441: (Topic 1) Introduction, historical development of public administration and management, and recent critiques 11 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/01-class.html 12 | DTSTAMP:20230227T164513Z 13 | END:VEVENT 14 | BEGIN:VEVENT 15 | UID:ical-9d800bf1-d251-42e9-926e-6b894833667b 16 | DTSTART;VALUE=DATE:20230116 17 | DTEND;VALUE=DATE:20230117 18 | SUMMARY:PMAP 8441: (Topic 2) Rediscovery of bureaucracy and good governance 19 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/02-class.html 20 | DTSTAMP:20230227T164513Z 21 | END:VEVENT 22 | BEGIN:VEVENT 23 | UID:ical-4612ecf7-cd10-453d-b877-49ce8939e5ac 24 | DTSTART;VALUE=DATE:20230115 25 | DTEND;VALUE=DATE:20230116 26 | SUMMARY:PMAP 8441: Reading report 2 27 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 28 | DTSTAMP:20230227T164513Z 29 | END:VEVENT 30 | BEGIN:VEVENT 31 | UID:ical-757f0ff1-d229-4a3f-9208-6d0c30f6ba63 32 | DTSTART;VALUE=DATE:20230123 33 | DTEND;VALUE=DATE:20230124 34 | SUMMARY:PMAP 8441: (Topic 3) Quality of government and governance outcomes 35 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/03-class.html 36 | DTSTAMP:20230227T164513Z 37 | END:VEVENT 38 | BEGIN:VEVENT 39 | UID:ical-46fb07e2-531b-4ccd-b3d0-2eeb7f70313c 40 | DTSTART;VALUE=DATE:20230122 41 | DTEND;VALUE=DATE:20230123 42 | SUMMARY:PMAP 8441: Reading report 3 43 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 44 | DTSTAMP:20230227T164513Z 45 | END:VEVENT 46 | BEGIN:VEVENT 47 | UID:ical-7104f949-8f30-40ec-8bba-484934ef83b5 48 | DTSTART;VALUE=DATE:20230206 49 | DTEND;VALUE=DATE:20230207 50 | SUMMARY:PMAP 8441: Data-based essay 51 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/data-exploration.html 52 | DTSTAMP:20230227T164513Z 53 | END:VEVENT 54 | BEGIN:VEVENT 55 | UID:ical-ca454b77-a7b7-4110-99a7-b295d4269c7a 56 | DTSTART;VALUE=DATE:20230130 57 | DTEND;VALUE=DATE:20230131 58 | SUMMARY:PMAP 8441: (Topic 4) Institutions 59 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/04-class.html 60 | DTSTAMP:20230227T164513Z 61 | END:VEVENT 62 | BEGIN:VEVENT 63 | UID:ical-c4ea9e2d-5dff-4f03-a994-3f4f2cbea56f 64 | DTSTART;VALUE=DATE:20230129 65 | DTEND;VALUE=DATE:20230130 66 | SUMMARY:PMAP 8441: Reading report 4 67 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 68 | DTSTAMP:20230227T164513Z 69 | END:VEVENT 70 | BEGIN:VEVENT 71 | UID:ical-308f1607-84ca-48a6-9035-2547a9e15898 72 | DTSTART;VALUE=DATE:20230206 73 | DTEND;VALUE=DATE:20230207 74 | SUMMARY:PMAP 8441: (Topic 5) Bureaucratic structures, politicization, and governance outcomes 75 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/05-class.html 76 | DTSTAMP:20230227T164513Z 77 | END:VEVENT 78 | BEGIN:VEVENT 79 | UID:ical-f7fbfadb-0a2b-4a2e-8558-91e3c492d6c0 80 | DTSTART;VALUE=DATE:20230205 81 | DTEND;VALUE=DATE:20230206 82 | SUMMARY:PMAP 8441: Reading report 5 83 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 84 | DTSTAMP:20230227T164513Z 85 | END:VEVENT 86 | BEGIN:VEVENT 87 | UID:ical-3ab3c996-1738-49ae-9bfb-bc8a22917f41 88 | DTSTART;VALUE=DATE:20230213 89 | DTEND;VALUE=DATE:20230214 90 | SUMMARY:PMAP 8441: (Topic 6) Bureaucratic structures, politicization, and bureaucratic behavior 91 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/06-class.html 92 | DTSTAMP:20230227T164513Z 93 | END:VEVENT 94 | BEGIN:VEVENT 95 | UID:ical-f8ad53fd-3810-4cbd-b407-ae2e0420ec2c 96 | DTSTART;VALUE=DATE:20230212 97 | DTEND;VALUE=DATE:20230213 98 | SUMMARY:PMAP 8441: Reading report 6 99 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 100 | DTSTAMP:20230227T164513Z 101 | END:VEVENT 102 | BEGIN:VEVENT 103 | UID:ical-4292cc16-a9b9-4b5f-b9ca-8d58df67d09a 104 | DTSTART;VALUE=DATE:20230220 105 | DTEND;VALUE=DATE:20230221 106 | SUMMARY:PMAP 8441: (Topic 7) Civil society and good governance 107 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/07-class.html 108 | DTSTAMP:20230227T164513Z 109 | END:VEVENT 110 | BEGIN:VEVENT 111 | UID:ical-9ef6a241-2835-4010-b7de-eb89c2e57ab7 112 | DTSTART;VALUE=DATE:20230219 113 | DTEND;VALUE=DATE:20230220 114 | SUMMARY:PMAP 8441: Reading report 7 115 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 116 | DTSTAMP:20230227T164513Z 117 | END:VEVENT 118 | BEGIN:VEVENT 119 | UID:ical-63c40e62-bf80-4435-aab2-8a1a034572d4 120 | DTSTART;VALUE=DATE:20230306 121 | DTEND;VALUE=DATE:20230307 122 | SUMMARY:PMAP 8441: (Topic 8) Civil society across countries 123 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/08-class.html 124 | DTSTAMP:20230227T164513Z 125 | END:VEVENT 126 | BEGIN:VEVENT 127 | UID:ical-676749d9-122a-4a0b-89eb-228974d39549 128 | DTSTART;VALUE=DATE:20230305 129 | DTEND;VALUE=DATE:20230306 130 | SUMMARY:PMAP 8441: Reading report 8 131 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 132 | DTSTAMP:20230227T164513Z 133 | END:VEVENT 134 | BEGIN:VEVENT 135 | UID:ical-b9a021f6-65e1-4662-8672-d61bdf262c5d 136 | DTSTART;VALUE=DATE:20230306 137 | DTEND;VALUE=DATE:20230307 138 | SUMMARY:PMAP 8441: (Topic 9) ~~Representative bureaucracy and philanthropy~~ 139 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/09-class.html 140 | DTSTAMP:20230227T164513Z 141 | END:VEVENT 142 | BEGIN:VEVENT 143 | UID:ical-76f5740f-3da5-4387-a078-fa58b0380396 144 | DTSTART;VALUE=DATE:20230305 145 | DTEND;VALUE=DATE:20230306 146 | SUMMARY:PMAP 8441: ~~Reading report 9~~ 147 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 148 | DTSTAMP:20230227T164513Z 149 | END:VEVENT 150 | BEGIN:VEVENT 151 | UID:ical-9aeae366-313c-4d09-9117-42c3ea187374 152 | DTSTART;VALUE=DATE:20230320 153 | DTEND;VALUE=DATE:20230321 154 | SUMMARY:PMAP 8441: Theory in real life essay 155 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/theory-in-real-life.html 156 | DTSTAMP:20230227T164513Z 157 | END:VEVENT 158 | BEGIN:VEVENT 159 | UID:ical-e860bab1-7822-4c90-b99f-2c1dda7049c6 160 | DTSTART;VALUE=DATE:20230320 161 | DTEND;VALUE=DATE:20230321 162 | SUMMARY:PMAP 8441: (Topic 10) The OECD 163 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/10-class.html 164 | DTSTAMP:20230227T164513Z 165 | END:VEVENT 166 | BEGIN:VEVENT 167 | UID:ical-c4d35b56-6b61-4be4-a823-edcf20a7d690 168 | DTSTART;VALUE=DATE:20230319 169 | DTEND;VALUE=DATE:20230320 170 | SUMMARY:PMAP 8441: Reading report 10 171 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 172 | DTSTAMP:20230227T164513Z 173 | END:VEVENT 174 | BEGIN:VEVENT 175 | UID:ical-6c8566b6-e60e-47e0-9d6d-2bc501b1e4f9 176 | DTSTART;VALUE=DATE:20230327 177 | DTEND;VALUE=DATE:20230328 178 | SUMMARY:PMAP 8441: (Topic 11) Latin America 179 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/11-class.html 180 | DTSTAMP:20230227T164513Z 181 | END:VEVENT 182 | BEGIN:VEVENT 183 | UID:ical-173e5b51-f991-4bbe-929c-123572fb239f 184 | DTSTART;VALUE=DATE:20230326 185 | DTEND;VALUE=DATE:20230327 186 | SUMMARY:PMAP 8441: Reading report 11 187 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 188 | DTSTAMP:20230227T164513Z 189 | END:VEVENT 190 | BEGIN:VEVENT 191 | UID:ical-c0a902b3-3e00-4fd4-83d4-76a14bf085ba 192 | DTSTART;VALUE=DATE:20230403 193 | DTEND;VALUE=DATE:20230404 194 | SUMMARY:PMAP 8441: (Topic 12) Africa 195 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/12-class.html 196 | DTSTAMP:20230227T164513Z 197 | END:VEVENT 198 | BEGIN:VEVENT 199 | UID:ical-db60d0e4-1612-442a-99d4-f8138b2008c0 200 | DTSTART;VALUE=DATE:20230402 201 | DTEND;VALUE=DATE:20230403 202 | SUMMARY:PMAP 8441: Reading report 12 203 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 204 | DTSTAMP:20230227T164513Z 205 | END:VEVENT 206 | BEGIN:VEVENT 207 | UID:ical-40053a1a-266c-4bf4-b6a9-69b7c95faf3c 208 | DTSTART;VALUE=DATE:20230410 209 | DTEND;VALUE=DATE:20230411 210 | SUMMARY:PMAP 8441: (Topic 13) Middle East and North Africa 211 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/13-class.html 212 | DTSTAMP:20230227T164513Z 213 | END:VEVENT 214 | BEGIN:VEVENT 215 | UID:ical-bd5f16e4-3ba7-4896-842b-84b1ed8dbc20 216 | DTSTART;VALUE=DATE:20230409 217 | DTEND;VALUE=DATE:20230410 218 | SUMMARY:PMAP 8441: Reading report 13 219 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 220 | DTSTAMP:20230227T164513Z 221 | END:VEVENT 222 | BEGIN:VEVENT 223 | UID:ical-9a9e382e-0a5e-4651-a838-f9ca042532a9 224 | DTSTART;VALUE=DATE:20230417 225 | DTEND;VALUE=DATE:20230418 226 | SUMMARY:PMAP 8441: (Topic 14) Asia 227 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/class/14-class.html 228 | DTSTAMP:20230227T164513Z 229 | END:VEVENT 230 | BEGIN:VEVENT 231 | UID:ical-1b101720-2c4d-400f-a66b-1e621b91b7af 232 | DTSTART;VALUE=DATE:20230416 233 | DTEND;VALUE=DATE:20230417 234 | SUMMARY:PMAP 8441: Reading report 14 235 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/reading-report.html 236 | DTSTAMP:20230227T164513Z 237 | END:VEVENT 238 | BEGIN:VEVENT 239 | UID:ical-d6c118dd-9e85-48fa-bcf3-3a94a75973e5 240 | DTSTART;VALUE=DATE:20230427 241 | DTEND;VALUE=DATE:20230428 242 | SUMMARY:PMAP 8441: Policy brief 243 | DESCRIPTION:https://compasp23.classes.andrewheiss.com/assignment/policy-brief.html 244 | DTSTAMP:20230227T164513Z 245 | END:VEVENT 246 | END:VCALENDAR 247 | -------------------------------------------------------------------------------- /md/B/index.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Análise do material de pesquisa" 3 | # sidebar: false 4 | # toc: false 5 | # page-layout: full 6 | fig-align: center 7 | --- 8 | 9 | ## O método Zettelkasten 10 | 11 |
![](zk/__zk01.png) 12 | 13 | : Imagens de [David B. Clear](https://writingcooperative.com/zettelkasten-how-one-german-scholar-was-so-freakishly-productive-997e4e0ca125). 14 |
15 | 16 | A expressão "Caixa fichário" é uma tradução de *Zettelkasten*. Literalmente, ela significa apenas uma caixa onde são guardadas fichas. Esse é também o nome de um método de trabalho desenvolvido pelo sociólogo Niklas Luhmann e que hoje é mais conhecido e utilizado no meio acadêmico de língua alemã. Apesar de soar como um método de organização ou armazenamento, esse certamente não é o caso. Antes de mais nada, a caixa-fichário é uma interlocutora em um diálogo. Mas como esse diálogo é construído? 17 | 18 |
![](zk/__zk02.png)
19 | 20 | Normalmente as *teses* e ideias que encontramos na bibliografia secundária, e mesmo em nossas anotações, se encontram condensadas e articuladas em um texto ou fio argumentativo. Para criar novas associações e forjar novas relações entre conceitos, o primeiro passo é praticar a **divisão**. 21 | 22 |
![](zk/__zk03.png)
23 | 24 | Com as ideias atomizadas em fichas, e removidas do seu contexto de origem, há uma ampla margem para a construção de diferentes formas de vinculação com outras ideias. Dizendo de outro modo, podemos praticar a **reunião** de diferentes modos: alguns diretos outros indiretos. 25 | 26 | Um primeiro modo possível, e indireto, ao qual estamos acostumados, é por meio do uso de pastas. Nesse modelo, baseado na experiência concreta de organização em arquivos, cada ficha pertence a uma única caixa (ou sequência, como veremos). É um modo muito útil e tradicional de manter as coisas organizadas. 27 | 28 |
![](zk/__zk04.png)
29 | 30 | Um segundo modo possível de associação, também indireto, desconsidera a limitação física e torna possível que uma ficha participe de mais de um agrupamento. Isso é feito por meio de etiquetas, `#tags`, que podem formar diversos grupos sobrepostos para servir a diferentes propósitos. 31 | 32 |
![](zk/__zk05.png)
33 | 34 | Um terceiro modo, por fim, são os **links diretos** entre ideias dentro do nosso sistema. Novamente, aqui não há limites para o número de ligações possíveis entre as fichas. 35 | 36 |
![](zk/__zk06.png)
37 | 38 | Mas é claro que para que essas ligações sejam possíveis, é preciso que haja um sistema de endereçamento das fichas que torne possível referencia-las e incluí-las em diferentes etiquetas ou ligações diretas. Dizendo de outro modo, tudo dentro do sistema precisa de um endereço fixo que não sofrerá nenhum tipo de alteração com o decorrer do tempo de modo a não romper qualquer ligação existente. 39 | 40 | ## Pastas, etiquetas e links na caixa fichário 41 | 42 | Nesse método de trabalho baseado em anotações em fichas concretas, como era o caso do *Zettelkasten* do Luhmann, a solução consiste em numerar as notas à medida em que são adicionadas à caixa fichário. 43 | 44 |
![](zk/__zk07.png)
45 | 46 | Sempre que possível, uma nota será incluída atrás de uma outra nota existente com a qual dialogue. Se já houver uma outra nota atrás que continue a sequência, sem problemas, ela pode ser adicionada como um subitem na numeração (`1, 2, 2a, 3, 4, 4a, 4b, 5`). Quando não for possível, por ela não dialogar com nenhuma outra nota existente, ela entra no fim da sequência. 47 | 48 |
![](zk/__zk08.png)
49 | 50 | Há dois detalhes relevantes sobre esse modo de organização. 51 | 52 | 1. Ele baseia-se no modelo de ligação indireto das pastas, já que uma nota essencialmente serve como pasta (ou início da sequência de subitens) para as demais. 53 | 54 | 2. Com a possibilidade de desdobrar cada item existente, é como se pudéssemos manter diversos diálogos em paralelo. Cada ficha será sempre o início de um fio que pode se desdobrar indefinidamente. 55 | 56 |
![](zk/__zk09.png)
57 | 58 | Os dois outros modos de associação entre fichas descritos anteriormente aparecem no sistema do seguinte modo: 59 | 60 | 1. Etiquetas são atribuídas às fichas anotando-as na própria ficha e registrando em uma ficha adicional o endereço de todas as fichas com aquela etiqueta. 61 | 62 | 2. Ligações diretas são, similarmente, anotadas no corpo de cada ficha. Eventualmente uma nova ficha pode ser necessária para justificar, esclarecer ou desdobrar a razão daquele link direto. 63 | 64 |
![](zk/__zk12.png)
65 | 66 | ## Dialogando 67 | 68 | Pela descrição e pelas imagens, fica claro como o método da caixa fichário serve para criar novas redes neurais com um aspecto profundamente orgânico: os fios são potencialmente infindáveis e de tamanhos variados. Certos agrupamentos são coesos, outros caóticos e para várias fichas talvez ainda não haja mais de um agrupamento possível. Todas essas característica são, na visão de Luhmann, elementos da individualidade da nossa caixa fichário como parceira de conversa. Não há uma simples aplicação de critérios e categorias exógenas para estruturar a caixa; ao invés, todo e qualquer princípio de organização deve emergir a partir das necessidades impostas pelo próprio conteúdo. 69 | 70 | A esse respeito é importante observar que Luhmann nunca modificava a posição ou o endereço de uma ficha. Sempre que uma nova estrutura emergia do conteúdo, dando origem a novos critérios de organização ou ordenamento, ele produzia uma nova ficha indexando os endereços e registrando a racionalidade por trás daquela relação. A ideia por trás desse procedimento é a de que todas estruturas emergentes são temporárias e sujeitas a modificações, de modo que não faria sentido reorganizar todo o conteúdo da caixa fichário e permanecer sempre preso àquela estrutura. A organização em pastas é, portanto, uma forma de organização mais ou menos fixa (exceto pela possibilidade de adicionar novas fichas). 71 | 72 | É com o passar dos anos, e depois da aquisição de uma massa crítica, que ela passa a ser verdadeiramente útil. Cada vez que buscarmos junto a ela elementos para explorar uma determinada questão, teremos assegurada uma possibilidade de um novo diálogo. À medida que o diálogo avança, novas perspectivas emergem e com elas novos princípios com capacidade de explicar e ordenar elementos previamente dispersos ou apenas indiretamente relacionados. 73 | 74 | ::: {.callout-tip} 75 | ## Softwares para um Zettelkasten digital 76 | 77 | - [Scrivener](https://www.literatureandlatte.com/scrivener/overview) - processador de texto mais avançado para acadêmicos. 78 | - [Obsidian](https://obsidian.md/) - software de anotações popular, com gráfico de relações e sistema de plugins para novas funções e recursos. 79 | - [Zettlr](https://www.zettlr.com/) - software de anotações gratuito e open-source. 80 | - [Notion](https://www.notion.so/) - software de anotações que pode ser utilizado gratuitamente. 81 | - [Roam Research](https://roamresearch.com/) 82 | - [Logseq](https://logseq.com/) 83 | ::: 84 | 85 | 86 | Veja ainda: 87 | 88 | - [Andy Matuschak's working notes](https://notes.andymatuschak.org/) 89 | - [Create a Zettelkasten for your Notes to Improve Thinking and Writing](https://zettelkasten.de/posts/zettelkasten-improves-thinking-writing/) 90 | - [Communicating with Slip Boxes - An Empirical Account](http://luhmann.surge.sh/communicating-with-slip-boxes) 91 | - [Zettelkasten — How One German Scholar Was So Freakishly Productive](https://writingcooperative.com/zettelkasten-how-one-german-scholar-was-so-freakishly-productive-997e4e0ca125) 92 | - [The Zettelkasten Method](https://www.lesswrong.com/posts/NfdHG6oHBJ8Qxc26s/the-zettelkasten-method-1) 93 | - [How to take smart notes review](https://www.lesswrong.com/posts/T382CLwAjsy3fmecf/how-to-take-smart-notes-ahrens-2017) 94 | 95 | 96 | ### Organização 97 | 98 | Um repositório de referências e anotações mais interessante para grupos ativos de pesquisa parece ser o Zotero Groups. O [Zotero](https://www.zotero.org) é um software livre, que permite a organização de referências em coleções, a inserção de citações e a formatação automática de referências em documentos. Já o [Zotero Groups](https://www.zotero.org/groups/) funciona como uma ferramenta na qual é possível organizar grupos de pesquisa com referências e arquivos compartilhados no qual todos podem visualizar e editar as mesmas referências e arquivos (de acordo com as configurações do grupo), sendo que há a possibilidade de compartilhamento com terceiros via interface online ou utilizando uma API. Há vários outros gerenciadores bibliográficos além do Zotero, mas nenhum possui ferramentas de colaboração semelhantes. 99 | 100 | 101 | ### Análise 102 | 103 | - [Gephi](https://gephi.org/) 104 | - [Tableau](https://www.tableau.com/) 105 | - [RAWGraphs](https://rawgraphs.io/) 106 | - [Flourish](https://flourish.studio/) 107 | - [Datawrapper](https://www.datawrapper.de/) 108 | - [Infogram](https://infogram.com/) 109 | - [Palladio](https://hdlab.stanford.edu/palladio/) 110 | - [Juxta](https://juxtacommons.org/) 111 | - [OpenRefine](https://openrefine.org/) 112 | - [Omeka](https://omeka.org/) 113 | - [Scalar](https://scalar.me/anvc/) 114 | - [AntConc](https://www.laurenceanthony.net/software/antconc/) 115 | 116 | 117 | ### Softwares de análise qualitativa 118 | 119 | - [Atlas.ti](https://atlasti.com/) 120 | - [Voyant Tools](https://voyant-tools.org/) 121 | - [NVivo](https://www.qsrinternational.com/nvivo-qualitative-data-analysis-software/home) 122 | - [MAXQDA](https://www.maxqda.com/) 123 | - [Dedoose](https://www.dedoose.com/) 124 | - [Qiqqa](https://www.qiqqa.com/) 125 | - [Quirkos](https://www.quirkos.com/) 126 | - [RQDA](https://rqda.r-forge.r-project.org/) 127 | - [Transana](https://www.transana.com/) 128 | - [Weft QDA](https://www.pressure.to/qda/) 129 | - [CATMA](https://catma.de/) 130 | - [Taguette](https://taguette.org/) 131 | - [Qcoder](https://qcoder.qdaproject.org/) 132 | - [QDA Miner](https://provalisresearch.com/products/qualitative-data-analysis-software/) 133 | 134 | 135 | ### Mineração de dados 136 | 137 | - [Orange](https://orangedatamining.com/) 138 | - [RapidMiner](https://rapidminer.com/) 139 | - [KNIME](https://www.knime.com/) 140 | - [Weka](https://www.cs.waikato.ac.nz/ml/weka/) 141 | - [Rattle](https://rattle.togaware.com/) 142 | - [R](https://www.r-project.org/) 143 | - [Python](https://www.python.org/) 144 | - [Julia](https://julialang.org/) 145 | - [Scala](https://www.scala-lang.org/) 146 | - [Apache Spark](https://spark.apache.org/) 147 | - [Google Colab](https://colab.research.google.com/) 148 | - [Anaconda](https://www.anaconda.com/) 149 | - [Jupyter](https://jupyter.org/) 150 | - [JupyterLab](https://jupyterlab.readthedocs.io/en/stable/) 151 | - [Jupyter Notebook](https://jupyter-notebook.readthedocs.io/en/stable/) 152 | 153 | ### IDEs 154 | 155 | - [Visual Studio Code](https://code.visualstudio.com/) com [Github Co-Pilot](https://copilot.github.com/) e [Quarto Extension for Visual Studio Code](https://quarto.org/docs/using-quarto-with-vscode.html) 156 | - [RStudio](https://rstudio.com/), [RStudio Cloud](https://rstudio.cloud/), [RStudio Server](https://rstudio.com/products/rstudio-server/), [RStudio Package Manager](https://rstudio.com/products/package-manager/) 157 | 158 | -------------------------------------------------------------------------------- /md/C/index.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Publicação e divulgação" 3 | # sidebar: false 4 | # toc: false 5 | # page-layout: full 6 | --- 7 | 8 | 9 | ## Linguagens de Marcação 10 | 11 | Como um computador é capaz de estabelecer a *função* dos diferentes elementos textuais? Em outras palavras, como ele poderia separar um título e o corpo do texto? Um texto com link e um texto sem link? Como ele poderia saber que uma determinada seção não é parte do texto, mas apenas contém informações sobre ele? 12 | 13 | A resposta para estas questões pode ser encontrada em um recurso conhecido como *linguagem de marcação* (*markup language*). Em linha gerais, cada linguagem de marcação funciona como um conjunto de regras para agregar atributos a elementos do texto utilizando etiquetas. Estas etiquetas indicam para um programa que uma parte do texto tem uma determinada função ou que deve ser exibida de tal e tal modo. Nesta seção, veremos alguns exemplos do uso da sintaxe de algumas das linguagens mais conhecidas. 14 | 15 | ### XML 16 | 17 | Um dado importante que nós leigos costumamos ignorar é que todo texto com estrutura em um computador (sem exceção) usa alguma linguagem de marcação. Programas como o *Microsoft Word* e outros processadores de texto também costumam utilizar (um tipo próprio de) *XML*. Quando selecionamos alguma palavra e a transformamos em um título, por exemplo, o programa adiciona as etiquetas ao seu redor sem que nos demos conta.[^16] 18 | 19 | 20 | ### HTML 21 | 22 | A linguagem **HTML** é um excelente exemplo de como funciona uma linguagem de marcação convencional, não-minimalista. Ela usa etiquetas pré-definidas para representar uma página, sendo a linguagem utilizadas pelas páginas da internet e pelos e-books (arquivos com extensão `.``epub`, `.mobi` e `.azw`) (*cf.* [W3Schools](https://www.w3schools.com/)). Para definir as seções utiliza-se: `<``head``>`, ``, `<``div``>`; para definir elementos: `

`, `<``table``>`, `<``form``>`, `<``image``>` e ``; para definir a formatação do texto: `

`, `

`, `

` etc., `` e ``. 23 | 24 | ```html 25 | 26 | 27 | 28 |

Título de nível 1

29 |

Título de nível 2

30 |

Texto em itálico, e texto em negrito.

31 |

Texto de uma citação em bloco.

32 |

E um link.

33 | 34 | 35 | ``` 36 | 37 | Trata-se de um exemplo muito simples de texto em HTML. Exemplos mais complexos podem ser encontrados selecionando um item aleatório de uma página da internet com o clique secundário e selecionando em seguida a opção "Inspecionar Elemento", disponível na maior parte dos navegadores. A linguagem **XML** é um desdobramento de HTML e funciona do mesmo modo, com uma diferença significativa: não há etiquetas pré-definidas. É uma linguagem que serve, sobretudo, para guardar dados de uma maneira estruturada. 38 | 39 | ### Markdown 40 | 41 | **Markdown**, em primeiro lugar, é a linguagem mais simples e minimalista disponível hoje. Seu nome é um trocadilho com a expressão *markup language* (*markup* ↑ *markdown* ↓) e arquivos utilizando esta linguagem geralmente levam a extensão `.md`.[^14] Ela foi [criada em 2004](https://daringfireball.net/projects/markdown/) por [John Gruber](https://en.wikipedia.org/wiki/John_Gruber) e [Aaron Swartz](http://www.aaronsw.com/weblog/001189) com o propósito de possibilitar a geração de texto HTML (utilizado em todas as páginas da web) a partir de uma alternativa mais legível e com menos distrações (compare o bloco abaixo em *Markdown* com o seguinte utilizando *HTML*). 42 | 43 | 44 | ```markdown 45 | # Título de nível 1 46 | 47 | ## Título de nível 2 48 | 49 | Texto em *itálico*, e texto em **negrito**. 50 | 51 | > Texto de uma citação em bloco. 52 | 53 | E um [link](http://www.google.com). 54 | ``` 55 | 56 | O que começou como uma opção bastante simples voltada apenas para a internet, evoluiu ao longo dos últimos 20 anos para se tornar uma linguagem extremamente popular com um bom conjunto de funcionalidades que preenche todos os requisitos para a produção de textos técnicos e acadêmicos (*cf.* [@Krewinkel2017]). Isso foi possível graças ao desenvolvimento do Pandoc, um conversor universal de documentos desenvolvido pelo professor de filosofia J. MacFarlane ([-@Pandoc]), que torna fácil a produção de arquivos em qualquer formato partindo de um simples arquivo em markdown.[^15] 57 | 58 | Para o humanista digital esta é uma linguagem extremamente relevante por dois motivos: (i.) é um dos meios mais fáceis marcar e estruturar um texto de fonte primária excessivamente longo; (ii.) é um dos meios mais práticos de registrar e manter anotações de pesquisa a longo prazo em um formato agnóstico que pode ser lido por qualquer programa e que não demanda que o usuário trabalhe constantemente utilizando um layout de impressão (*preview*), como se o texto fosse destinado à impressão imediata. 59 | 60 | ### LaTeX 61 | 62 | É interessante mencionar ainda a existência de uma linguagem chamada **LaTeX** (pronuncia-se *latek*, e não látex). Trata-se de um sistema de tipografia de alta qualidade, utilizado para preparar livros e artigos para publicação. Nas ciências naturais e na matemática estudantes aprenderem desde cedo a escrever utilizando LaTeX para facilitar o trabalho com equações. Nas ciências humanas dificilmente encontramos a oferta ou a exigência de conhecimentos sobre LaTeX. Ainda sim, conhecer um pouco sobre o sistema pode ser excepcionalmente útil para a preparação de textos para a publicação.[^17] 63 | 64 | O propósito de compartilhar estes exemplos das diferentes linguagens de marcação é auxiliar leitores a se familiarizarem com o conceito, pois aprender a ler e utilizar cada uma delas em detalhe é um processo que demanda tempo e disposição para estudar a documentação com as especificações de cada uma delas. Um recurso que pode auxiliar muito neste processo são os *editores de texto*, que contam com funções específicas para lidar com a sintaxe das linguagens de marcação, como, por exemplo, (i.) o realce da sintaxe, (ii.) a opção de autocompletar e (iii.) a análise em busca de erros.[^18] 65 | 66 | ::: {.callout .callout-tip} 67 | Estudantes tem acesso gratuito ao [Github Pro](https://education.github.com/pack) por meio do [Github Education Pack](https://education.github.com/pack). Para ter acesso, basta criar uma conta no Github e solicitar o pacote utilizando o seu e-mail institucional (`@pucminas`). Com o Github Pro, é possível utilizar o [Github Co-Pilot](https://copilot.github.com/), um assistente de programação baseado em "inteligência" artificial.^[O Co-Pilot pode ser utilizado como uma extensão em um IDE (*Integrated Development Environment*). Primeiro, baixe o [Visual Studio Code](https://code.visualstudio.com/); em seguida, instale a extensão do [Co-Pilot](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot). Por fim, faça login no Github Co-Pilot no VS Code.]. Além disso, você terá acesso a diversos outros serviços, como o [Overleaf](https://www.overleaf.com), os IDEs do [Jet Brains](https://www.jetbrains.com/) e mais. Veja ainda: [GitHub Guides](https://guides.github.com/), [GitHub Desktop](https://desktop.github.com/), [GitHub Pages](https://pages.github.com/) 68 | ::: 69 | 70 | 71 | 72 | **Veja ainda:** 73 | 74 | - [Pandoc](https://pandoc.org/), [Quarto](https://quarto.org/) - para converter Markdown em documentos de Word, páginas HTML e arquivos PDF (e vice-versa) 75 | - [Zenodo](https://zenodo.org/) - para criar DOIs para publicações digitais 76 | - [Microsoft Word](https://www.microsoft.com/pt-br/microsoft-365/word) 77 | - [LibreOffice](https://pt-br.libreoffice.org/) 78 | - [Google Docs](https://www.google.com/intl/pt-BR/docs/about/) 79 | - [Figshare](https://figshare.com/) 80 | - [Open Science Framework](https://osf.io/), [Open Science Framework Preprints](https://osf.io/preprints/) 81 | - [Cite Tools Quarto Extension at GitHub](https://) 82 | 83 | 84 | 85 | 86 | --- 87 | references: 88 | - id: Krewinkel2017 89 | author: 90 | - family: Krewinkel 91 | given: Albert 92 | - family: Winkler 93 | given: Robert 94 | citation-key: Krewinkel2017 95 | container-title: PeerJ Computer Science 96 | issued: 97 | - year: 2017 98 | page: e112 99 | title: >- 100 | Formatting Open Science: agilely creating multiple document formats for 101 | academic manuscripts with Pandoc Scholar 102 | type: article-journal 103 | volume: '3' 104 | - id: Pandoc 105 | author: 106 | - family: MacFarlane 107 | given: John 108 | call-number: 2022-02 109 | citation-key: Pandoc 110 | issued: 111 | - year: 2006 112 | title: 'Pandoc: A Universal Document Converter' 113 | title-short: Pandoc 114 | type: article-journal 115 | --- 116 | 117 | 118 | 119 | 120 | [^14]: A rigor, não há nada que obrigue o uso de uma extensão específica em arquivos de qualquer uma das linguagens apresentadas aqui. Todos contêm apenas texto plano e poderiam ser modificados para utilizar a extensão `.txt` sem qualquer prejuízo ou perda de dados. A extensão é apenas um modo de indicar a sintaxe utilizada para o programa que irá abrir o arquivo. 121 | 122 | [^15]: "Because pandoc's intermediate representation of a document is less expressive than many of the formats it converts between, one should not expect perfect conversions between every format and every other. Pandoc attempts to preserve the structural elements of a document, but not formatting details such as margin size. And some document elements, such as complex tables, may not fit into pandoc's simple document model. *While conversions from pandoc's Markdown to all formats aspire to be perfect, conversions from formats more expressive than pandoc's Markdown can be expected to be lossy.*" [@Pandoc] (ênfase nossa). Utilizando o Pandoc, é possível transformar um texto em Markdown em praticamente qualquer outro formato existente, de um eBook a um livro acabado, passando por documentos em `rtf`, `latex`, `docx` ou `html`. É mais fácil obter um produto com alta qualidade tipográfica utilizando Markdown + Pandoc do que qualquer outro processador de texto, como o *Word* (este texto, inclusive, foi redigido utilizando markdown). 123 | 124 | [^16]: Não há nenhum problema nesse procedimento, mas ao utilizar o formato docx, por exemplo, é importante ter consciência de que estamos armazenando nossas anotações em uma linguagem que apenas um programa específico de uma empresa privada consegue interpretar e exibir. 125 | 126 | [^17]: Para a preparação de minha própria tese, criei um modelo que facilita a conversão de documentos do formato Markdown para LaTeX (cf. `github.com/bcdavasconcelos/ABNTeX-o-matic`). 127 | 128 | [^18]: Tendo em vista que a maior parte dos editores de texto compartilha de um núcleo comum de funções, como integração com o sistema git de versões e acesso integrado ao terminal/shell, a questão de qual programa utilizar é, em grande medida, uma questão de preço, preferências pessoais e de compatibilidade. Opções para Windows e Linux incluem [Visual Studio Code](https://code.visualstudio.com/) e [Atom](https://atom.io); opções para macOS incluem, além destas três últimas, [Nova](https://nova.app), [TextMate](http://www.macromates.com/) e [BBEdit](https://www.barebones.com/products/bbedit/). Eventualmente algumas tarefas serão mais fáceis de executar em um programa do que em outro, mas, em última instância, todos são bem equipados e capazes de realizar as tarefas mais importantes. 129 | -------------------------------------------------------------------------------- /_extensions/schochastics/academicons/assets/css/all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Academicons 1.9.2 by James Walsh (https://github.com/jpswalsh) and Katja Bercic (https://github.com/katjabercic) 3 | * Fonts generated using FontForge - https://fontforge.org 4 | * Square icons designed to be used alongside Font Awesome square icons - https://fortawesome.github.io/Font-Awesome/ 5 | * Licenses - Font: SIL OFL 1.1, CSS: MIT License 6 | */ 7 | @font-face { 8 | font-family: 'Academicons'; 9 | font-style: normal; 10 | font-weight: 400; 11 | font-display: block; 12 | src:url('../webfonts/academicons.eot'); 13 | src:url('../webfonts/academicons.eot') format('embedded-opentype'), 14 | url('../webfonts/academicons.ttf') format('truetype'), 15 | url('../webfonts/academicons.woff') format('woff'), 16 | url('../webfonts/academicons.svg') format('svg'); 17 | } 18 | .ai { 19 | font-family: 'Academicons'; 20 | font-weight: 400; 21 | -moz-osx-font-smoothing: grayscale; 22 | -webkit-font-smoothing: antialiased; 23 | display: inline-block; 24 | font-style: normal; 25 | font-variant: normal; 26 | text-rendering: auto; 27 | line-height: 1; 28 | } 29 | .ai-academia:before { 30 | content: "\e9af"; 31 | } 32 | .ai-academia-square:before { 33 | content: "\e93d"; 34 | } 35 | .ai-acclaim:before { 36 | content: "\e92e"; 37 | } 38 | .ai-acclaim-square:before { 39 | content: "\e93a"; 40 | } 41 | .ai-acm:before { 42 | content: "\e93c"; 43 | } 44 | .ai-acm-square:before { 45 | content: "\e95d"; 46 | } 47 | .ai-acmdl:before { 48 | content: "\e96a"; 49 | } 50 | .ai-acmdl-square:before { 51 | content: "\e9d3"; 52 | } 53 | .ai-ads:before { 54 | content: "\e9cb"; 55 | } 56 | .ai-ads-square:before { 57 | content: "\e94a"; 58 | } 59 | .ai-africarxiv:before { 60 | content: "\e91b"; 61 | } 62 | .ai-africarxiv-square:before { 63 | content: "\e90b"; 64 | } 65 | .ai-archive:before { 66 | content: "\e955"; 67 | } 68 | .ai-archive-square:before { 69 | content: "\e956"; 70 | } 71 | .ai-arxiv:before { 72 | content: "\e974"; 73 | } 74 | .ai-arxiv-square:before { 75 | content: "\e9a6"; 76 | } 77 | .ai-biorxiv:before { 78 | content: "\e9a2"; 79 | } 80 | .ai-biorxiv-square:before { 81 | content: "\e98b"; 82 | } 83 | .ai-ceur:before { 84 | content: "\e96d"; 85 | } 86 | .ai-ceur-square:before { 87 | content: "\e92f"; 88 | } 89 | .ai-ciencia-vitae:before { 90 | content: "\e912"; 91 | } 92 | .ai-ciencia-vitae-square:before { 93 | content: "\e913"; 94 | } 95 | .ai-clarivate:before { 96 | content: "\e924"; 97 | } 98 | .ai-clarivate-square:before { 99 | content: "\e925"; 100 | } 101 | .ai-closed-access:before { 102 | content: "\e942"; 103 | } 104 | .ai-closed-access-square:before { 105 | content: "\e943"; 106 | } 107 | .ai-conversation:before { 108 | content: "\e94c"; 109 | } 110 | .ai-conversation-square:before { 111 | content: "\e915"; 112 | } 113 | .ai-coursera:before { 114 | content: "\e95f"; 115 | } 116 | .ai-coursera-square:before { 117 | content: "\e97f"; 118 | } 119 | .ai-crossref:before { 120 | content: "\e918"; 121 | } 122 | .ai-crossref-square:before { 123 | content: "\e919"; 124 | } 125 | .ai-cv:before { 126 | content: "\e9a5"; 127 | } 128 | .ai-cv-square:before { 129 | content: "\e90a"; 130 | } 131 | .ai-datacite:before { 132 | content: "\e91c"; 133 | } 134 | .ai-datacite-square:before { 135 | content: "\e91d"; 136 | } 137 | .ai-dataverse:before { 138 | content: "\e9f7"; 139 | } 140 | .ai-dataverse-square:before { 141 | content: "\e9e4"; 142 | } 143 | .ai-dblp:before { 144 | content: "\e94f"; 145 | } 146 | .ai-dblp-square:before { 147 | content: "\e93f"; 148 | } 149 | .ai-depsy:before { 150 | content: "\e97a"; 151 | } 152 | .ai-depsy-square:before { 153 | content: "\e94b"; 154 | } 155 | .ai-doi:before { 156 | content: "\e97e"; 157 | } 158 | .ai-doi-square:before { 159 | content: "\e98f"; 160 | } 161 | .ai-dryad:before { 162 | content: "\e97c"; 163 | } 164 | .ai-dryad-square:before { 165 | content: "\e98c"; 166 | } 167 | .ai-elsevier:before { 168 | content: "\e961"; 169 | } 170 | .ai-elsevier-square:before { 171 | content: "\e910"; 172 | } 173 | .ai-figshare:before { 174 | content: "\e981"; 175 | } 176 | .ai-figshare-square:before { 177 | content: "\e9e7"; 178 | } 179 | .ai-google-scholar:before { 180 | content: "\e9d4"; 181 | } 182 | .ai-google-scholar-square:before { 183 | content: "\e9f9"; 184 | } 185 | .ai-hal:before { 186 | content: "\e92c"; 187 | } 188 | .ai-hal-square:before { 189 | content: "\e92d"; 190 | } 191 | .ai-hypothesis:before { 192 | content: "\e95a"; 193 | } 194 | .ai-hypothesis-square:before { 195 | content: "\e95b"; 196 | } 197 | .ai-ideas-repec:before { 198 | content: "\e9ed"; 199 | } 200 | .ai-ideas-repec-square:before { 201 | content: "\e9f8"; 202 | } 203 | .ai-ieee:before { 204 | content: "\e929"; 205 | } 206 | .ai-ieee-square:before { 207 | content: "\e9b9"; 208 | } 209 | .ai-impactstory:before { 210 | content: "\e9cf"; 211 | } 212 | .ai-impactstory-square:before { 213 | content: "\e9aa"; 214 | } 215 | .ai-inaturalist:before { 216 | content: "\e900"; 217 | } 218 | .ai-inaturalist-square:before { 219 | content: "\e901"; 220 | } 221 | .ai-inpn:before { 222 | content: "\e902"; 223 | } 224 | .ai-inpn-square:before { 225 | content: "\e903"; 226 | } 227 | .ai-inspire:before { 228 | content: "\e9e9"; 229 | } 230 | .ai-inspire-square:before { 231 | content: "\e9fe"; 232 | } 233 | .ai-isidore:before { 234 | content: "\e936"; 235 | } 236 | .ai-isidore-square:before { 237 | content: "\e954"; 238 | } 239 | .ai-jstor:before { 240 | content: "\e938"; 241 | } 242 | .ai-jstor-square:before { 243 | content: "\e944"; 244 | } 245 | .ai-lattes:before { 246 | content: "\e9b3"; 247 | } 248 | .ai-lattes-square:before { 249 | content: "\e99c"; 250 | } 251 | .ai-mathoverflow:before { 252 | content: "\e9f6"; 253 | } 254 | .ai-mathoverflow-square:before { 255 | content: "\e97b"; 256 | } 257 | .ai-mendeley:before { 258 | content: "\e9f0"; 259 | } 260 | .ai-mendeley-square:before { 261 | content: "\e9f3"; 262 | } 263 | .ai-moodle:before { 264 | content: "\e907"; 265 | } 266 | .ai-moodle-square:before { 267 | content: "\e908"; 268 | } 269 | .ai-mtmt:before { 270 | content: "\e950"; 271 | } 272 | .ai-mtmt-square:before { 273 | content: "\e951"; 274 | } 275 | .ai-nakala:before { 276 | content: "\e940"; 277 | } 278 | .ai-nakala-square:before { 279 | content: "\e941"; 280 | } 281 | .ai-obp:before { 282 | content: "\e92a"; 283 | } 284 | .ai-obp-square:before { 285 | content: "\e92b"; 286 | } 287 | .ai-open-access:before { 288 | content: "\e939"; 289 | } 290 | .ai-open-access-square:before { 291 | content: "\e9f4"; 292 | } 293 | .ai-open-data:before { 294 | content: "\e966"; 295 | } 296 | .ai-open-data-square:before { 297 | content: "\e967"; 298 | } 299 | .ai-open-materials:before { 300 | content: "\e968"; 301 | } 302 | .ai-open-materials-square:before { 303 | content: "\e969"; 304 | } 305 | .ai-openedition:before { 306 | content: "\e946"; 307 | } 308 | .ai-openedition-square:before { 309 | content: "\e947"; 310 | } 311 | .ai-orcid:before { 312 | content: "\e9d9"; 313 | } 314 | .ai-orcid-square:before { 315 | content: "\e9c3"; 316 | } 317 | .ai-osf:before { 318 | content: "\e9ef"; 319 | } 320 | .ai-osf-square:before { 321 | content: "\e931"; 322 | } 323 | .ai-overleaf:before { 324 | content: "\e914"; 325 | } 326 | .ai-overleaf-square:before { 327 | content: "\e98d"; 328 | } 329 | .ai-philpapers:before { 330 | content: "\e98a"; 331 | } 332 | .ai-philpapers-square:before { 333 | content: "\e96f"; 334 | } 335 | .ai-piazza:before { 336 | content: "\e99a"; 337 | } 338 | .ai-piazza-square:before { 339 | content: "\e90c"; 340 | } 341 | .ai-preregistered:before { 342 | content: "\e906"; 343 | } 344 | .ai-preregistered-square:before { 345 | content: "\e96b"; 346 | } 347 | .ai-protocols:before { 348 | content: "\e952"; 349 | } 350 | .ai-protocols-square:before { 351 | content: "\e953"; 352 | } 353 | .ai-psyarxiv:before { 354 | content: "\e90e"; 355 | } 356 | .ai-psyarxiv-square:before { 357 | content: "\e90f"; 358 | } 359 | .ai-publons:before { 360 | content: "\e937"; 361 | } 362 | .ai-publons-square:before { 363 | content: "\e94e"; 364 | } 365 | .ai-pubmed:before { 366 | content: "\e99f"; 367 | } 368 | .ai-pubmed-square:before { 369 | content: "\e97d"; 370 | } 371 | .ai-pubpeer:before { 372 | content: "\e922"; 373 | } 374 | .ai-pubpeer-square:before { 375 | content: "\e923"; 376 | } 377 | .ai-researcherid:before { 378 | content: "\e91a"; 379 | } 380 | .ai-researcherid-square:before { 381 | content: "\e95c"; 382 | } 383 | .ai-researchgate:before { 384 | content: "\e95e"; 385 | } 386 | .ai-researchgate-square:before { 387 | content: "\e99e"; 388 | } 389 | .ai-ror:before { 390 | content: "\e948"; 391 | } 392 | .ai-ror-square:before { 393 | content: "\e949"; 394 | } 395 | .ai-sci-hub:before { 396 | content: "\e959"; 397 | } 398 | .ai-sci-hub-square:before { 399 | content: "\e905"; 400 | } 401 | .ai-scirate:before { 402 | content: "\e98e"; 403 | } 404 | .ai-scirate-square:before { 405 | content: "\e99d"; 406 | } 407 | .ai-scopus:before { 408 | content: "\e91e"; 409 | } 410 | .ai-scopus-square:before { 411 | content: "\e91f"; 412 | } 413 | .ai-semantic-scholar:before { 414 | content: "\e96e"; 415 | } 416 | .ai-semantic-scholar-square:before { 417 | content: "\e96c"; 418 | } 419 | .ai-springer:before { 420 | content: "\e928"; 421 | } 422 | .ai-springer-square:before { 423 | content: "\e99b"; 424 | } 425 | .ai-ssrn:before { 426 | content: "\e916"; 427 | } 428 | .ai-ssrn-square:before { 429 | content: "\e917"; 430 | } 431 | .ai-stackoverflow:before { 432 | content: "\e920"; 433 | } 434 | .ai-stackoverflow-square:before { 435 | content: "\e921"; 436 | } 437 | .ai-zenodo:before { 438 | content: "\e911"; 439 | } 440 | .ai-zotero:before { 441 | content: "\e962"; 442 | } 443 | .ai-zotero-square:before { 444 | content: "\e932"; 445 | } 446 | /* Duplication of the FontAwesome style classes using 'ai' in place of 'fa'. */ 447 | .ai-lg { 448 | font-size: 1.33333em; 449 | line-height: 0.75em; 450 | vertical-align: -.0667em; 451 | } 452 | .ai-xs { 453 | font-size: .75em; 454 | } 455 | .ai-sm { 456 | font-size: .875em; 457 | } 458 | 459 | .ai-1x { 460 | font-size: 1em; 461 | } 462 | .ai-2x { 463 | font-size: 2em; 464 | } 465 | .ai-3x { 466 | font-size: 3em; 467 | } 468 | .ai-4x { 469 | font-size: 4em; 470 | } 471 | .ai-5x { 472 | font-size: 5em; 473 | } 474 | .ai-6x { 475 | font-size: 6em; 476 | } 477 | .ai-7x { 478 | font-size: 7em; 479 | } 480 | .ai-8x { 481 | font-size: 8em; 482 | } 483 | .ai-9x { 484 | font-size: 9em; 485 | } 486 | .ai-10x { 487 | font-size: 10em; 488 | } 489 | 490 | .ai-fw { 491 | text-align: center; 492 | width: 1.25em; 493 | } 494 | 495 | .ai-ul { 496 | list-style-type: none; 497 | margin-left: 2.5em; 498 | padding-left: 0; 499 | } 500 | .ai-ul > li { 501 | position: relative; 502 | } 503 | .ai-li { 504 | left: -2em; 505 | position: absolute; 506 | text-align: center; 507 | width: 2em; 508 | line-height: inherit; 509 | } 510 | 511 | .ai-border { 512 | border: solid 0.08em #eee; 513 | border-radius: .1em; 514 | padding: .2em .25em .15em; 515 | } 516 | 517 | .ai-pull-left { 518 | float: left; 519 | } 520 | .ai-pull-right { 521 | float: right; 522 | } 523 | .ai.ai-pull-left { 524 | margin-right: .3em; 525 | } 526 | .ai.ai-pull-right { 527 | margin-right: .3em; 528 | } 529 | 530 | .ai-stack { 531 | display: inline-block; 532 | height: 2em; 533 | line-height: 2em; 534 | position: relative; 535 | vertical-align: middle; 536 | width: 2.5em; 537 | } 538 | .ai-stack-1x, 539 | .ai-stack-2x { 540 | left: 0; 541 | position: absolute; 542 | text-align: center; 543 | width: 100%; 544 | } 545 | .ai-stack-1x { 546 | line-height: inherit; 547 | } 548 | .ai-stack-2x { 549 | font-size: 2em; 550 | } 551 | .ai-inverse { 552 | color: #fff; 553 | } 554 | -------------------------------------------------------------------------------- /.quarto/idx/index.qmd.json: -------------------------------------------------------------------------------- 1 | {"title":"RI Digitais","markdown":{"yaml":{"title":"RI Digitais","subtitle":"Um apanhado dos recursos digitais de pesquisa em Relações Internacionais","details":"PUC Minas Poços de Caldas • Maio 2023
Curso de Relações Internacionais da Pontifícia Universidade Católica de Minas Gerais\n","sidebar":false,"toc":false,"page-layout":"full","format":{"html":{"template-partials":["html/home/title-block.html"]}},"course-logo":"/files/course-icon.png"},"headingText":"Palestrante","containsRefs":false,"markdown":"\n\n\n\n::: {.home}\n:::::: {.grid .course-details}\n::::::::: {.g-col-12 .g-col-sm-6 .g-col-md-4}\n\n- {{< fa user >}}   [{{< var instructor.name >}}]({{< var instructor.url >}})\n\n- {{< fa envelope >}}   }}\">{{< var instructor.email >}}\n:::::::::\n::::::::: {.g-col-12 .g-col-sm-6 .g-col-md-4}\n:::::::::::: {.g-col-6}\n### Horário\n\n- {{< fa calendar-alt >}}   {{< var course.dates >}}\n- {{< fa clock >}}   {{< var course.time >}}\n- {{< fa location-dot >}}   {{< var course.location >}}\n::::::::::::\n:::::::::::: {.g-col-6}\n\n::::::::::::\n:::::::::\n::::::::: {.g-col-12 .g-col-sm-6 .g-col-md-4}\n:::::::::::: {.g-col-6}\n> ’Chrōmetha gar politeia ou zēlousē tous tōn pelas nomous, paradeigma de mallon autoi ontes tisin ē mimoumenoi heterous. kai onoma men dia to mē es oligous all’ es pleionas oikein dēmokratia keklētai^[’Χρώμεθα γὰρ πολιτείᾳ οὐ ζηλούσῃ τοὺς τῶν πέλας νόμους, παράδειγμα δὲ μᾶλλον αὐτοὶ ὄντες τισὶν ἢ μιμούμενοι ἑτέρους. καὶ ὄνομα μὲν διὰ τὸ μὴ ἐς ὀλίγους ἀλλ’ ἐς πλείονας οἰκεῖν δημοκρατία κέκληται·]\\\n> Tucídides, *Historiae* II 36 [-@ThuHist]^[Trecho da oração fúnebre proferida por Péricles, em 431 a.C., por ocasião do fim do primeiro ano da guerra do Peloponeso, recontada pelo historiador ateniense Tucídides. Péricles foi um eminente político que liderou a democracia ateniense em seu período áureo e que proferiu este discurso com o propósito de elevar a moral da população, exaltando os valores do modelo institucional ateniense em detrimento ao modelo militarista e oligárquico espartano.]\n::::::::::::\n:::::::::::: {.g-col-6}\n> Vivemos sob uma forma de governo que não se baseia nas instituições de nossos vizinhos; ao contrário, servimos de modelo a alguns ao invés de imitar outros. Seu nome, como tudo depende não de poucos mas da maioria, é democracia.\n::::::::::::\n:::::::::\n::::::\n:::\n\n\n\n---\nreferences:\n- id: ThuHist\n abstract: |-\n Tucídides\n 2 vols\n author:\n - family: Thucydides\n given: ''\n call-number: '0003.001'\n citation-key: ThuHist\n container-title: Thucydidis Historiae\n editor:\n - family: Jones\n given: H. S.\n event-place: Oxford\n issued:\n - year: 1942\n publisher: Clarendon\n publisher-place: Oxford\n title: Historiae\n title-short: Thu\n type: chapter\n---\n","srcMarkdownNoYaml":"\n\n\n\n::: {.home}\n:::::: {.grid .course-details}\n::::::::: {.g-col-12 .g-col-sm-6 .g-col-md-4}\n### Palestrante\n\n- {{< fa user >}}   [{{< var instructor.name >}}]({{< var instructor.url >}})\n\n- {{< fa envelope >}}   }}\">{{< var instructor.email >}}\n:::::::::\n::::::::: {.g-col-12 .g-col-sm-6 .g-col-md-4}\n:::::::::::: {.g-col-6}\n### Horário\n\n- {{< fa calendar-alt >}}   {{< var course.dates >}}\n- {{< fa clock >}}   {{< var course.time >}}\n- {{< fa location-dot >}}   {{< var course.location >}}\n::::::::::::\n:::::::::::: {.g-col-6}\n\n::::::::::::\n:::::::::\n::::::::: {.g-col-12 .g-col-sm-6 .g-col-md-4}\n:::::::::::: {.g-col-6}\n> ’Chrōmetha gar politeia ou zēlousē tous tōn pelas nomous, paradeigma de mallon autoi ontes tisin ē mimoumenoi heterous. kai onoma men dia to mē es oligous all’ es pleionas oikein dēmokratia keklētai^[’Χρώμεθα γὰρ πολιτείᾳ οὐ ζηλούσῃ τοὺς τῶν πέλας νόμους, παράδειγμα δὲ μᾶλλον αὐτοὶ ὄντες τισὶν ἢ μιμούμενοι ἑτέρους. καὶ ὄνομα μὲν διὰ τὸ μὴ ἐς ὀλίγους ἀλλ’ ἐς πλείονας οἰκεῖν δημοκρατία κέκληται·]\\\n> Tucídides, *Historiae* II 36 [-@ThuHist]^[Trecho da oração fúnebre proferida por Péricles, em 431 a.C., por ocasião do fim do primeiro ano da guerra do Peloponeso, recontada pelo historiador ateniense Tucídides. Péricles foi um eminente político que liderou a democracia ateniense em seu período áureo e que proferiu este discurso com o propósito de elevar a moral da população, exaltando os valores do modelo institucional ateniense em detrimento ao modelo militarista e oligárquico espartano.]\n::::::::::::\n:::::::::::: {.g-col-6}\n> Vivemos sob uma forma de governo que não se baseia nas instituições de nossos vizinhos; ao contrário, servimos de modelo a alguns ao invés de imitar outros. Seu nome, como tudo depende não de poucos mas da maioria, é democracia.\n::::::::::::\n:::::::::\n::::::\n:::\n\n\n\n---\nreferences:\n- id: ThuHist\n abstract: |-\n Tucídides\n 2 vols\n author:\n - family: Thucydides\n given: ''\n call-number: '0003.001'\n citation-key: ThuHist\n container-title: Thucydidis Historiae\n editor:\n - family: Jones\n given: H. S.\n event-place: Oxford\n issued:\n - year: 1942\n publisher: Clarendon\n publisher-place: Oxford\n title: Historiae\n title-short: Thu\n type: chapter\n---\n"},"formats":{"html":{"identifier":{"display-name":"HTML","target-format":"html","base-format":"html"},"execute":{"fig-width":7,"fig-height":5,"fig-format":"retina","fig-dpi":96,"df-print":"default","error":false,"eval":true,"cache":null,"freeze":"auto","echo":true,"output":true,"warning":true,"include":true,"keep-md":false,"keep-ipynb":false,"ipynb":null,"enabled":null,"daemon":null,"daemon-restart":false,"debug":false,"ipynb-filters":[],"engine":"markdown"},"render":{"keep-tex":false,"keep-source":false,"keep-hidden":false,"prefer-html":false,"output-divs":true,"output-ext":"html","fig-align":"default","fig-pos":null,"fig-env":null,"code-fold":"none","code-overflow":"scroll","code-link":false,"code-line-numbers":false,"code-tools":false,"tbl-colwidths":"auto","merge-includes":true,"inline-includes":false,"preserve-yaml":false,"latex-auto-mk":true,"latex-auto-install":true,"latex-clean":true,"latex-max-runs":10,"latex-makeindex":"makeindex","latex-makeindex-opts":[],"latex-tlmgr-opts":[],"latex-input-paths":[],"latex-output-dir":null,"link-external-icon":false,"link-external-newwindow":false,"self-contained-math":false,"format-resources":[],"notebook-links":true,"format-links":true},"pandoc":{"standalone":true,"wrap":"none","default-image-extension":"png","to":"html","toc":false,"highlight-style":"monokai","output-file":"index.html"},"language":{"toc-title-document":"Table of contents","toc-title-website":"On this page","related-formats-title":"Other Formats","related-notebooks-title":"Notebooks","source-notebooks-prefix":"Source","section-title-abstract":"Abstract","section-title-appendices":"Appendices","section-title-footnotes":"Footnotes","section-title-references":"References","section-title-reuse":"Reuse","section-title-copyright":"Copyright","section-title-citation":"Citation","appendix-attribution-cite-as":"For attribution, please cite this work as:","appendix-attribution-bibtex":"BibTeX citation:","title-block-author-single":"Author","title-block-author-plural":"Authors","title-block-affiliation-single":"Affiliation","title-block-affiliation-plural":"Affiliations","title-block-published":"Published","title-block-modified":"Modified","callout-tip-title":"Tip","callout-note-title":"Note","callout-warning-title":"Warning","callout-important-title":"Important","callout-caution-title":"Caution","code-summary":"Code","code-tools-menu-caption":"Code","code-tools-show-all-code":"Show All Code","code-tools-hide-all-code":"Hide All Code","code-tools-view-source":"View Source","code-tools-source-code":"Source Code","code-line":"Line","code-lines":"Lines","copy-button-tooltip":"Copy to Clipboard","copy-button-tooltip-success":"Copied!","repo-action-links-edit":"Edit this page","repo-action-links-source":"View source","repo-action-links-issue":"Report an issue","back-to-top":"Back to top","search-no-results-text":"No results","search-matching-documents-text":"matching documents","search-copy-link-title":"Copy link to search","search-hide-matches-text":"Hide additional matches","search-more-match-text":"more match in this document","search-more-matches-text":"more matches in this document","search-clear-button-title":"Clear","search-detached-cancel-button-title":"Cancel","search-submit-button-title":"Submit","search":"Search","toggle-section":"Toggle section","toggle-sidebar":"Toggle sidebar navigation","toggle-dark-mode":"Toggle dark mode","toggle-reader-mode":"Toggle reader mode","toggle-navigation":"Toggle navigation","crossref-fig-title":"Figure","crossref-tbl-title":"Table","crossref-lst-title":"Listing","crossref-thm-title":"Theorem","crossref-lem-title":"Lemma","crossref-cor-title":"Corollary","crossref-prp-title":"Proposition","crossref-cnj-title":"Conjecture","crossref-def-title":"Definition","crossref-exm-title":"Example","crossref-exr-title":"Exercise","crossref-ch-prefix":"Chapter","crossref-apx-prefix":"Appendix","crossref-sec-prefix":"Section","crossref-eq-prefix":"Equation","crossref-lof-title":"List of Figures","crossref-lot-title":"List of Tables","crossref-lol-title":"List of Listings","environment-proof-title":"Proof","environment-remark-title":"Remark","environment-solution-title":"Solution","listing-page-order-by":"Order By","listing-page-order-by-default":"Default","listing-page-order-by-date-asc":"Oldest","listing-page-order-by-date-desc":"Newest","listing-page-order-by-number-desc":"High to Low","listing-page-order-by-number-asc":"Low to High","listing-page-field-date":"Date","listing-page-field-title":"Title","listing-page-field-description":"Description","listing-page-field-author":"Author","listing-page-field-filename":"File Name","listing-page-field-filemodified":"Modified","listing-page-field-subtitle":"Subtitle","listing-page-field-readingtime":"Reading Time","listing-page-field-categories":"Categories","listing-page-minutes-compact":"{0} min","listing-page-category-all":"All","listing-page-no-matches":"No matching items"},"metadata":{"lang":"en","fig-responsive":true,"quarto-version":"1.3.353","bibliography":["files/bib/readings.bib"],"csl":"files/bib/chicago-author-date.csl","description-meta":"Um apanhado dos recursos digitais de pesquisa em Relações Internacionais","_quarto-vars":{"author":"Bernardo Vasconcelos","instructor":{"name":"Bernardo Vasconcelos","name_no_title":"Bernardo Vasconcelos","email":"bernardovasconcelos@gmail.com","url":"https://github.com/bcdavasconcelos","github":"bcdavasconcelos","office":"Dr. em Filosofia pela UFMG","contact_policy":"E-mail is the best way to get in contact with me. I will try to respond to all course-related e-mails within 24 hours (*really*), but also remember that life can be busy and chaotic for everyone (including me!), so if I don't respond right away, don't worry!","appointment_url":"https://calendly.com/andrewheiss/"},"course":{"days":"Segunda","time":"15:20","location":"Auditório do Prédio 9","dates":"22 de Maio, 2023","github":"https://www.github.com/andrewheiss/compasp23.classes.andrewheiss.com","url":"https://compasp23.classes.andrewheiss.com","copyright_year":"2023"}},"theme":["litera","html/custom.scss"],"title":"RI Digitais","subtitle":"Um apanhado dos recursos digitais de pesquisa em Relações Internacionais","details":"PUC Minas Poços de Caldas • Maio 2023
Curso de Relações Internacionais da Pontifícia Universidade Católica de Minas Gerais\n","sidebar":false,"page-layout":"full","course-logo":"/files/course-icon.png","references":[{"id":"ThuHist","abstract":"Tucídides\n2 vols","author":[{"family":"Thucydides","given":""}],"call-number":"0003.001","citation-key":"ThuHist","container-title":"Thucydidis Historiae","editor":[{"family":"Jones","given":"H. S."}],"event-place":"Oxford","issued":[{"year":1942}],"publisher":"Clarendon","publisher-place":"Oxford","title":"Historiae","title-short":"Thu","type":"chapter"}],"template-partials":["html/home/title-block.html"]},"extensions":{"book":{"multiFile":true}}}},"projectFormats":["html"]} -------------------------------------------------------------------------------- /_site/site_libs/quarto-diagram/mermaid-init.js: -------------------------------------------------------------------------------- 1 | // mermaid-init.js 2 | // Initializes the quarto-mermaid JS runtime 3 | // 4 | // Copyright (C) 2022 Posit Software, PBC 5 | 6 | /** 7 | * String.prototype.replaceAll() polyfill 8 | * https://gomakethings.com/how-to-replace-a-section-of-a-string-with-another-one-with-vanilla-js/ 9 | * @author Chris Ferdinandi 10 | * @license MIT 11 | */ 12 | if (!String.prototype.replaceAll) { 13 | String.prototype.replaceAll = function (str, newStr) { 14 | // If a regex pattern 15 | if ( 16 | Object.prototype.toString.call(str).toLowerCase() === "[object regexp]" 17 | ) { 18 | return this.replace(str, newStr); 19 | } 20 | 21 | // If a string 22 | return this.replace(new RegExp(str, "g"), newStr); 23 | }; 24 | } 25 | 26 | const mermaidOpts = { 27 | startOnLoad: false, 28 | flowchart: { 29 | htmlLabels: "false", 30 | }, 31 | }; 32 | // this CSS is adapted from 33 | // mkdocs-material 34 | // Copyright (c) 2016-2022 Martin Donath 35 | 36 | const defaultCSS = 37 | '.label text {fill: var(--mermaid-fg-color);}.node circle, .node ellipse, .node path, .node polygon, .node rect {fill: var(--mermaid-node-bg-color);stroke: var(--mermaid-node-fg-color);}marker {fill: var(--mermaid-edge-color) !important;}.edgeLabel .label rect {fill: #0000;}.label {color: var(--mermaid-label-fg-color);font-family: var(--mermaid-font-family);}.label foreignObject {line-height: normal;overflow: visible;}.label div .edgeLabel {color: var(--mermaid-label-fg-color);}.edgeLabel, .edgeLabel rect, .label div .edgeLabel {background-color: var(--mermaid-label-bg-color);}.edgeLabel, .edgeLabel rect {fill: var(--mermaid-label-bg-color);color: var(--mermaid-edge-color);}.edgePath .path, .flowchart-link {stroke: var(--mermaid-edge-color);}.edgePath .arrowheadPath {fill: var(--mermaid-edge-color);stroke: none;}.cluster rect {fill: var(--mermaid-fg-color--lightest);stroke: var(--mermaid-fg-color--lighter);}.cluster span {color: var(--mermaid-label-fg-color);font-family: var(--mermaid-font-family);}defs #flowchart-circleEnd, defs #flowchart-circleStart, defs #flowchart-crossEnd, defs #flowchart-crossStart, defs #flowchart-pointEnd, defs #flowchart-pointStart {stroke: none;}g.classGroup line, g.classGroup rect {fill: var(--mermaid-node-bg-color);stroke: var(--mermaid-node-fg-color);}g.classGroup text {fill: var(--mermaid-label-fg-color);font-family: var(--mermaid-font-family);}.classLabel .box {fill: var(--mermaid-label-bg-color);background-color: var(--mermaid-label-bg-color);opacity: 1;}.classLabel .label {fill: var(--mermaid-label-fg-color);font-family: var(--mermaid-font-family);}.node .divider {stroke: var(--mermaid-node-fg-color);}.relation {stroke: var(--mermaid-edge-color);}.cardinality {fill: var(--mermaid-label-fg-color);font-family: var(--mermaid-font-family);}.cardinality text {fill: inherit !important;}defs #classDiagram-compositionEnd, defs #classDiagram-compositionStart, defs #classDiagram-dependencyEnd, defs #classDiagram-dependencyStart, defs #classDiagram-extensionEnd, defs #classDiagram-extensionStart {fill: var(--mermaid-edge-color) !important;stroke: var(--mermaid-edge-color) !important;}defs #classDiagram-aggregationEnd, defs #classDiagram-aggregationStart {fill: var(--mermaid-label-bg-color) !important;stroke: var(--mermaid-edge-color) !important;}g.stateGroup rect {fill: var(--mermaid-node-bg-color);stroke: var(--mermaid-node-fg-color);}g.stateGroup .state-title {fill: var(--mermaid-label-fg-color) !important;font-family: var(--mermaid-font-family);}g.stateGroup .composit {fill: var(--mermaid-label-bg-color);}.nodeLabel {color: var(--mermaid-label-fg-color);font-family: var(--mermaid-font-family);}.node circle.state-end, .node circle.state-start, .start-state {fill: var(--mermaid-edge-color);stroke: none;}.end-state-inner, .end-state-outer {fill: var(--mermaid-edge-color);}.end-state-inner, .node circle.state-end {stroke: var(--mermaid-label-bg-color);}.transition {stroke: var(--mermaid-edge-color);}[id^="state-fork"] rect, [id^="state-join"] rect {fill: var(--mermaid-edge-color) !important;stroke: none !important;}.statediagram-cluster.statediagram-cluster .inner {fill: var(--mermaid-bg-color);}.statediagram-cluster rect {fill: var(--mermaid-node-bg-color);stroke: var(--mermaid-node-fg-color);}.statediagram-state rect.divider {fill: var(--mermaid-fg-color--lightest);stroke: var(--mermaid-fg-color--lighter);}defs #statediagram-barbEnd {stroke: var(--mermaid-edge-color);}.entityBox {fill: var(--mermaid-label-bg-color);stroke: var(--mermaid-node-fg-color);}.entityLabel {fill: var(--mermaid-label-fg-color);font-family: var(--mermaid-font-family);}.relationshipLabelBox {fill: var(--mermaid-label-bg-color);fill-opacity: 1;background-color: var(--mermaid-label-bg-color);opacity: 1;}.relationshipLabel {fill: var(--mermaid-label-fg-color);}.relationshipLine {stroke: var(--mermaid-edge-color);}defs #ONE_OR_MORE_END *, defs #ONE_OR_MORE_START *, defs #ONLY_ONE_END *, defs #ONLY_ONE_START *, defs #ZERO_OR_MORE_END *, defs #ZERO_OR_MORE_START *, defs #ZERO_OR_ONE_END *, defs #ZERO_OR_ONE_START * {stroke: var(--mermaid-edge-color) !important;}.actor, defs #ZERO_OR_MORE_END circle, defs #ZERO_OR_MORE_START circle {fill: var(--mermaid-label-bg-color);}.actor {stroke: var(--mermaid-node-fg-color);}text.actor > tspan {fill: var(--mermaid-label-fg-color);font-family: var(--mermaid-font-family);}line {stroke: var(--mermaid-fg-color--lighter);}.messageLine0, .messageLine1 {stroke: var(--mermaid-edge-color);}.loopText > tspan, .messageText, .noteText > tspan {fill: var(--mermaid-edge-color);stroke: none;font-family: var(--mermaid-font-family) !important;}.noteText > tspan {fill: #000;}#arrowhead path {fill: var(--mermaid-edge-color);stroke: none;}.loopLine {stroke: var(--mermaid-node-fg-color);}.labelBox, .loopLine {fill: var(--mermaid-node-bg-color);}.labelBox {stroke: none;}.labelText, .labelText > span {fill: var(--mermaid-node-fg-color);font-family: var(--mermaid-font-family);}'; 38 | 39 | const mermaidThemeEl = document.querySelector('meta[name="mermaid-theme"]'); 40 | if (mermaidThemeEl) { 41 | mermaidOpts.theme = mermaidThemeEl.content; 42 | } else { 43 | mermaidOpts.themeCSS = defaultCSS; 44 | } 45 | 46 | mermaid.initialize(mermaidOpts); 47 | 48 | const _quartoMermaid = { 49 | // NB: there's effectively a copy of this function 50 | // in `core/svg.ts`. 51 | // if you change something here, you must keep it consistent there as well. 52 | setSvgSize(svg) { 53 | const { widthInPoints, heightInPoints, explicitHeight, explicitWidth } = 54 | this.resolveSize(svg); 55 | 56 | if (explicitWidth && explicitHeight) { 57 | svg.setAttribute("width", widthInPoints); 58 | svg.setAttribute("height", heightInPoints); 59 | svg.style.maxWidth = null; // remove mermaid's default max-width 60 | } else { 61 | if (explicitWidth) { 62 | svg.style.maxWidth = `${widthInPoints}px`; 63 | } 64 | if (explicitHeight) { 65 | svg.style.maxHeight = `${heightInPoints}px`; 66 | } 67 | } 68 | }, 69 | 70 | // NB: there's effectively a copy of this function 71 | // in `core/svg.ts`. 72 | // if you change something here, you must keep it consistent there as well. 73 | makeResponsive(svg) { 74 | const width = svg.getAttribute("width"); 75 | if (width === null) { 76 | throw new Error("Couldn't find SVG width"); 77 | } 78 | const numWidth = Number(width.slice(0, -2)); 79 | 80 | if (numWidth > 650) { 81 | changed = true; 82 | svg.setAttribute("width", "100%"); 83 | svg.removeAttribute("height"); 84 | } 85 | }, 86 | 87 | // NB: there's effectively a copy of this function 88 | // in `core/svg.ts`. 89 | // if you change something here, you must keep it consistent there as well. 90 | fixupAlignment(svg, align) { 91 | let style = svg.getAttribute("style") || ""; 92 | 93 | switch (align) { 94 | case "left": 95 | style = `${style}; display: block; margin: auto auto auto 0`; 96 | break; 97 | case "right": 98 | style = `${style}; display: block; margin: auto 0 auto auto`; 99 | break; 100 | case "center": 101 | style = `${style}; display: block; margin: auto auto auto auto`; 102 | break; 103 | } 104 | svg.setAttribute("style", style); 105 | }, 106 | 107 | resolveOptions(svgEl) { 108 | return svgEl.parentElement.parentElement.parentElement.parentElement 109 | .dataset; 110 | }, 111 | 112 | // NB: there's effectively a copy of this function 113 | // in our mermaid runtime in `core/svg.ts`. 114 | // if you change something here, you must keep it consistent there as well. 115 | resolveSize(svgEl) { 116 | const inInches = (size) => { 117 | if (size.endsWith("in")) { 118 | return Number(size.slice(0, -2)); 119 | } 120 | if (size.endsWith("pt") || size.endsWith("px")) { 121 | // assume 96 dpi for now 122 | return Number(size.slice(0, -2)) / 96; 123 | } 124 | return Number(size); 125 | }; 126 | 127 | // these are figWidth and figHeight on purpose, 128 | // because data attributes are translated to camelCase by the DOM API 129 | const kFigWidth = "figWidth", 130 | kFigHeight = "figHeight"; 131 | const options = this.resolveOptions(svgEl); 132 | const width = svgEl.getAttribute("width"); 133 | const height = svgEl.getAttribute("height"); 134 | if (!width || !height) { 135 | // attempt to resolve figure dimensions via viewBox 136 | throw new Error("Internal error: couldn't find figure dimensions"); 137 | } 138 | const getViewBox = () => { 139 | const vb = svgEl.attributes.getNamedItem("viewBox").value; // do it the roundabout way so that viewBox isn't dropped by deno_dom and text/html 140 | if (!vb) return undefined; 141 | const lst = vb.trim().split(" ").map(Number); 142 | if (lst.length !== 4) return undefined; 143 | if (lst.some(isNaN)) return undefined; 144 | return lst; 145 | }; 146 | 147 | let svgWidthInInches, svgHeightInInches; 148 | 149 | if ( 150 | (width.slice(0, -2) === "pt" && height.slice(0, -2) === "pt") || 151 | (width.slice(0, -2) === "px" && height.slice(0, -2) === "px") || 152 | (!isNaN(Number(width)) && !isNaN(Number(height))) 153 | ) { 154 | // we assume 96 dpi which is generally what seems to be used. 155 | svgWidthInInches = Number(width.slice(0, -2)) / 96; 156 | svgHeightInInches = Number(height.slice(0, -2)) / 96; 157 | } 158 | const viewBox = getViewBox(); 159 | if (viewBox !== undefined) { 160 | // assume width and height come from viewbox. 161 | const [_mx, _my, vbWidth, vbHeight] = viewBox; 162 | svgWidthInInches = vbWidth / 96; 163 | svgHeightInInches = vbHeight / 96; 164 | } else { 165 | throw new Error( 166 | "Internal Error: Couldn't resolve width and height of SVG" 167 | ); 168 | } 169 | const svgWidthOverHeight = svgWidthInInches / svgHeightInInches; 170 | let widthInInches, heightInInches; 171 | 172 | if (options[kFigWidth] && options[kFigHeight]) { 173 | // both were prescribed, so just go with them 174 | widthInInches = inInches(String(options[kFigWidth])); 175 | heightInInches = inInches(String(options[kFigHeight])); 176 | } else if (options[kFigWidth]) { 177 | // we were only given width, use that and adjust height based on aspect ratio; 178 | widthInInches = inInches(String(options[kFigWidth])); 179 | heightInInches = widthInInches / svgWidthOverHeight; 180 | } else if (options[kFigHeight]) { 181 | // we were only given height, use that and adjust width based on aspect ratio; 182 | heightInInches = inInches(String(options[kFigHeight])); 183 | widthInInches = heightInInches * svgWidthOverHeight; 184 | } else { 185 | // we were not given either, use svg's prescribed height 186 | heightInInches = svgHeightInInches; 187 | widthInInches = svgWidthInInches; 188 | } 189 | 190 | return { 191 | widthInInches, 192 | heightInInches, 193 | widthInPoints: Math.round(widthInInches * 96), 194 | heightInPoints: Math.round(heightInInches * 96), 195 | explicitWidth: options?.[kFigWidth] !== undefined, 196 | explicitHeight: options?.[kFigHeight] !== undefined, 197 | }; 198 | }, 199 | 200 | postProcess(svg) { 201 | const options = this.resolveOptions(svg); 202 | if ( 203 | options.responsive && 204 | options["figWidth"] === undefined && 205 | options["figHeight"] === undefined 206 | ) { 207 | this.makeResponsive(svg); 208 | } else { 209 | this.setSvgSize(svg); 210 | } 211 | if (options["reveal"]) { 212 | this.fixupAlignment(svg, options["figAlign"] || "center"); 213 | } 214 | 215 | // forward align attributes to the correct parent dif 216 | // so that the svg figure is aligned correctly 217 | const div = svg.parentElement.parentElement.parentElement; 218 | const align = div.parentElement.parentElement.dataset.layoutAlign; 219 | if (align) { 220 | div.classList.remove("quarto-figure-left"); 221 | div.classList.remove("quarto-figure-center"); 222 | div.classList.remove("quarto-figure-right"); 223 | div.classList.add(`quarto-figure-${align}`); 224 | } 225 | }, 226 | }; 227 | 228 | // deno-lint-ignore no-window-prefix 229 | window.addEventListener( 230 | "load", 231 | function () { 232 | let i = 0; 233 | // we need pre because of whitespace preservation 234 | for (const el of Array.from(document.querySelectorAll("pre.mermaid-js"))) { 235 | //   doesn't appear to be treated as whitespace by mermaid 236 | // so we replace it with a space. 237 | const text = el.innerText.replaceAll(" ", " "); 238 | const output = mermaid.mermaidAPI.render( 239 | `mermaid-${++i}`, 240 | text, 241 | () => {}, 242 | el 243 | ); 244 | el.innerHTML = output; 245 | if (el.dataset.label) { 246 | // patch mermaid's emitted style 247 | const svg = el.firstChild; 248 | const style = svg.querySelector("style"); 249 | style.innerHTML = style.innerHTML.replaceAll( 250 | `#${svg.id}`, 251 | `#${el.dataset.label}` 252 | ); 253 | svg.id = el.dataset.label; 254 | delete el.dataset.label; 255 | } 256 | 257 | const svg = el.querySelector("svg"); 258 | const parent = el.parentElement; 259 | parent.removeChild(el); 260 | parent.appendChild(svg); 261 | svg.classList.add("mermaid-js"); 262 | } 263 | for (const svgEl of Array.from( 264 | document.querySelectorAll("svg.mermaid-js") 265 | )) { 266 | _quartoMermaid.postProcess(svgEl); 267 | } 268 | }, 269 | false 270 | ); 271 | -------------------------------------------------------------------------------- /_site/md/about/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | RI Digitais - About 12 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 |
79 |
80 | 115 |
116 | 117 |
118 | 119 | 120 | 123 | 124 |
125 | 126 |
127 |
128 |

About

129 |
130 | 131 | 132 | 133 |
134 | 135 | 136 | 137 | 138 |
139 | 140 | 141 |
142 | 143 | 144 | 145 | 146 |
147 | 380 |
381 | 390 | 391 | 392 | 393 | -------------------------------------------------------------------------------- /_site/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | RI Digitais - Page Not Found 12 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 |
81 |
82 | 117 |
118 | 119 |
120 | 121 | 122 | 123 | 124 |
125 | 126 |
127 |
128 |

Page Not Found

129 |
130 | 131 | 132 | 133 |
134 | 135 | 136 | 137 | 138 |
139 | 140 | 141 |
142 | 143 |

OH NO! The page you were looking for isn’t here!

144 |

145 | GIF by Steph Davidson. 146 |

147 | 148 | 149 | 150 |
151 | 384 |
385 | 394 | 395 | 396 | 397 | --------------------------------------------------------------------------------