remoção de função: desabilitando o modo escuro padrão so sistema quarto
This commit is contained in:
parent
f269aace6b
commit
01f72c28ef
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/.quarto/
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -11,7 +11,5 @@ contributes:
|
||||
citation: true
|
||||
google-scholar: true
|
||||
smooth-scroll: true
|
||||
theme:
|
||||
light: [cosmo, custom.scss]
|
||||
dark: [superhero, custom.scss]
|
||||
theme: [cosmo, custom.scss]
|
||||
|
||||
|
@ -147,14 +147,9 @@ google-scholar: true
|
||||
format:
|
||||
moan-livro-html:
|
||||
theme:
|
||||
light:
|
||||
- cosmo
|
||||
- _extensions/moan-livro/custom.scss
|
||||
- estilos.css
|
||||
dark:
|
||||
- superhero
|
||||
- _extensions/moan-livro/custom.scss
|
||||
- estilos.css
|
||||
|
||||
|
||||
format-links: false
|
||||
|
@ -1080,205 +1080,74 @@ $font-size-root: 17px !default;
|
||||
// Disable smooth scrolling
|
||||
$enable-smooth-scroll: false !default;
|
||||
|
||||
// quarto-scss-analysis-annotation { "origin": "superhero (builtin theme)" }
|
||||
// quarto-scss-analysis-annotation { "origin": "cosmo (builtin theme)" }
|
||||
|
||||
$theme: "superhero" !default;
|
||||
$theme: "cosmo" !default;
|
||||
|
||||
//
|
||||
// Color system
|
||||
//
|
||||
|
||||
$white: #fff !default;
|
||||
$gray-100: #ebebeb !default;
|
||||
$gray-200: #dee2e6 !default;
|
||||
$gray-300: #ced4da !default;
|
||||
$gray-400: #adb5bd !default;
|
||||
$gray-500: #868e96 !default;
|
||||
$gray-600: #4e5d6c !default;
|
||||
$gray-100: #f8f9fa !default;
|
||||
$gray-200: #e9ecef !default;
|
||||
$gray-300: #dee2e6 !default;
|
||||
$gray-400: #ced4da !default;
|
||||
$gray-500: #adb5bd !default;
|
||||
$gray-600: #868e96 !default;
|
||||
$gray-700: #495057 !default;
|
||||
$gray-800: #343a40 !default;
|
||||
$gray-800: #373a3c !default;
|
||||
$gray-900: #212529 !default;
|
||||
$black: #000 !default;
|
||||
|
||||
$blue: #4c9be8 !default;
|
||||
$blue: #2780e3 !default;
|
||||
$indigo: #6610f2 !default;
|
||||
$purple: #6f42c1 !default;
|
||||
$purple: #613d7c !default;
|
||||
$pink: #e83e8c !default;
|
||||
$red: #d9534f !default;
|
||||
$orange: #df6919 !default;
|
||||
$yellow: #ffc107 !default;
|
||||
$green: #5cb85c !default;
|
||||
$red: #ff0039 !default;
|
||||
$orange: #f0ad4e !default;
|
||||
$yellow: #ff7518 !default;
|
||||
$green: #3fb618 !default;
|
||||
$teal: #20c997 !default;
|
||||
$cyan: #5bc0de !default;
|
||||
$cyan: #9954bb !default;
|
||||
|
||||
// Body
|
||||
$body-bg: #0f2537 !default;
|
||||
$body-color: $gray-100 !default;
|
||||
|
||||
@function body-mix($weight) {
|
||||
@return mix($body-bg, $body-color, $weight);
|
||||
}
|
||||
|
||||
$contrast-bg: color-contrast($body-bg) !default;
|
||||
$contrast-fg: color-contrast($contrast-bg) !default;
|
||||
|
||||
$primary: $orange !default;
|
||||
$secondary: body-mix(80%) !default;
|
||||
$primary: $blue !default;
|
||||
$secondary: $gray-800 !default;
|
||||
$success: $green !default;
|
||||
$info: $cyan !default;
|
||||
$warning: $yellow !default;
|
||||
$danger: $red !default;
|
||||
$light: body-mix(48%) !default;
|
||||
$dark: body-mix(80%) !default;
|
||||
$light: $gray-100 !default;
|
||||
$dark: $gray-800 !default;
|
||||
|
||||
$min-contrast-ratio: 1.6 !default;
|
||||
$min-contrast-ratio: 2.6 !default;
|
||||
|
||||
// Components
|
||||
// Options
|
||||
|
||||
$border-radius: 0 !default;
|
||||
$border-radius-lg: 0 !default;
|
||||
$border-radius-sm: 0 !default;
|
||||
$enable-rounded: false !default;
|
||||
|
||||
// Body
|
||||
|
||||
$body-color: $gray-800 !default;
|
||||
|
||||
// Fonts
|
||||
|
||||
// stylelint-disable-next-line value-keyword-case
|
||||
$font-family-sans-serif: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
|
||||
|
||||
$text-muted: rgba($contrast-bg, .4) !default;
|
||||
|
||||
// Tables
|
||||
|
||||
$table-accent-bg: rgba($contrast-bg, .05) !default;
|
||||
$table-hover-bg: rgba($contrast-bg, .075) !default;
|
||||
$table-border-color: rgba($contrast-fg, .15) !default;
|
||||
$table-head-bg: $light !default;
|
||||
$table-dark-bg: $light !default;
|
||||
$table-dark-border-color: body-mix(80%) !default;
|
||||
$table-dark-color: $body-bg !default;
|
||||
|
||||
$table-bg-scale: 0% !default;
|
||||
|
||||
// Forms
|
||||
|
||||
$input-bg: $contrast-bg !default;
|
||||
$input-disabled-color: body-mix(80%) !default;
|
||||
$input-disabled-bg: $body-color !default;
|
||||
|
||||
$input-color: $gray-900 !default;
|
||||
$input-border-color: transparent !default;
|
||||
$input-border-width: 0 !default;
|
||||
|
||||
$input-placeholder-color: $gray-500 !default;
|
||||
|
||||
$input-group-addon-color: $body-color !default;
|
||||
$input-group-addon-bg: body-mix(80%) !default;
|
||||
|
||||
$form-select-disabled-bg: $input-disabled-bg !default;
|
||||
$form-select-disabled-color: $input-disabled-color !default;
|
||||
|
||||
$form-check-input-bg: $contrast-bg !default;
|
||||
$form-check-input-border: none !default;
|
||||
|
||||
$form-file-button-color: $input-group-addon-color !default;
|
||||
$form-file-button-bg: $input-group-addon-bg !default;
|
||||
$form-file-button-hover-bg: darken($form-file-button-bg, 5%) !default;
|
||||
|
||||
$form-floating-label-opacity: 1 !default;
|
||||
|
||||
// Dropdowns
|
||||
|
||||
$dropdown-bg: body-mix(80%) !default;
|
||||
$dropdown-divider-bg: rgba($contrast-fg, .15) !default;
|
||||
$dropdown-link-color: $body-color !default;
|
||||
$dropdown-link-hover-color: $dropdown-link-color !default;
|
||||
$dropdown-link-hover-bg: $table-hover-bg !default;
|
||||
|
||||
// Navs
|
||||
|
||||
$nav-link-disabled-color: rgba(255, 255, 255, .4) !default;
|
||||
$nav-tabs-border-color: body-mix(80%) !default;
|
||||
$nav-tabs-link-active-color: $body-color !default;
|
||||
$nav-tabs-link-active-border-color: body-mix(80%) !default;
|
||||
$font-family-sans-serif: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
|
||||
$headings-font-weight: 400 !default;
|
||||
|
||||
// Navbar
|
||||
|
||||
$navbar-dark-hover-color: rgba($white, 1) !default;
|
||||
$navbar-light-hover-color: rgba($black, .9) !default;
|
||||
|
||||
// Pagination
|
||||
// Alerts
|
||||
|
||||
$pagination-color: $contrast-bg !default;
|
||||
$pagination-bg: body-mix(80%) !default;
|
||||
$pagination-border-color: transparent !default;
|
||||
$pagination-hover-color: $contrast-bg !default;
|
||||
$pagination-hover-bg: $nav-link-disabled-color !default;
|
||||
$pagination-hover-border-color: $pagination-border-color !default;
|
||||
$pagination-disabled-color: $nav-link-disabled-color !default;
|
||||
$pagination-disabled-bg: $pagination-bg !default;
|
||||
$pagination-disabled-border-color: $pagination-border-color !default;
|
||||
|
||||
// Cards
|
||||
|
||||
$card-cap-bg: $table-hover-bg !default;
|
||||
$card-bg: body-mix(80%) !default;
|
||||
$card-inner-border-radius: 0 !default;
|
||||
|
||||
// Accordion
|
||||
|
||||
$accordion-bg: $card-bg !default;
|
||||
$accordion-border-width: 0 !default;
|
||||
$accordion-button-bg: $card-cap-bg !default;
|
||||
$accordion-button-active-bg: $primary !default;
|
||||
$accordion-button-active-color: $body-color !default;
|
||||
|
||||
|
||||
// Popovers
|
||||
|
||||
$popover-bg: body-mix(80%) !default;
|
||||
$popover-header-bg: $table-hover-bg !default;
|
||||
|
||||
// Toasts
|
||||
|
||||
$toast-background-color: body-mix(80%) !default;
|
||||
$toast-border-color: rgba(0, 0, 0, .2) !default;
|
||||
$toast-header-color: $body-color !default;
|
||||
$toast-header-background-color: $toast-background-color !default;
|
||||
$toast-header-border-color: $toast-border-color !default;
|
||||
|
||||
// Modals
|
||||
|
||||
$modal-content-bg: body-mix(80%) !default;
|
||||
$modal-header-border-color: rgba(0, 0, 0, .2) !default;
|
||||
$alert-border-width: 0 !default;
|
||||
|
||||
// Progress bars
|
||||
|
||||
$progress-bg: body-mix(80%) !default;
|
||||
|
||||
// List group
|
||||
|
||||
$list-group-color: $contrast-bg !default;
|
||||
$list-group-bg: body-mix(80%) !default;
|
||||
$list-group-border-color: transparent !default;
|
||||
$list-group-hover-bg: $nav-link-disabled-color !default;
|
||||
$list-group-disabled-color: $nav-link-disabled-color !default;
|
||||
$list-group-action-color: $contrast-bg !default;
|
||||
$list-group-action-hover-color: $contrast-bg !default;
|
||||
|
||||
// Breadcrumbs
|
||||
|
||||
$breadcrumb-padding-y: .375rem !default;
|
||||
$breadcrumb-padding-x: .75rem !default;
|
||||
$breadcrumb-bg: body-mix(80%) !default;
|
||||
$breadcrumb-divider-color: $body-color !default;
|
||||
$breadcrumb-active-color: $body-color !default;
|
||||
|
||||
// Close
|
||||
|
||||
$btn-close-color: $contrast-bg !default;
|
||||
$btn-close-opacity: .5 !default;
|
||||
$btn-close-hover-opacity: 1 !default;
|
||||
|
||||
// Code
|
||||
|
||||
$pre-color: inherit !default;
|
||||
$progress-height: .5rem !default;
|
||||
|
||||
|
||||
|
||||
@ -1319,8 +1188,8 @@ $title-banner-bg: null !default;
|
||||
$title-banner-image: null !default;
|
||||
|
||||
|
||||
$btn-code-copy-color: #f8f8f2 !default;
|
||||
$btn-code-copy-color-active: #ffa07a !default;
|
||||
$btn-code-copy-color: #5E5E5E !default;
|
||||
$btn-code-copy-color-active: #4758AB !default;
|
||||
|
||||
// quarto-scss-analysis-annotation { "origin": "Defaults from Quarto's SCSS" }
|
||||
|
||||
@ -13002,147 +12871,33 @@ main.quarto-banner-title-block > section:first-child > h4 {
|
||||
|
||||
// Variables
|
||||
|
||||
$web-font-path: "https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap" !default;
|
||||
$web-font-path: "https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;700&display=swap" !default;
|
||||
@if $web-font-path {
|
||||
@import url($web-font-path);
|
||||
}
|
||||
|
||||
// Buttons
|
||||
|
||||
.btn {
|
||||
@each $color, $value in $theme-colors {
|
||||
&-#{$color} {
|
||||
@if $enable-gradients {
|
||||
background: $value linear-gradient(180deg, mix($white, $value, 15%), $value) repeat-x;
|
||||
} @else {
|
||||
background-color: $value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Typography
|
||||
|
||||
.dropdown-menu {
|
||||
font-size: $font-size-sm;
|
||||
}
|
||||
|
||||
.dropdown-header {
|
||||
font-size: $font-size-sm;
|
||||
}
|
||||
|
||||
.blockquote-footer {
|
||||
color: $body-color;
|
||||
}
|
||||
|
||||
// Tables
|
||||
|
||||
.table {
|
||||
font-size: $font-size-sm;
|
||||
|
||||
.thead-dark th {
|
||||
color: $white;
|
||||
}
|
||||
|
||||
a:not(.btn) {
|
||||
color: $white;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.dropdown-menu a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.text-muted {
|
||||
color: $text-muted;
|
||||
}
|
||||
}
|
||||
|
||||
// Forms
|
||||
|
||||
label,
|
||||
.radio label,
|
||||
.checkbox label,
|
||||
.help-block {
|
||||
font-size: $font-size-sm;
|
||||
}
|
||||
|
||||
.form-floating {
|
||||
> label,
|
||||
> .form-control:focus ~ label,
|
||||
> .form-control:not(:placeholder-shown) ~ label {
|
||||
color: $input-placeholder-color;
|
||||
}
|
||||
}
|
||||
|
||||
// Navs
|
||||
|
||||
.nav-tabs,
|
||||
.nav-pills {
|
||||
.nav-link,
|
||||
.nav-link:hover {
|
||||
color: $body-color;
|
||||
}
|
||||
|
||||
.nav-link.disabled {
|
||||
color: $nav-link-disabled-color;
|
||||
}
|
||||
}
|
||||
|
||||
.page-link:hover,
|
||||
.page-link:focus {
|
||||
color: $white;
|
||||
text-decoration: none;
|
||||
body {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
// Indicators
|
||||
|
||||
.alert {
|
||||
color: $white;
|
||||
border: none;
|
||||
|
||||
a,
|
||||
.alert-link {
|
||||
color: $white;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
@each $color, $value in $theme-colors {
|
||||
&-#{$color} {
|
||||
@if $enable-gradients {
|
||||
background: $value linear-gradient(180deg, mix($white, $value, 15%), $value) repeat-x;
|
||||
} @else {
|
||||
background-color: $value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.badge {
|
||||
&-warning,
|
||||
&-info {
|
||||
color: $white;
|
||||
&.bg-light {
|
||||
color: $dark;
|
||||
}
|
||||
}
|
||||
|
||||
.tooltip {
|
||||
--bs-tooltip-bg: var(--bs-tertiary-bg);
|
||||
--bs-tooltip-color: var(--bs-emphasis-color);
|
||||
}
|
||||
// Progress bars
|
||||
|
||||
// Popovers
|
||||
.progress {
|
||||
@include box-shadow(none);
|
||||
|
||||
.popover-header {
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
|
||||
// Containers
|
||||
|
||||
.modal {
|
||||
&-header,
|
||||
&-footer {
|
||||
background-color: $table-hover-bg;
|
||||
.progress-bar {
|
||||
font-size: 8px;
|
||||
line-height: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -49,13 +49,11 @@ ul.task-list li input[type="checkbox"] {
|
||||
<script src="site_libs/quarto-html/anchor.min.js">
|
||||
</script>
|
||||
<link href="site_libs/quarto-html/tippy.css" rel="stylesheet"/>
|
||||
<link class="quarto-color-scheme" href="site_libs/quarto-html/quarto-syntax-highlighting-e26003cea8cd680ca0c55a263523d882.css" id="quarto-text-highlighting-styles" rel="stylesheet"/>
|
||||
<link class="quarto-color-scheme quarto-color-alternate" href="site_libs/quarto-html/quarto-syntax-highlighting-dark-d166b450ba5a8e9f7a0ab969bf6592c1.css" id="quarto-text-highlighting-styles" rel="prefetch"/>
|
||||
<link href="site_libs/quarto-html/quarto-syntax-highlighting-e26003cea8cd680ca0c55a263523d882.css" id="quarto-text-highlighting-styles" rel="stylesheet"/>
|
||||
<script src="site_libs/bootstrap/bootstrap.min.js">
|
||||
</script>
|
||||
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet"/>
|
||||
<link append-hash="true" class="quarto-color-scheme" data-mode="light" href="site_libs/bootstrap/bootstrap-abd8a8cc10d43f6ba5694496c293d30a.min.css" id="quarto-bootstrap" rel="stylesheet"/>
|
||||
<link append-hash="true" class="quarto-color-scheme quarto-color-alternate" data-mode="dark" href="site_libs/bootstrap/bootstrap-dark-a0b1a25e1f3564865b4452536cc2c9b4.min.css" id="quarto-bootstrap" rel="prefetch"/>
|
||||
<link append-hash="true" data-mode="light" href="site_libs/bootstrap/bootstrap-abd8a8cc10d43f6ba5694496c293d30a.min.css" id="quarto-bootstrap" rel="stylesheet"/>
|
||||
<script id="quarto-search-options" type="application/json">
|
||||
{
|
||||
"location": "navbar",
|
||||
@ -155,7 +153,7 @@ cookieconsent.run({
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="quarto-navbar-tools tools-wide tools-end">
|
||||
<div class="quarto-navbar-tools tools-end">
|
||||
<div class="dropdown">
|
||||
<a aria-expanded="false" aria-label="Compartilhar" class="quarto-navigation-tool dropdown-toggle px-1" data-bs-toggle="dropdown" href="" id="quarto-navigation-tool-dropdown-0" role="link" title="Compartilhar">
|
||||
<i class="bi bi-share">
|
||||
@ -178,10 +176,6 @@ cookieconsent.run({
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<a class="quarto-color-scheme-toggle quarto-navigation-tool px-1" href="" onclick="window.quartoToggleColorScheme(); return false;" title="Alternar modo escuro">
|
||||
<i class="bi">
|
||||
</i>
|
||||
</a>
|
||||
<a class="quarto-reader-toggle quarto-navigation-tool px-1" href="" onclick="window.quartoToggleReader(); return false;" title="Alternar modo de leitor">
|
||||
<div class="quarto-reader-toggle-btn">
|
||||
<i class="bi">
|
||||
@ -385,150 +379,6 @@ cookieconsent.run({
|
||||
}
|
||||
}
|
||||
toggleBodyColorPrimary();
|
||||
const disableStylesheet = (stylesheets) => {
|
||||
for (let i=0; i < stylesheets.length; i++) {
|
||||
const stylesheet = stylesheets[i];
|
||||
stylesheet.rel = 'prefetch';
|
||||
}
|
||||
}
|
||||
const enableStylesheet = (stylesheets) => {
|
||||
for (let i=0; i < stylesheets.length; i++) {
|
||||
const stylesheet = stylesheets[i];
|
||||
stylesheet.rel = 'stylesheet';
|
||||
}
|
||||
}
|
||||
const manageTransitions = (selector, allowTransitions) => {
|
||||
const els = window.document.querySelectorAll(selector);
|
||||
for (let i=0; i < els.length; i++) {
|
||||
const el = els[i];
|
||||
if (allowTransitions) {
|
||||
el.classList.remove('notransition');
|
||||
} else {
|
||||
el.classList.add('notransition');
|
||||
}
|
||||
}
|
||||
}
|
||||
const toggleGiscusIfUsed = (isAlternate, darkModeDefault) => {
|
||||
const baseTheme = document.querySelector('#giscus-base-theme')?.value ?? 'light';
|
||||
const alternateTheme = document.querySelector('#giscus-alt-theme')?.value ?? 'dark';
|
||||
let newTheme = '';
|
||||
if(darkModeDefault) {
|
||||
newTheme = isAlternate ? baseTheme : alternateTheme;
|
||||
} else {
|
||||
newTheme = isAlternate ? alternateTheme : baseTheme;
|
||||
}
|
||||
const changeGiscusTheme = () => {
|
||||
// From: https://github.com/giscus/giscus/issues/336
|
||||
const sendMessage = (message) => {
|
||||
const iframe = document.querySelector('iframe.giscus-frame');
|
||||
if (!iframe) return;
|
||||
iframe.contentWindow.postMessage({ giscus: message }, 'https://giscus.app');
|
||||
}
|
||||
sendMessage({
|
||||
setConfig: {
|
||||
theme: newTheme
|
||||
}
|
||||
});
|
||||
}
|
||||
const isGiscussLoaded = window.document.querySelector('iframe.giscus-frame') !== null;
|
||||
if (isGiscussLoaded) {
|
||||
changeGiscusTheme();
|
||||
}
|
||||
}
|
||||
const toggleColorMode = (alternate) => {
|
||||
// Switch the stylesheets
|
||||
const alternateStylesheets = window.document.querySelectorAll('link.quarto-color-scheme.quarto-color-alternate');
|
||||
manageTransitions('#quarto-margin-sidebar .nav-link', false);
|
||||
if (alternate) {
|
||||
enableStylesheet(alternateStylesheets);
|
||||
for (const sheetNode of alternateStylesheets) {
|
||||
if (sheetNode.id === "quarto-bootstrap") {
|
||||
toggleBodyColorMode(sheetNode);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
disableStylesheet(alternateStylesheets);
|
||||
toggleBodyColorPrimary();
|
||||
}
|
||||
manageTransitions('#quarto-margin-sidebar .nav-link', true);
|
||||
// Switch the toggles
|
||||
const toggles = window.document.querySelectorAll('.quarto-color-scheme-toggle');
|
||||
for (let i=0; i < toggles.length; i++) {
|
||||
const toggle = toggles[i];
|
||||
if (toggle) {
|
||||
if (alternate) {
|
||||
toggle.classList.add("alternate");
|
||||
} else {
|
||||
toggle.classList.remove("alternate");
|
||||
}
|
||||
}
|
||||
}
|
||||
// Hack to workaround the fact that safari doesn't
|
||||
// properly recolor the scrollbar when toggling (#1455)
|
||||
if (navigator.userAgent.indexOf('Safari') > 0 && navigator.userAgent.indexOf('Chrome') == -1) {
|
||||
manageTransitions("body", false);
|
||||
window.scrollTo(0, 1);
|
||||
setTimeout(() => {
|
||||
window.scrollTo(0, 0);
|
||||
manageTransitions("body", true);
|
||||
}, 40);
|
||||
}
|
||||
}
|
||||
const isFileUrl = () => {
|
||||
return window.location.protocol === 'file:';
|
||||
}
|
||||
const hasAlternateSentinel = () => {
|
||||
let styleSentinel = getColorSchemeSentinel();
|
||||
if (styleSentinel !== null) {
|
||||
return styleSentinel === "alternate";
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
const setStyleSentinel = (alternate) => {
|
||||
const value = alternate ? "alternate" : "default";
|
||||
if (!isFileUrl()) {
|
||||
window.localStorage.setItem("quarto-color-scheme", value);
|
||||
} else {
|
||||
localAlternateSentinel = value;
|
||||
}
|
||||
}
|
||||
const getColorSchemeSentinel = () => {
|
||||
if (!isFileUrl()) {
|
||||
const storageValue = window.localStorage.getItem("quarto-color-scheme");
|
||||
return storageValue != null ? storageValue : localAlternateSentinel;
|
||||
} else {
|
||||
return localAlternateSentinel;
|
||||
}
|
||||
}
|
||||
const darkModeDefault = false;
|
||||
let localAlternateSentinel = darkModeDefault ? 'alternate' : 'default';
|
||||
// Dark / light mode switch
|
||||
window.quartoToggleColorScheme = () => {
|
||||
// Read the current dark / light value
|
||||
let toAlternate = !hasAlternateSentinel();
|
||||
toggleColorMode(toAlternate);
|
||||
setStyleSentinel(toAlternate);
|
||||
toggleGiscusIfUsed(toAlternate, darkModeDefault);
|
||||
};
|
||||
// Ensure there is a toggle, if there isn't float one in the top right
|
||||
if (window.document.querySelector('.quarto-color-scheme-toggle') === null) {
|
||||
const a = window.document.createElement('a');
|
||||
a.classList.add('top-right');
|
||||
a.classList.add('quarto-color-scheme-toggle');
|
||||
a.href = "";
|
||||
a.onclick = function() { try { window.quartoToggleColorScheme(); } catch {} return false; };
|
||||
const i = window.document.createElement("i");
|
||||
i.classList.add('bi');
|
||||
a.appendChild(i);
|
||||
window.document.body.appendChild(a);
|
||||
}
|
||||
// Switch to dark mode if need be
|
||||
if (hasAlternateSentinel()) {
|
||||
toggleColorMode(true);
|
||||
} else {
|
||||
toggleColorMode(false);
|
||||
}
|
||||
const icon = "";
|
||||
const anchorJS = new window.AnchorJS();
|
||||
anchorJS.options = {
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -49,13 +49,11 @@ ul.task-list li input[type="checkbox"] {
|
||||
<script src="site_libs/quarto-html/anchor.min.js">
|
||||
</script>
|
||||
<link href="site_libs/quarto-html/tippy.css" rel="stylesheet"/>
|
||||
<link class="quarto-color-scheme" href="site_libs/quarto-html/quarto-syntax-highlighting-e26003cea8cd680ca0c55a263523d882.css" id="quarto-text-highlighting-styles" rel="stylesheet"/>
|
||||
<link class="quarto-color-scheme quarto-color-alternate" href="site_libs/quarto-html/quarto-syntax-highlighting-dark-d166b450ba5a8e9f7a0ab969bf6592c1.css" id="quarto-text-highlighting-styles" rel="prefetch"/>
|
||||
<link href="site_libs/quarto-html/quarto-syntax-highlighting-e26003cea8cd680ca0c55a263523d882.css" id="quarto-text-highlighting-styles" rel="stylesheet"/>
|
||||
<script src="site_libs/bootstrap/bootstrap.min.js">
|
||||
</script>
|
||||
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet"/>
|
||||
<link append-hash="true" class="quarto-color-scheme" data-mode="light" href="site_libs/bootstrap/bootstrap-abd8a8cc10d43f6ba5694496c293d30a.min.css" id="quarto-bootstrap" rel="stylesheet"/>
|
||||
<link append-hash="true" class="quarto-color-scheme quarto-color-alternate" data-mode="dark" href="site_libs/bootstrap/bootstrap-dark-a0b1a25e1f3564865b4452536cc2c9b4.min.css" id="quarto-bootstrap" rel="prefetch"/>
|
||||
<link append-hash="true" data-mode="light" href="site_libs/bootstrap/bootstrap-abd8a8cc10d43f6ba5694496c293d30a.min.css" id="quarto-bootstrap" rel="stylesheet"/>
|
||||
<script id="quarto-search-options" type="application/json">
|
||||
{
|
||||
"location": "navbar",
|
||||
@ -138,6 +136,18 @@ cookieconsent.run({
|
||||
<script data="moan-metadados">
|
||||
var metadados = {livroUrl: "trigonometria-hiperbolica"};var modelo_antigo = true;
|
||||
</script>
|
||||
<script data="moan-metadados">
|
||||
var metadados = {livroUrl: "trigonometria-hiperbolica"};var modelo_antigo = true;
|
||||
</script>
|
||||
<script data="moan-metadados">
|
||||
var metadados = {livroUrl: "trigonometria-hiperbolica"};var modelo_antigo = true;
|
||||
</script>
|
||||
<script data="moan-metadados">
|
||||
var metadados = {livroUrl: "trigonometria-hiperbolica"};var modelo_antigo = true;
|
||||
</script>
|
||||
<script data="moan-metadados">
|
||||
var metadados = {livroUrl: "trigonometria-hiperbolica"};var modelo_antigo = true;
|
||||
</script>
|
||||
</head>
|
||||
<body class="nav-sidebar floating nav-fixed">
|
||||
<div id="quarto-search-results">
|
||||
@ -155,7 +165,7 @@ cookieconsent.run({
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="quarto-navbar-tools tools-wide tools-end">
|
||||
<div class="quarto-navbar-tools tools-end">
|
||||
<div class="dropdown">
|
||||
<a aria-expanded="false" aria-label="Compartilhar" class="quarto-navigation-tool dropdown-toggle px-1" data-bs-toggle="dropdown" href="" id="quarto-navigation-tool-dropdown-0" role="link" title="Compartilhar">
|
||||
<i class="bi bi-share">
|
||||
@ -178,10 +188,6 @@ cookieconsent.run({
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<a class="quarto-color-scheme-toggle quarto-navigation-tool px-1" href="" onclick="window.quartoToggleColorScheme(); return false;" title="Alternar modo escuro">
|
||||
<i class="bi">
|
||||
</i>
|
||||
</a>
|
||||
<a class="quarto-reader-toggle quarto-navigation-tool px-1" href="" onclick="window.quartoToggleReader(); return false;" title="Alternar modo de leitor">
|
||||
<div class="quarto-reader-toggle-btn">
|
||||
<i class="bi">
|
||||
@ -339,81 +345,89 @@ cookieconsent.run({
|
||||
<!-- main -->
|
||||
<main class="content" id="quarto-document-content">
|
||||
<div id="papel">
|
||||
<header class="quarto-title-block default" id="title-block-header">
|
||||
<div class="quarto-title">
|
||||
<h1 class="title">
|
||||
Apresentação
|
||||
</h1>
|
||||
</div>
|
||||
<div class="quarto-title-meta">
|
||||
</div>
|
||||
</header>
|
||||
<div id="conteudo-capitulo">
|
||||
<p class="unidade" id="AP1" title="AP1">
|
||||
As funções trigonométricas circulares e hiperbólicas fazem parte de qualquer curso de Cálculo Diferencial e Integral. A trigonometria circular, conhecida dos alunos desde o ensino fundamental e médio, é em geral bem fundamentada e organizada. São relações definidas e obtidas no triângulo retângulo ou na circunferência trigonométrica e todas as propriedades e identidades, envolvendo essas funções, são provadas a partir das propriedades da circunferência e dos triângulos.
|
||||
</p>
|
||||
<p class="unidade" id="AP2" title="AP2">
|
||||
Esse fato já não ocorre com as funções trigonométricas hiperbólicas. Em geral, os livros de Cálculo Diferencial e Integral definem as funções trigonométricas hiperbólicas como soma de funções exponenciais. Para ser mais preciso,
|
||||
<!-- MATH
|
||||
<div id="papel">
|
||||
<div id="papel">
|
||||
<div id="papel">
|
||||
<div id="papel">
|
||||
<header class="quarto-title-block default" id="title-block-header">
|
||||
<div class="quarto-title">
|
||||
<h1 class="title">
|
||||
Apresentação
|
||||
</h1>
|
||||
</div>
|
||||
<div class="quarto-title-meta">
|
||||
</div>
|
||||
</header>
|
||||
<div id="conteudo-capitulo">
|
||||
<p class="unidade" id="AP1" title="AP1">
|
||||
As funções trigonométricas circulares e hiperbólicas fazem parte de qualquer curso de Cálculo Diferencial e Integral. A trigonometria circular, conhecida dos alunos desde o ensino fundamental e médio, é em geral bem fundamentada e organizada. São relações definidas e obtidas no triângulo retângulo ou na circunferência trigonométrica e todas as propriedades e identidades, envolvendo essas funções, são provadas a partir das propriedades da circunferência e dos triângulos.
|
||||
</p>
|
||||
<p class="unidade" id="AP2" title="AP2">
|
||||
Esse fato já não ocorre com as funções trigonométricas hiperbólicas. Em geral, os livros de Cálculo Diferencial e Integral definem as funções trigonométricas hiperbólicas como soma de funções exponenciais. Para ser mais preciso,
|
||||
<!-- MATH
|
||||
\begin{displaymath}
|
||||
{\mathrm{senh}}x = \frac{e^{x}-e^{-x}}{2} \qquad \text{e} \qquad \cosh x = \frac{e^{x} + e^{-x}}{2}.
|
||||
\end{displaymath}
|
||||
-->
|
||||
</p>
|
||||
<div class="mathdisplay unidade" id="AP3" title="AP3">
|
||||
<img alt="" src="img/img10.svg" style="height: 4.72ex; vertical-align: -1.55ex; "/>
|
||||
e
|
||||
<img alt="$\displaystyle \qquad \cosh x = \frac{e^{x} + e^{-x}}{2}. $" src="img/img11.svg" style="height: 4.72ex; vertical-align: -1.55ex; "/>
|
||||
</div>
|
||||
<p class="unidade" id="AP4" title="AP4">
|
||||
Todas as propriedades envolvendo as funções trigonométricas hiperbólicas são então deduzidas a partir dessas igualdades e de propriedades das funções exponenciais e logarítmicas. Também, as fórmulas de derivação são obtidas usando as fórmulas de derivação para a função exponencial.
|
||||
</p>
|
||||
<p class="unidade" id="AP5" title="AP5">
|
||||
Assim como a trigonometria circular, a trigonometria hiperbólica é também construída e fundamentada. Não sobre a circunferência, mas sobre a hipérbole trigonométrica. As propriedades dessas funções são então consequências de propriedades algébricas e geométricas dessa hipérbole.
|
||||
</p>
|
||||
<p class="unidade" id="AP6" title="AP6">
|
||||
Este assunto me deixou curioso por muito tempo até que resolvi procurar mais informações a esse respeito. Hoje, com essas informações localizadas e reunidas, faço este texto com o objetivo de compartilhar os conhecimentos adquiridos nesse assunto. Para tornar o estudo completo, neste texto é abordada também a trigonometria circular, que na maioria dos livros já está bem detalhada.
|
||||
</p>
|
||||
<p class="unidade" id="AP7" title="AP7">
|
||||
A proposta deste texto é complementar um curso de Cálculo Diferencial e Integral com detalhamento no trato das funções trigonométricas. Do modo que este texto está preparado, esperamos que o leitor, em cada etapa, esteja familiarizado com os conceitos abordados, como por exemplo os conceitos de continuidade, derivação e função inversa.
|
||||
</p>
|
||||
<p class="unidade" id="AP8" title="AP8">
|
||||
O primeiro capítulo tratará das funções trigonométricas circulares. Construiremos primeiramente a trigonometria
|
||||
</p>
|
||||
<div class="mathdisplay unidade" id="AP3" title="AP3">
|
||||
<img alt="" src="img/img10.svg" style="height: 4.72ex; vertical-align: -1.55ex; "/>
|
||||
e
|
||||
<img alt="$\displaystyle \qquad \cosh x = \frac{e^{x} + e^{-x}}{2}. $" src="img/img11.svg" style="height: 4.72ex; vertical-align: -1.55ex; "/>
|
||||
</div>
|
||||
<p class="unidade" id="AP4" title="AP4">
|
||||
Todas as propriedades envolvendo as funções trigonométricas hiperbólicas são então deduzidas a partir dessas igualdades e de propriedades das funções exponenciais e logarítmicas. Também, as fórmulas de derivação são obtidas usando as fórmulas de derivação para a função exponencial.
|
||||
</p>
|
||||
<p class="unidade" id="AP5" title="AP5">
|
||||
Assim como a trigonometria circular, a trigonometria hiperbólica é também construída e fundamentada. Não sobre a circunferência, mas sobre a hipérbole trigonométrica. As propriedades dessas funções são então consequências de propriedades algébricas e geométricas dessa hipérbole.
|
||||
</p>
|
||||
<p class="unidade" id="AP6" title="AP6">
|
||||
Este assunto me deixou curioso por muito tempo até que resolvi procurar mais informações a esse respeito. Hoje, com essas informações localizadas e reunidas, faço este texto com o objetivo de compartilhar os conhecimentos adquiridos nesse assunto. Para tornar o estudo completo, neste texto é abordada também a trigonometria circular, que na maioria dos livros já está bem detalhada.
|
||||
</p>
|
||||
<p class="unidade" id="AP7" title="AP7">
|
||||
A proposta deste texto é complementar um curso de Cálculo Diferencial e Integral com detalhamento no trato das funções trigonométricas. Do modo que este texto está preparado, esperamos que o leitor, em cada etapa, esteja familiarizado com os conceitos abordados, como por exemplo os conceitos de continuidade, derivação e função inversa.
|
||||
</p>
|
||||
<p class="unidade" id="AP8" title="AP8">
|
||||
O primeiro capítulo tratará das funções trigonométricas circulares. Construiremos primeiramente a trigonometria
|
||||
circular sobre o círculo trigonométrico com a dedução das principais identidades trigonométricas. Feito isto,
|
||||
definiremos as funções trigonométricas circulares e estudaremos alguns de seus principais aspectos, como domínio, imagem, gráficos, continuidade e derivadas dessas funções. Para finalizar o primeiro capítulo, estudaremos as funções trigonométricas inversas e suas derivadas.
|
||||
</p>
|
||||
<p class="unidade" id="AP9" title="AP9">
|
||||
No segundo capítulo, trataremos da trigonometria hiperbólica. Estudaremos a definição das funções trigonométricas hiperbólicas na hipérbole trigonométrica e as principais identidades trigonométricas hiperbólicas. Analisaremos as funções trigonométricas hiperbólicas, seus gráficos, continuidade e a derivada dessas funções. E por fim, estudaremos as funções trigonométricas hiperbólicas inversas e suas derivadas.
|
||||
</p>
|
||||
<p class="unidade" id="AP10" title="AP10">
|
||||
O capítulo 3 é dedicado a mostrar que as identidades trigonométricas hiperbólicas envolvendo as funções exponenciais são verdadeiras. Obteremos, ainda, identidades logarítmicas para as funções trigonométricas hiperbólicas inversas e com o auxílio da álgebra de números complexos, obteremos identidades similares para as funções trigonométricas circulares.
|
||||
</p>
|
||||
<p class="unidade" id="AP11" title="AP11">
|
||||
No capítulo 4, são apresentadas algumas aplicações das funções trigonométricas, tanto as circulares quanto as
|
||||
</p>
|
||||
<p class="unidade" id="AP9" title="AP9">
|
||||
No segundo capítulo, trataremos da trigonometria hiperbólica. Estudaremos a definição das funções trigonométricas hiperbólicas na hipérbole trigonométrica e as principais identidades trigonométricas hiperbólicas. Analisaremos as funções trigonométricas hiperbólicas, seus gráficos, continuidade e a derivada dessas funções. E por fim, estudaremos as funções trigonométricas hiperbólicas inversas e suas derivadas.
|
||||
</p>
|
||||
<p class="unidade" id="AP10" title="AP10">
|
||||
O capítulo 3 é dedicado a mostrar que as identidades trigonométricas hiperbólicas envolvendo as funções exponenciais são verdadeiras. Obteremos, ainda, identidades logarítmicas para as funções trigonométricas hiperbólicas inversas e com o auxílio da álgebra de números complexos, obteremos identidades similares para as funções trigonométricas circulares.
|
||||
</p>
|
||||
<p class="unidade" id="AP11" title="AP11">
|
||||
No capítulo 4, são apresentadas algumas aplicações das funções trigonométricas, tanto as circulares quanto as
|
||||
hiperbólicas. Para melhor compreensão deste capítulo, recomendamos ao leitor o conhecimento de alguns conceitos
|
||||
físicos.
|
||||
</p>
|
||||
<p class="unidade" id="AP12" title="AP12">
|
||||
Ao final de cada seção, apresentaremos uma tabela resumida com os principais resultados obtidos naquela seção. Essas tabelas tem o objetivo de facilitar a busca de informações desejadas por parte do leitor.
|
||||
</p>
|
||||
<br/>
|
||||
<table class="caption-top table" data-quarto-postprocess="true">
|
||||
<colgroup>
|
||||
<col style="width: 100%"/>
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr class="odd">
|
||||
<td style="text-align: right;">
|
||||
<div class="centerline" id="par22439">
|
||||
27. Abril 2021
|
||||
</div>
|
||||
<div class="centerline" id="par22440">
|
||||
Sandro Marcos Guzzo
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</p>
|
||||
<p class="unidade" id="AP12" title="AP12">
|
||||
Ao final de cada seção, apresentaremos uma tabela resumida com os principais resultados obtidos naquela seção. Essas tabelas tem o objetivo de facilitar a busca de informações desejadas por parte do leitor.
|
||||
</p>
|
||||
<br/>
|
||||
<table class="caption-top table" data-quarto-postprocess="true">
|
||||
<colgroup>
|
||||
<col style="width: 100%"/>
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr class="odd">
|
||||
<td style="text-align: right;">
|
||||
<div class="centerline" id="par22439">
|
||||
27. Abril 2021
|
||||
</div>
|
||||
<div class="centerline" id="par22440">
|
||||
Sandro Marcos Guzzo
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
@ -438,150 +452,6 @@ físicos.
|
||||
}
|
||||
}
|
||||
toggleBodyColorPrimary();
|
||||
const disableStylesheet = (stylesheets) => {
|
||||
for (let i=0; i < stylesheets.length; i++) {
|
||||
const stylesheet = stylesheets[i];
|
||||
stylesheet.rel = 'prefetch';
|
||||
}
|
||||
}
|
||||
const enableStylesheet = (stylesheets) => {
|
||||
for (let i=0; i < stylesheets.length; i++) {
|
||||
const stylesheet = stylesheets[i];
|
||||
stylesheet.rel = 'stylesheet';
|
||||
}
|
||||
}
|
||||
const manageTransitions = (selector, allowTransitions) => {
|
||||
const els = window.document.querySelectorAll(selector);
|
||||
for (let i=0; i < els.length; i++) {
|
||||
const el = els[i];
|
||||
if (allowTransitions) {
|
||||
el.classList.remove('notransition');
|
||||
} else {
|
||||
el.classList.add('notransition');
|
||||
}
|
||||
}
|
||||
}
|
||||
const toggleGiscusIfUsed = (isAlternate, darkModeDefault) => {
|
||||
const baseTheme = document.querySelector('#giscus-base-theme')?.value ?? 'light';
|
||||
const alternateTheme = document.querySelector('#giscus-alt-theme')?.value ?? 'dark';
|
||||
let newTheme = '';
|
||||
if(darkModeDefault) {
|
||||
newTheme = isAlternate ? baseTheme : alternateTheme;
|
||||
} else {
|
||||
newTheme = isAlternate ? alternateTheme : baseTheme;
|
||||
}
|
||||
const changeGiscusTheme = () => {
|
||||
// From: https://github.com/giscus/giscus/issues/336
|
||||
const sendMessage = (message) => {
|
||||
const iframe = document.querySelector('iframe.giscus-frame');
|
||||
if (!iframe) return;
|
||||
iframe.contentWindow.postMessage({ giscus: message }, 'https://giscus.app');
|
||||
}
|
||||
sendMessage({
|
||||
setConfig: {
|
||||
theme: newTheme
|
||||
}
|
||||
});
|
||||
}
|
||||
const isGiscussLoaded = window.document.querySelector('iframe.giscus-frame') !== null;
|
||||
if (isGiscussLoaded) {
|
||||
changeGiscusTheme();
|
||||
}
|
||||
}
|
||||
const toggleColorMode = (alternate) => {
|
||||
// Switch the stylesheets
|
||||
const alternateStylesheets = window.document.querySelectorAll('link.quarto-color-scheme.quarto-color-alternate');
|
||||
manageTransitions('#quarto-margin-sidebar .nav-link', false);
|
||||
if (alternate) {
|
||||
enableStylesheet(alternateStylesheets);
|
||||
for (const sheetNode of alternateStylesheets) {
|
||||
if (sheetNode.id === "quarto-bootstrap") {
|
||||
toggleBodyColorMode(sheetNode);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
disableStylesheet(alternateStylesheets);
|
||||
toggleBodyColorPrimary();
|
||||
}
|
||||
manageTransitions('#quarto-margin-sidebar .nav-link', true);
|
||||
// Switch the toggles
|
||||
const toggles = window.document.querySelectorAll('.quarto-color-scheme-toggle');
|
||||
for (let i=0; i < toggles.length; i++) {
|
||||
const toggle = toggles[i];
|
||||
if (toggle) {
|
||||
if (alternate) {
|
||||
toggle.classList.add("alternate");
|
||||
} else {
|
||||
toggle.classList.remove("alternate");
|
||||
}
|
||||
}
|
||||
}
|
||||
// Hack to workaround the fact that safari doesn't
|
||||
// properly recolor the scrollbar when toggling (#1455)
|
||||
if (navigator.userAgent.indexOf('Safari') > 0 && navigator.userAgent.indexOf('Chrome') == -1) {
|
||||
manageTransitions("body", false);
|
||||
window.scrollTo(0, 1);
|
||||
setTimeout(() => {
|
||||
window.scrollTo(0, 0);
|
||||
manageTransitions("body", true);
|
||||
}, 40);
|
||||
}
|
||||
}
|
||||
const isFileUrl = () => {
|
||||
return window.location.protocol === 'file:';
|
||||
}
|
||||
const hasAlternateSentinel = () => {
|
||||
let styleSentinel = getColorSchemeSentinel();
|
||||
if (styleSentinel !== null) {
|
||||
return styleSentinel === "alternate";
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
const setStyleSentinel = (alternate) => {
|
||||
const value = alternate ? "alternate" : "default";
|
||||
if (!isFileUrl()) {
|
||||
window.localStorage.setItem("quarto-color-scheme", value);
|
||||
} else {
|
||||
localAlternateSentinel = value;
|
||||
}
|
||||
}
|
||||
const getColorSchemeSentinel = () => {
|
||||
if (!isFileUrl()) {
|
||||
const storageValue = window.localStorage.getItem("quarto-color-scheme");
|
||||
return storageValue != null ? storageValue : localAlternateSentinel;
|
||||
} else {
|
||||
return localAlternateSentinel;
|
||||
}
|
||||
}
|
||||
const darkModeDefault = false;
|
||||
let localAlternateSentinel = darkModeDefault ? 'alternate' : 'default';
|
||||
// Dark / light mode switch
|
||||
window.quartoToggleColorScheme = () => {
|
||||
// Read the current dark / light value
|
||||
let toAlternate = !hasAlternateSentinel();
|
||||
toggleColorMode(toAlternate);
|
||||
setStyleSentinel(toAlternate);
|
||||
toggleGiscusIfUsed(toAlternate, darkModeDefault);
|
||||
};
|
||||
// Ensure there is a toggle, if there isn't float one in the top right
|
||||
if (window.document.querySelector('.quarto-color-scheme-toggle') === null) {
|
||||
const a = window.document.createElement('a');
|
||||
a.classList.add('top-right');
|
||||
a.classList.add('quarto-color-scheme-toggle');
|
||||
a.href = "";
|
||||
a.onclick = function() { try { window.quartoToggleColorScheme(); } catch {} return false; };
|
||||
const i = window.document.createElement("i");
|
||||
i.classList.add('bi');
|
||||
a.appendChild(i);
|
||||
window.document.body.appendChild(a);
|
||||
}
|
||||
// Switch to dark mode if need be
|
||||
if (hasAlternateSentinel()) {
|
||||
toggleColorMode(true);
|
||||
} else {
|
||||
toggleColorMode(false);
|
||||
}
|
||||
const icon = "";
|
||||
const anchorJS = new window.AnchorJS();
|
||||
anchorJS.options = {
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -49,13 +49,11 @@ ul.task-list li input[type="checkbox"] {
|
||||
<script src="site_libs/quarto-html/anchor.min.js">
|
||||
</script>
|
||||
<link href="site_libs/quarto-html/tippy.css" rel="stylesheet"/>
|
||||
<link class="quarto-color-scheme" href="site_libs/quarto-html/quarto-syntax-highlighting-e26003cea8cd680ca0c55a263523d882.css" id="quarto-text-highlighting-styles" rel="stylesheet"/>
|
||||
<link class="quarto-color-scheme quarto-color-alternate" href="site_libs/quarto-html/quarto-syntax-highlighting-dark-d166b450ba5a8e9f7a0ab969bf6592c1.css" id="quarto-text-highlighting-styles" rel="prefetch"/>
|
||||
<link href="site_libs/quarto-html/quarto-syntax-highlighting-e26003cea8cd680ca0c55a263523d882.css" id="quarto-text-highlighting-styles" rel="stylesheet"/>
|
||||
<script src="site_libs/bootstrap/bootstrap.min.js">
|
||||
</script>
|
||||
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet"/>
|
||||
<link append-hash="true" class="quarto-color-scheme" data-mode="light" href="site_libs/bootstrap/bootstrap-abd8a8cc10d43f6ba5694496c293d30a.min.css" id="quarto-bootstrap" rel="stylesheet"/>
|
||||
<link append-hash="true" class="quarto-color-scheme quarto-color-alternate" data-mode="dark" href="site_libs/bootstrap/bootstrap-dark-a0b1a25e1f3564865b4452536cc2c9b4.min.css" id="quarto-bootstrap" rel="prefetch"/>
|
||||
<link append-hash="true" data-mode="light" href="site_libs/bootstrap/bootstrap-abd8a8cc10d43f6ba5694496c293d30a.min.css" id="quarto-bootstrap" rel="stylesheet"/>
|
||||
<script src="site_libs/quarto-contrib/glightbox/glightbox.min.js">
|
||||
</script>
|
||||
<link href="site_libs/quarto-contrib/glightbox/glightbox.min.css" rel="stylesheet"/>
|
||||
@ -147,6 +145,9 @@ cookieconsent.run({
|
||||
<script data="moan-metadados">
|
||||
var metadados = {livroUrl: "trigonometria-hiperbolica"};var modelo_antigo = true;
|
||||
</script>
|
||||
<script data="moan-metadados">
|
||||
var metadados = {livroUrl: "trigonometria-hiperbolica"};var modelo_antigo = true;
|
||||
</script>
|
||||
</head>
|
||||
<body class="nav-sidebar floating nav-fixed">
|
||||
<div id="quarto-search-results">
|
||||
@ -164,7 +165,7 @@ cookieconsent.run({
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="quarto-navbar-tools tools-wide tools-end">
|
||||
<div class="quarto-navbar-tools tools-end">
|
||||
<div class="dropdown">
|
||||
<a aria-expanded="false" aria-label="Compartilhar" class="quarto-navigation-tool dropdown-toggle px-1" data-bs-toggle="dropdown" href="" id="quarto-navigation-tool-dropdown-0" role="link" title="Compartilhar">
|
||||
<i class="bi bi-share">
|
||||
@ -187,10 +188,6 @@ cookieconsent.run({
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<a class="quarto-color-scheme-toggle quarto-navigation-tool px-1" href="" onclick="window.quartoToggleColorScheme(); return false;" title="Alternar modo escuro">
|
||||
<i class="bi">
|
||||
</i>
|
||||
</a>
|
||||
<a class="quarto-reader-toggle quarto-navigation-tool px-1" href="" onclick="window.quartoToggleReader(); return false;" title="Alternar modo de leitor">
|
||||
<div class="quarto-reader-toggle-btn">
|
||||
<i class="bi">
|
||||
@ -377,137 +374,138 @@ cookieconsent.run({
|
||||
<!-- main -->
|
||||
<main class="content" id="quarto-document-content">
|
||||
<div id="papel">
|
||||
<header class="quarto-title-block default" id="title-block-header">
|
||||
<div class="quarto-title">
|
||||
<h1 class="title">
|
||||
As funções trigonométricas circulares e hiperbólicas
|
||||
<div id="papel">
|
||||
<header class="quarto-title-block default" id="title-block-header">
|
||||
<div class="quarto-title">
|
||||
<h1 class="title">
|
||||
As funções trigonométricas circulares e hiperbólicas
|
||||
</h1>
|
||||
</div>
|
||||
<div>
|
||||
<div class="description">
|
||||
Esta obra trata da construção da trigonometria hiperbólica na hipérbole trigonométrica, fazendo a comparação com a trigonometria circular. São abordados aspectos das funções trigonométricas circulares e hiperbólicas, relacionados ao cálculo diferencial e integral.
|
||||
</div>
|
||||
</div>
|
||||
<div class="quarto-title-meta">
|
||||
<div>
|
||||
<div class="quarto-title-meta-heading">
|
||||
Autor
|
||||
</div>
|
||||
<div class="quarto-title-meta-contents">
|
||||
<p>
|
||||
Sandro Marcos Guzzo
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="quarto-title-meta-heading">
|
||||
Data de Publicação
|
||||
</div>
|
||||
<div class="quarto-title-meta-contents">
|
||||
<p class="date">
|
||||
22 de março de 2021
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<p>
|
||||
<a class="lightbox" data-gallery="quarto-lightbox-gallery-1" href="img/CapaAnim.webp">
|
||||
<img class="img-fluid" src="img/CapaAnim.webp"/>
|
||||
</a>
|
||||
</p>
|
||||
<p>
|
||||
<a href="interativo/capa.html">
|
||||
Outra opção para a capa animada.
|
||||
</a>
|
||||
</p>
|
||||
<section class="level1 unnumbered" id="metadados" style="text-align:left;">
|
||||
<h1 class="unnumbered" style="text-align:left;">
|
||||
Metadados
|
||||
</h1>
|
||||
</div>
|
||||
<div>
|
||||
<div class="description">
|
||||
Esta obra trata da construção da trigonometria hiperbólica na hipérbole trigonométrica, fazendo a comparação com a trigonometria circular. São abordados aspectos das funções trigonométricas circulares e hiperbólicas, relacionados ao cálculo diferencial e integral.
|
||||
</div>
|
||||
</div>
|
||||
<div class="quarto-title-meta">
|
||||
<div>
|
||||
<div class="quarto-title-meta-heading">
|
||||
Autor
|
||||
</div>
|
||||
<div class="quarto-title-meta-contents">
|
||||
<p>
|
||||
Sandro Marcos Guzzo
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="quarto-title-meta-heading">
|
||||
Data de Publicação
|
||||
</div>
|
||||
<div class="quarto-title-meta-contents">
|
||||
<p class="date">
|
||||
22 de março de 2021
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<p>
|
||||
<a class="lightbox" data-gallery="quarto-lightbox-gallery-1" href="img/CapaAnim.webp">
|
||||
<img class="img-fluid" src="img/CapaAnim.webp"/>
|
||||
</a>
|
||||
</p>
|
||||
<p>
|
||||
<a href="interativo/capa.html">
|
||||
Outra opção para a capa animada.
|
||||
</a>
|
||||
</p>
|
||||
<section class="level1 unnumbered" id="metadados" style="text-align:left;">
|
||||
<h1 class="unnumbered" style="text-align:left;">
|
||||
Metadados
|
||||
</h1>
|
||||
<p>
|
||||
Este livro é uma publicação da
|
||||
<a href="https://editora.livro.online">
|
||||
<strong>
|
||||
Editora Moan
|
||||
</strong>
|
||||
</a>
|
||||
, Foz do Iguaçu - PR, Brasil. Seu identificador é
|
||||
<strong>
|
||||
ark:68745/eMR8J
|
||||
</strong>
|
||||
. A versão física (impressa) deste livro possui
|
||||
<strong>
|
||||
ark:68745/eMR8J.4N
|
||||
</strong>
|
||||
e
|
||||
<strong>
|
||||
isbn:9786599140440
|
||||
</strong>
|
||||
.
|
||||
</p>
|
||||
<p>
|
||||
<a class="lightbox" data-gallery="quarto-lightbox-gallery-2" href="img/logomoan.png">
|
||||
<img alt="Logo da Editora Moan. Um triângulo representando uma câmera, um retângulo representando um livro, a escrita Editora Moan. Tudo branco em um fundo escuro. E o 'R' de marca registrada em azul" class="img-fluid" src="img/logomoan.png"/>
|
||||
</a>
|
||||
</p>
|
||||
<p>
|
||||
Para saber o que é e como usar um identificador ARK, acesse:
|
||||
<a href="https://n2t.net/ark:68745/eMT4d/posts/ark_o_que_e">
|
||||
https://n2t.net/ark:68745/eMT4d/posts/ark_o_que_e
|
||||
</a>
|
||||
.
|
||||
</p>
|
||||
<p>
|
||||
Confira, abaixo, os metadados completos deste livro, conforme registro ARK. Você pode escolher a versão JSON ou YAML.
|
||||
</p>
|
||||
<div class="tabset-margin-container">
|
||||
</div>
|
||||
<div class="panel-tabset">
|
||||
<ul class="nav nav-tabs" role="tablist">
|
||||
<li class="nav-item" role="presentation">
|
||||
<a aria-controls="tabset-1-1" aria-selected="true" class="nav-link active" data-bs-target="#tabset-1-1" data-bs-toggle="tab" id="tabset-1-1-tab" role="tab">
|
||||
JSON
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item" role="presentation">
|
||||
<a aria-controls="tabset-1-2" aria-selected="false" class="nav-link" data-bs-target="#tabset-1-2" data-bs-toggle="tab" id="tabset-1-2-tab" role="tab">
|
||||
YAML
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab-content">
|
||||
<div aria-labelledby="tabset-1-1-tab" class="tab-pane active" id="tabset-1-1" role="tabpanel">
|
||||
<object data="https://ark.livro.online/json/ark_dp_68745_b_eMR8J.json" id="metadados_livro_json" style="width: 100%; height:500px;" type="text/json">
|
||||
</object>
|
||||
<p>
|
||||
Caso não esteja visualizando, acesse:
|
||||
<a href="https://ark.livro.online/json/ark_dp_68745_b_eMR8J.json">
|
||||
https://ark.livro.online/json/ark_dp_68745_b_eMR8J.json
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
<div aria-labelledby="tabset-1-2-tab" class="tab-pane" id="tabset-1-2" role="tabpanel">
|
||||
<object data="https://ark.livro.online/yaml/ark_dp_68745_b_eMR8J.yml" id="metadados_livro_yml" style="width: 100%; height:500px;" type="text/yaml">
|
||||
</object>
|
||||
<p>
|
||||
Caso não esteja visualizando, acesse:
|
||||
<a href="https://ark.livro.online/yaml/ark_dp_68745_b_eMR8J.yml">
|
||||
https://ark.livro.online/yaml/ark_dp_68745_b_eMR8J.yml
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<section class="level2" id="como-citar">
|
||||
<h2 class="anchored" data-anchor-id="como-citar">
|
||||
Como Citar
|
||||
</h2>
|
||||
<p>
|
||||
BibTeX:
|
||||
Este livro é uma publicação da
|
||||
<a href="https://editora.livro.online">
|
||||
<strong>
|
||||
Editora Moan
|
||||
</strong>
|
||||
</a>
|
||||
, Foz do Iguaçu - PR, Brasil. Seu identificador é
|
||||
<strong>
|
||||
ark:68745/eMR8J
|
||||
</strong>
|
||||
. A versão física (impressa) deste livro possui
|
||||
<strong>
|
||||
ark:68745/eMR8J.4N
|
||||
</strong>
|
||||
e
|
||||
<strong>
|
||||
isbn:9786599140440
|
||||
</strong>
|
||||
.
|
||||
</p>
|
||||
<div id="como-citar-bibtex">
|
||||
<pre><code>@book{guzzo_s_m_2021,
|
||||
<p>
|
||||
<a class="lightbox" data-gallery="quarto-lightbox-gallery-2" href="img/logomoan.png">
|
||||
<img alt="Logo da Editora Moan. Um triângulo representando uma câmera, um retângulo representando um livro, a escrita Editora Moan. Tudo branco em um fundo escuro. E o 'R' de marca registrada em azul" class="img-fluid" src="img/logomoan.png"/>
|
||||
</a>
|
||||
</p>
|
||||
<p>
|
||||
Para saber o que é e como usar um identificador ARK, acesse:
|
||||
<a href="https://n2t.net/ark:68745/eMT4d/posts/ark_o_que_e">
|
||||
https://n2t.net/ark:68745/eMT4d/posts/ark_o_que_e
|
||||
</a>
|
||||
.
|
||||
</p>
|
||||
<p>
|
||||
Confira, abaixo, os metadados completos deste livro, conforme registro ARK. Você pode escolher a versão JSON ou YAML.
|
||||
</p>
|
||||
<div class="tabset-margin-container">
|
||||
</div>
|
||||
<div class="panel-tabset">
|
||||
<ul class="nav nav-tabs" role="tablist">
|
||||
<li class="nav-item" role="presentation">
|
||||
<a aria-controls="tabset-1-1" aria-selected="true" class="nav-link active" data-bs-target="#tabset-1-1" data-bs-toggle="tab" id="tabset-1-1-tab" role="tab">
|
||||
JSON
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item" role="presentation">
|
||||
<a aria-controls="tabset-1-2" aria-selected="false" class="nav-link" data-bs-target="#tabset-1-2" data-bs-toggle="tab" id="tabset-1-2-tab" role="tab">
|
||||
YAML
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab-content">
|
||||
<div aria-labelledby="tabset-1-1-tab" class="tab-pane active" id="tabset-1-1" role="tabpanel">
|
||||
<object data="https://ark.livro.online/json/ark_dp_68745_b_eMR8J.json" id="metadados_livro_json" style="width: 100%; height:500px;" type="text/json">
|
||||
</object>
|
||||
<p>
|
||||
Caso não esteja visualizando, acesse:
|
||||
<a href="https://ark.livro.online/json/ark_dp_68745_b_eMR8J.json">
|
||||
https://ark.livro.online/json/ark_dp_68745_b_eMR8J.json
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
<div aria-labelledby="tabset-1-2-tab" class="tab-pane" id="tabset-1-2" role="tabpanel">
|
||||
<object data="https://ark.livro.online/yaml/ark_dp_68745_b_eMR8J.yml" id="metadados_livro_yml" style="width: 100%; height:500px;" type="text/yaml">
|
||||
</object>
|
||||
<p>
|
||||
Caso não esteja visualizando, acesse:
|
||||
<a href="https://ark.livro.online/yaml/ark_dp_68745_b_eMR8J.yml">
|
||||
https://ark.livro.online/yaml/ark_dp_68745_b_eMR8J.yml
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<section class="level2" id="como-citar">
|
||||
<h2 class="anchored" data-anchor-id="como-citar">
|
||||
Como Citar
|
||||
</h2>
|
||||
<p>
|
||||
BibTeX:
|
||||
</p>
|
||||
<div id="como-citar-bibtex">
|
||||
<pre><code>@book{guzzo_s_m_2021,
|
||||
author = {Guzzo, Sandro Marcos},
|
||||
title = {As funções trigonométricas circulares e hiperbólicas},
|
||||
year = {2021},
|
||||
@ -516,93 +514,111 @@ cookieconsent.run({
|
||||
url = {https://livro.online/ark:68745/eMR8J},
|
||||
urldate = {A data que vc acessou no padrão yyyy-mm-dd},
|
||||
}</code></pre>
|
||||
</div>
|
||||
<p>
|
||||
Para atribuição, cite este trabalho como:
|
||||
</p>
|
||||
<div id="como-citar-atribuicao">
|
||||
</div>
|
||||
<p>
|
||||
GUZZO, S. M.
|
||||
<strong>
|
||||
As funções trigonométricas circulares e hiperbólicas
|
||||
</strong>
|
||||
. Foz do Iguaçu: Editora Moan, 2021. Disponível em: https://livro.online/ark:68745/eMR8J. Acesso em: dd mmm(3 primeiras letras). yyyy.
|
||||
Para atribuição, cite este trabalho como:
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="level2" id="versão-impressa">
|
||||
<h2 class="anchored" data-anchor-id="versão-impressa">
|
||||
Versão Impressa
|
||||
</h2>
|
||||
<p>
|
||||
Compre a versão impressa e ajude a manter este projeto com livros gratuitos
|
||||
<em>
|
||||
online
|
||||
</em>
|
||||
. Mantenha o conhecimento livre!
|
||||
</p>
|
||||
<p>
|
||||
Assim que o livro físico estiver disponível para venda, ele aparecerá aqui
|
||||
<a class="footnote-ref" href="#fn1" id="fnref1" role="doc-noteref">
|
||||
<sup>
|
||||
1
|
||||
</sup>
|
||||
</a>
|
||||
.
|
||||
</p>
|
||||
<ul id="postos-de-venda">
|
||||
<li>
|
||||
<a href="https://produto.mercadolivre.com.br/MLB-1821196590-livro-as-funcoes-trigonometricas-circulares-e-hiperbolicas-_JM#position=1&search_layout=stack&type=item&tracking_id=8d158f22-f44f-4cec-81f1-0865da458ebd">
|
||||
Mercado Livre
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.amazon.com.br/As-fun%C3%A7%C3%B5es-trigonom%C3%A9tricas-circulares-hiperb%C3%B3licas/dp/6599140440/ref=sr_1_1?__mk_pt_BR=%C3%85M%C3%85%C5%BD%C3%95%C3%91&dchild=1&keywords=as+fun%C3%A7%C3%B5es+trigonom%C3%A9tricas+hiperb%C3%B3licas&qid=1620506187&sr=8-1">
|
||||
Amazon
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="mailto:smguzzo@gmail.com">
|
||||
Com o autor: smguzzo@gmail.com
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="level2" id="direitos-autorais">
|
||||
<h2 class="anchored" data-anchor-id="direitos-autorais">
|
||||
Direitos Autorais
|
||||
</h2>
|
||||
<p>
|
||||
© Sandro Marcos Guzzo e a Editora Moan, 2021
|
||||
</p>
|
||||
<p>
|
||||
<a href="https://www.planalto.gov.br/ccivil_03/leis/l9610.htm">
|
||||
Todos os direitos reservados
|
||||
</a>
|
||||
</p>
|
||||
</section>
|
||||
</section>
|
||||
<section class="footnotes footnotes-end-of-document" id="footnotes" role="doc-endnotes">
|
||||
<hr/>
|
||||
<ol>
|
||||
<li id="fn1">
|
||||
<div id="como-citar-atribuicao">
|
||||
<p>
|
||||
GUZZO, S. M.
|
||||
<strong>
|
||||
As funções trigonométricas circulares e hiperbólicas
|
||||
</strong>
|
||||
. Foz do Iguaçu: Editora Moan, 2021. Disponível em: https://livro.online/ark:68745/eMR8J. Acesso em: dd mmm(3 primeiras letras). yyyy.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="level2" id="versão-impressa">
|
||||
<h2 class="anchored" data-anchor-id="versão-impressa">
|
||||
Versão Impressa
|
||||
</h2>
|
||||
<p>
|
||||
Se algum link de compra estiver quebrado, por favor, nos avise no e-mail
|
||||
<a href="mailto:editora@livro.online">
|
||||
editora@livro.online
|
||||
</a>
|
||||
ou pelo whatsapp
|
||||
<a href="https://api.whatsapp.com/send?phone=5545935050721">
|
||||
+55 (45) 9 3505-0721
|
||||
Compre a versão impressa e ajude a manter este projeto com livros gratuitos
|
||||
<em>
|
||||
online
|
||||
</em>
|
||||
. Mantenha o conhecimento livre!
|
||||
</p>
|
||||
<p>
|
||||
Assim que o livro físico estiver disponível para venda, ele aparecerá aqui
|
||||
<a class="footnote-ref" href="#fn1" id="fnref1" role="doc-noteref">
|
||||
<sup>
|
||||
1
|
||||
</sup>
|
||||
</a>
|
||||
.
|
||||
<a class="footnote-back" href="#fnref1" role="doc-backlink">
|
||||
↩︎
|
||||
</p>
|
||||
<ul id="postos-de-venda">
|
||||
<li>
|
||||
<a href="https://produto.mercadolivre.com.br/MLB-1821196590-livro-as-funcoes-trigonometricas-circulares-e-hiperbolicas-_JM#position=1&search_layout=stack&type=item&tracking_id=8d158f22-f44f-4cec-81f1-0865da458ebd">
|
||||
Mercado Livre
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.amazon.com.br/As-fun%C3%A7%C3%B5es-trigonom%C3%A9tricas-circulares-hiperb%C3%B3licas/dp/6599140440/ref=sr_1_1?__mk_pt_BR=%C3%85M%C3%85%C5%BD%C3%95%C3%91&dchild=1&keywords=as+fun%C3%A7%C3%B5es+trigonom%C3%A9tricas+hiperb%C3%B3licas&qid=1620506187&sr=8-1">
|
||||
Amazon
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="mailto:smguzzo@gmail.com">
|
||||
Com o autor: smguzzo@gmail.com
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul id="postos-de-venda">
|
||||
<li>
|
||||
<a href="https://produto.mercadolivre.com.br/MLB-1821196590-livro-as-funcoes-trigonometricas-circulares-e-hiperbolicas-_JM#position=1&search_layout=stack&type=item&tracking_id=8d158f22-f44f-4cec-81f1-0865da458ebd">
|
||||
Mercado Livre
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.amazon.com.br/As-fun%C3%A7%C3%B5es-trigonom%C3%A9tricas-circulares-hiperb%C3%B3licas/dp/6599140440/ref=sr_1_1?__mk_pt_BR=%C3%85M%C3%85%C5%BD%C3%95%C3%91&dchild=1&keywords=as+fun%C3%A7%C3%B5es+trigonom%C3%A9tricas+hiperb%C3%B3licas&qid=1620506187&sr=8-1">
|
||||
Amazon
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="mailto:smguzzo@gmail.com">
|
||||
Com o autor: smguzzo@gmail.com
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="level2" id="direitos-autorais">
|
||||
<h2 class="anchored" data-anchor-id="direitos-autorais">
|
||||
Direitos Autorais
|
||||
</h2>
|
||||
<p>
|
||||
© Sandro Marcos Guzzo e a Editora Moan, 2021
|
||||
</p>
|
||||
<p>
|
||||
<a href="https://www.planalto.gov.br/ccivil_03/leis/l9610.htm">
|
||||
Todos os direitos reservados
|
||||
</a>
|
||||
</p>
|
||||
</li>
|
||||
</ol>
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
<section class="footnotes footnotes-end-of-document" id="footnotes" role="doc-endnotes">
|
||||
<hr/>
|
||||
<ol>
|
||||
<li id="fn1">
|
||||
<p>
|
||||
Se algum link de compra estiver quebrado, por favor, nos avise no e-mail
|
||||
<a href="mailto:editora@livro.online">
|
||||
editora@livro.online
|
||||
</a>
|
||||
ou pelo whatsapp
|
||||
<a href="https://api.whatsapp.com/send?phone=5545935050721">
|
||||
+55 (45) 9 3505-0721
|
||||
</a>
|
||||
.
|
||||
<a class="footnote-back" href="#fnref1" role="doc-backlink">
|
||||
↩︎
|
||||
</a>
|
||||
</p>
|
||||
</li>
|
||||
</ol>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<!-- /main -->
|
||||
@ -626,150 +642,6 @@ cookieconsent.run({
|
||||
}
|
||||
}
|
||||
toggleBodyColorPrimary();
|
||||
const disableStylesheet = (stylesheets) => {
|
||||
for (let i=0; i < stylesheets.length; i++) {
|
||||
const stylesheet = stylesheets[i];
|
||||
stylesheet.rel = 'prefetch';
|
||||
}
|
||||
}
|
||||
const enableStylesheet = (stylesheets) => {
|
||||
for (let i=0; i < stylesheets.length; i++) {
|
||||
const stylesheet = stylesheets[i];
|
||||
stylesheet.rel = 'stylesheet';
|
||||
}
|
||||
}
|
||||
const manageTransitions = (selector, allowTransitions) => {
|
||||
const els = window.document.querySelectorAll(selector);
|
||||
for (let i=0; i < els.length; i++) {
|
||||
const el = els[i];
|
||||
if (allowTransitions) {
|
||||
el.classList.remove('notransition');
|
||||
} else {
|
||||
el.classList.add('notransition');
|
||||
}
|
||||
}
|
||||
}
|
||||
const toggleGiscusIfUsed = (isAlternate, darkModeDefault) => {
|
||||
const baseTheme = document.querySelector('#giscus-base-theme')?.value ?? 'light';
|
||||
const alternateTheme = document.querySelector('#giscus-alt-theme')?.value ?? 'dark';
|
||||
let newTheme = '';
|
||||
if(darkModeDefault) {
|
||||
newTheme = isAlternate ? baseTheme : alternateTheme;
|
||||
} else {
|
||||
newTheme = isAlternate ? alternateTheme : baseTheme;
|
||||
}
|
||||
const changeGiscusTheme = () => {
|
||||
// From: https://github.com/giscus/giscus/issues/336
|
||||
const sendMessage = (message) => {
|
||||
const iframe = document.querySelector('iframe.giscus-frame');
|
||||
if (!iframe) return;
|
||||
iframe.contentWindow.postMessage({ giscus: message }, 'https://giscus.app');
|
||||
}
|
||||
sendMessage({
|
||||
setConfig: {
|
||||
theme: newTheme
|
||||
}
|
||||
});
|
||||
}
|
||||
const isGiscussLoaded = window.document.querySelector('iframe.giscus-frame') !== null;
|
||||
if (isGiscussLoaded) {
|
||||
changeGiscusTheme();
|
||||
}
|
||||
}
|
||||
const toggleColorMode = (alternate) => {
|
||||
// Switch the stylesheets
|
||||
const alternateStylesheets = window.document.querySelectorAll('link.quarto-color-scheme.quarto-color-alternate');
|
||||
manageTransitions('#quarto-margin-sidebar .nav-link', false);
|
||||
if (alternate) {
|
||||
enableStylesheet(alternateStylesheets);
|
||||
for (const sheetNode of alternateStylesheets) {
|
||||
if (sheetNode.id === "quarto-bootstrap") {
|
||||
toggleBodyColorMode(sheetNode);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
disableStylesheet(alternateStylesheets);
|
||||
toggleBodyColorPrimary();
|
||||
}
|
||||
manageTransitions('#quarto-margin-sidebar .nav-link', true);
|
||||
// Switch the toggles
|
||||
const toggles = window.document.querySelectorAll('.quarto-color-scheme-toggle');
|
||||
for (let i=0; i < toggles.length; i++) {
|
||||
const toggle = toggles[i];
|
||||
if (toggle) {
|
||||
if (alternate) {
|
||||
toggle.classList.add("alternate");
|
||||
} else {
|
||||
toggle.classList.remove("alternate");
|
||||
}
|
||||
}
|
||||
}
|
||||
// Hack to workaround the fact that safari doesn't
|
||||
// properly recolor the scrollbar when toggling (#1455)
|
||||
if (navigator.userAgent.indexOf('Safari') > 0 && navigator.userAgent.indexOf('Chrome') == -1) {
|
||||
manageTransitions("body", false);
|
||||
window.scrollTo(0, 1);
|
||||
setTimeout(() => {
|
||||
window.scrollTo(0, 0);
|
||||
manageTransitions("body", true);
|
||||
}, 40);
|
||||
}
|
||||
}
|
||||
const isFileUrl = () => {
|
||||
return window.location.protocol === 'file:';
|
||||
}
|
||||
const hasAlternateSentinel = () => {
|
||||
let styleSentinel = getColorSchemeSentinel();
|
||||
if (styleSentinel !== null) {
|
||||
return styleSentinel === "alternate";
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
const setStyleSentinel = (alternate) => {
|
||||
const value = alternate ? "alternate" : "default";
|
||||
if (!isFileUrl()) {
|
||||
window.localStorage.setItem("quarto-color-scheme", value);
|
||||
} else {
|
||||
localAlternateSentinel = value;
|
||||
}
|
||||
}
|
||||
const getColorSchemeSentinel = () => {
|
||||
if (!isFileUrl()) {
|
||||
const storageValue = window.localStorage.getItem("quarto-color-scheme");
|
||||
return storageValue != null ? storageValue : localAlternateSentinel;
|
||||
} else {
|
||||
return localAlternateSentinel;
|
||||
}
|
||||
}
|
||||
const darkModeDefault = false;
|
||||
let localAlternateSentinel = darkModeDefault ? 'alternate' : 'default';
|
||||
// Dark / light mode switch
|
||||
window.quartoToggleColorScheme = () => {
|
||||
// Read the current dark / light value
|
||||
let toAlternate = !hasAlternateSentinel();
|
||||
toggleColorMode(toAlternate);
|
||||
setStyleSentinel(toAlternate);
|
||||
toggleGiscusIfUsed(toAlternate, darkModeDefault);
|
||||
};
|
||||
// Ensure there is a toggle, if there isn't float one in the top right
|
||||
if (window.document.querySelector('.quarto-color-scheme-toggle') === null) {
|
||||
const a = window.document.createElement('a');
|
||||
a.classList.add('top-right');
|
||||
a.classList.add('quarto-color-scheme-toggle');
|
||||
a.href = "";
|
||||
a.onclick = function() { try { window.quartoToggleColorScheme(); } catch {} return false; };
|
||||
const i = window.document.createElement("i");
|
||||
i.classList.add('bi');
|
||||
a.appendChild(i);
|
||||
window.document.body.appendChild(a);
|
||||
}
|
||||
// Switch to dark mode if need be
|
||||
if (hasAlternateSentinel()) {
|
||||
toggleColorMode(true);
|
||||
} else {
|
||||
toggleColorMode(false);
|
||||
}
|
||||
const icon = "";
|
||||
const anchorJS = new window.AnchorJS();
|
||||
anchorJS.options = {
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -49,13 +49,11 @@ ul.task-list li input[type="checkbox"] {
|
||||
<script src="site_libs/quarto-html/anchor.min.js">
|
||||
</script>
|
||||
<link href="site_libs/quarto-html/tippy.css" rel="stylesheet"/>
|
||||
<link class="quarto-color-scheme" href="site_libs/quarto-html/quarto-syntax-highlighting-e26003cea8cd680ca0c55a263523d882.css" id="quarto-text-highlighting-styles" rel="stylesheet"/>
|
||||
<link class="quarto-color-scheme quarto-color-alternate" href="site_libs/quarto-html/quarto-syntax-highlighting-dark-d166b450ba5a8e9f7a0ab969bf6592c1.css" id="quarto-text-highlighting-styles" rel="prefetch"/>
|
||||
<link href="site_libs/quarto-html/quarto-syntax-highlighting-e26003cea8cd680ca0c55a263523d882.css" id="quarto-text-highlighting-styles" rel="stylesheet"/>
|
||||
<script src="site_libs/bootstrap/bootstrap.min.js">
|
||||
</script>
|
||||
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet"/>
|
||||
<link append-hash="true" class="quarto-color-scheme" data-mode="light" href="site_libs/bootstrap/bootstrap-abd8a8cc10d43f6ba5694496c293d30a.min.css" id="quarto-bootstrap" rel="stylesheet"/>
|
||||
<link append-hash="true" class="quarto-color-scheme quarto-color-alternate" data-mode="dark" href="site_libs/bootstrap/bootstrap-dark-a0b1a25e1f3564865b4452536cc2c9b4.min.css" id="quarto-bootstrap" rel="prefetch"/>
|
||||
<link append-hash="true" data-mode="light" href="site_libs/bootstrap/bootstrap-abd8a8cc10d43f6ba5694496c293d30a.min.css" id="quarto-bootstrap" rel="stylesheet"/>
|
||||
<script id="quarto-search-options" type="application/json">
|
||||
{
|
||||
"location": "navbar",
|
||||
@ -138,6 +136,18 @@ cookieconsent.run({
|
||||
<script data="moan-metadados">
|
||||
var metadados = {livroUrl: "trigonometria-hiperbolica"};var modelo_antigo = true;
|
||||
</script>
|
||||
<script data="moan-metadados">
|
||||
var metadados = {livroUrl: "trigonometria-hiperbolica"};var modelo_antigo = true;
|
||||
</script>
|
||||
<script data="moan-metadados">
|
||||
var metadados = {livroUrl: "trigonometria-hiperbolica"};var modelo_antigo = true;
|
||||
</script>
|
||||
<script data="moan-metadados">
|
||||
var metadados = {livroUrl: "trigonometria-hiperbolica"};var modelo_antigo = true;
|
||||
</script>
|
||||
<script data="moan-metadados">
|
||||
var metadados = {livroUrl: "trigonometria-hiperbolica"};var modelo_antigo = true;
|
||||
</script>
|
||||
</head>
|
||||
<body class="nav-sidebar floating nav-fixed">
|
||||
<div id="quarto-search-results">
|
||||
@ -155,7 +165,7 @@ cookieconsent.run({
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="quarto-navbar-tools tools-wide tools-end">
|
||||
<div class="quarto-navbar-tools tools-end">
|
||||
<div class="dropdown">
|
||||
<a aria-expanded="false" aria-label="Compartilhar" class="quarto-navigation-tool dropdown-toggle px-1" data-bs-toggle="dropdown" href="" id="quarto-navigation-tool-dropdown-0" role="link" title="Compartilhar">
|
||||
<i class="bi bi-share">
|
||||
@ -178,10 +188,6 @@ cookieconsent.run({
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<a class="quarto-color-scheme-toggle quarto-navigation-tool px-1" href="" onclick="window.quartoToggleColorScheme(); return false;" title="Alternar modo escuro">
|
||||
<i class="bi">
|
||||
</i>
|
||||
</a>
|
||||
<a class="quarto-reader-toggle quarto-navigation-tool px-1" href="" onclick="window.quartoToggleReader(); return false;" title="Alternar modo de leitor">
|
||||
<div class="quarto-reader-toggle-btn">
|
||||
<i class="bi">
|
||||
@ -339,154 +345,162 @@ cookieconsent.run({
|
||||
<!-- main -->
|
||||
<main class="content" id="quarto-document-content">
|
||||
<div id="papel">
|
||||
<header class="quarto-title-block default" id="title-block-header">
|
||||
<div class="quarto-title">
|
||||
<h1 class="title">
|
||||
<span class="quarto-section-identifier" id="SECTION00900000000000000000">
|
||||
Referências
|
||||
</span>
|
||||
</h1>
|
||||
</div>
|
||||
<div class="quarto-title-meta">
|
||||
</div>
|
||||
</header>
|
||||
<style>
|
||||
li {margin-bottom: 20px;}
|
||||
</style>
|
||||
<div id="conteudo-capitulo">
|
||||
<br/>
|
||||
<br/>
|
||||
<br/>
|
||||
<ol>
|
||||
<li id="Eymard">
|
||||
Eymard, Pierre; Lafon, Jean-Pierre.
|
||||
<i>
|
||||
The number
|
||||
<span class="MATH">
|
||||
<img alt="$\pi $" src="img/img9.svg" style="height: 1.16ex; vertical-align: -0.10ex; "/>
|
||||
</span>
|
||||
.
|
||||
</i>
|
||||
Tradução (para o inglês) de Stephen S. Wilson, AMS,
|
||||
<div id="papel">
|
||||
<div id="papel">
|
||||
<div id="papel">
|
||||
<div id="papel">
|
||||
<header class="quarto-title-block default" id="title-block-header">
|
||||
<div class="quarto-title">
|
||||
<h1 class="title">
|
||||
<span class="quarto-section-identifier" id="SECTION00900000000000000000">
|
||||
Referências
|
||||
</span>
|
||||
</h1>
|
||||
</div>
|
||||
<div class="quarto-title-meta">
|
||||
</div>
|
||||
</header>
|
||||
<style>
|
||||
li {margin-bottom: 20px;}
|
||||
</style>
|
||||
<div id="conteudo-capitulo">
|
||||
<br/>
|
||||
<br/>
|
||||
<br/>
|
||||
<ol>
|
||||
<li id="Eymard">
|
||||
Eymard, Pierre; Lafon, Jean-Pierre.
|
||||
<i>
|
||||
The number
|
||||
<span class="MATH">
|
||||
<img alt="$\pi $" src="img/img9.svg" style="height: 1.16ex; vertical-align: -0.10ex; "/>
|
||||
</span>
|
||||
.
|
||||
</i>
|
||||
Tradução (para o inglês) de Stephen S. Wilson, AMS,
|
||||
Providence, Rhode Island, 2004.
|
||||
</li>
|
||||
<li id="Guidorizzi">
|
||||
Guidorizzi, Hamilton Luiz.
|
||||
<i>
|
||||
Um curso de cálculo.
|
||||
</i>
|
||||
Volume 4,
|
||||
<span class="MATH">
|
||||
<img alt="$5^{a}$" src="img/img2208.svg" style="height: 1.69ex; vertical-align: -0.13ex; "/>
|
||||
</span>
|
||||
edição, Rio de Janeiro: LTC - Livros
|
||||
</li>
|
||||
<li id="Guidorizzi">
|
||||
Guidorizzi, Hamilton Luiz.
|
||||
<i>
|
||||
Um curso de cálculo.
|
||||
</i>
|
||||
Volume 4,
|
||||
<span class="MATH">
|
||||
<img alt="$5^{a}$" src="img/img2208.svg" style="height: 1.69ex; vertical-align: -0.13ex; "/>
|
||||
</span>
|
||||
edição, Rio de Janeiro: LTC - Livros
|
||||
técnicos e científicos, 2002.
|
||||
</li>
|
||||
<li id="Iorio">
|
||||
Iório, Valéria.
|
||||
<i>
|
||||
EDP, um curso de graduação.
|
||||
</i>
|
||||
<span class="MATH">
|
||||
<img alt="$2^{a}$" src="img/img2209.svg" style="height: 1.66ex; vertical-align: -0.10ex; "/>
|
||||
</span>
|
||||
edição, Coleção Matemática Universitária. Rio de
|
||||
</li>
|
||||
<li id="Iorio">
|
||||
Iório, Valéria.
|
||||
<i>
|
||||
EDP, um curso de graduação.
|
||||
</i>
|
||||
<span class="MATH">
|
||||
<img alt="$2^{a}$" src="img/img2209.svg" style="height: 1.66ex; vertical-align: -0.10ex; "/>
|
||||
</span>
|
||||
edição, Coleção Matemática Universitária. Rio de
|
||||
Janeiro: Instituto de Matemática Pura e Aplicada, 2001.
|
||||
</li>
|
||||
<li id="Leithold">
|
||||
Leithold, Louis.
|
||||
<i>
|
||||
O cálculo com geometria analítica.
|
||||
</i>
|
||||
Vol 1.
|
||||
<span class="MATH">
|
||||
<img alt="$3^{a}$" src="img/img2210.svg" style="height: 1.69ex; vertical-align: -0.13ex; "/>
|
||||
</span>
|
||||
edição. São Paulo: Editora Harbra, 1994.
|
||||
</li>
|
||||
<li id="Lima">
|
||||
Lima, Elon L.
|
||||
<i>
|
||||
Curso de análise.
|
||||
</i>
|
||||
Vol 1. Projeto Euclides.
|
||||
<span class="MATH">
|
||||
<img alt="$14^{a}$" src="img/img2211.svg" style="height: 1.67ex; vertical-align: -0.11ex; "/>
|
||||
</span>
|
||||
edição. Rio de Janeiro: Associação
|
||||
</li>
|
||||
<li id="Leithold">
|
||||
Leithold, Louis.
|
||||
<i>
|
||||
O cálculo com geometria analítica.
|
||||
</i>
|
||||
Vol 1.
|
||||
<span class="MATH">
|
||||
<img alt="$3^{a}$" src="img/img2210.svg" style="height: 1.69ex; vertical-align: -0.13ex; "/>
|
||||
</span>
|
||||
edição. São Paulo: Editora Harbra, 1994.
|
||||
</li>
|
||||
<li id="Lima">
|
||||
Lima, Elon L.
|
||||
<i>
|
||||
Curso de análise.
|
||||
</i>
|
||||
Vol 1. Projeto Euclides.
|
||||
<span class="MATH">
|
||||
<img alt="$14^{a}$" src="img/img2211.svg" style="height: 1.67ex; vertical-align: -0.11ex; "/>
|
||||
</span>
|
||||
edição. Rio de Janeiro: Associação
|
||||
Instituto Nacional de Matemática Pura e Aplicada, 2012.
|
||||
</li>
|
||||
<li id="Sebah">
|
||||
Sebah, Pascal; Gourdon, Xavier.
|
||||
<i>
|
||||
Collection of series for
|
||||
<span class="MATH">
|
||||
<img alt="$\pi $" src="img/img9.svg" style="height: 1.16ex; vertical-align: -0.10ex; "/>
|
||||
</span>
|
||||
.
|
||||
</i>
|
||||
2004.
|
||||
</li>
|
||||
<li id="Shervatov">
|
||||
Shervatov, V. G.
|
||||
<i>
|
||||
Hyperbolic functions.
|
||||
</i>
|
||||
Tradução (para o inglês) de A. Gordon Foster e Coley Mills, Jr.,
|
||||
</li>
|
||||
<li id="Sebah">
|
||||
Sebah, Pascal; Gourdon, Xavier.
|
||||
<i>
|
||||
Collection of series for
|
||||
<span class="MATH">
|
||||
<img alt="$\pi $" src="img/img9.svg" style="height: 1.16ex; vertical-align: -0.10ex; "/>
|
||||
</span>
|
||||
.
|
||||
</i>
|
||||
2004.
|
||||
</li>
|
||||
<li id="Shervatov">
|
||||
Shervatov, V. G.
|
||||
<i>
|
||||
Hyperbolic functions.
|
||||
</i>
|
||||
Tradução (para o inglês) de A. Gordon Foster e Coley Mills, Jr.,
|
||||
Tópicos em Matemática, Universidade de Chicago, 1963.
|
||||
</li>
|
||||
<li id="Swokowski">
|
||||
Swokowski, Earl William.
|
||||
<i>
|
||||
Cálculo com geometria analítica.
|
||||
</i>
|
||||
Vol 2.
|
||||
<span class="MATH">
|
||||
<img alt="$2^{a}$" src="img/img2209.svg" style="height: 1.66ex; vertical-align: -0.10ex; "/>
|
||||
</span>
|
||||
edição. São Paulo: Makron Books,
|
||||
</li>
|
||||
<li id="Swokowski">
|
||||
Swokowski, Earl William.
|
||||
<i>
|
||||
Cálculo com geometria analítica.
|
||||
</i>
|
||||
Vol 2.
|
||||
<span class="MATH">
|
||||
<img alt="$2^{a}$" src="img/img2209.svg" style="height: 1.66ex; vertical-align: -0.10ex; "/>
|
||||
</span>
|
||||
edição. São Paulo: Makron Books,
|
||||
1994.
|
||||
</li>
|
||||
<li id="Weisstein">
|
||||
Weisstein, Eric.
|
||||
<i>
|
||||
MathWorld.
|
||||
</i>
|
||||
Wolfram Research.
|
||||
<span class="MATH">
|
||||
<img alt="$<$" src="img/img2212.svg" style="height: 1.33ex; vertical-align: -0.14ex; "/>
|
||||
</span>
|
||||
<a href="http://mathworld.wolfram.com">
|
||||
http://mathworld.wolfram.com/
|
||||
</a>
|
||||
PiFormulas
|
||||
<span class="MATH">
|
||||
<img alt="$>$" src="img/img2213.svg" style="height: 1.33ex; vertical-align: -0.14ex; "/>
|
||||
</span>
|
||||
. Acesso em
|
||||
</li>
|
||||
<li id="Weisstein">
|
||||
Weisstein, Eric.
|
||||
<i>
|
||||
MathWorld.
|
||||
</i>
|
||||
Wolfram Research.
|
||||
<span class="MATH">
|
||||
<img alt="$<$" src="img/img2212.svg" style="height: 1.33ex; vertical-align: -0.14ex; "/>
|
||||
</span>
|
||||
<a href="http://mathworld.wolfram.com">
|
||||
http://mathworld.wolfram.com/
|
||||
</a>
|
||||
PiFormulas
|
||||
<span class="MATH">
|
||||
<img alt="$>$" src="img/img2213.svg" style="height: 1.33ex; vertical-align: -0.14ex; "/>
|
||||
</span>
|
||||
. Acesso em
|
||||
08/10/2009.
|
||||
</li>
|
||||
<li id="Zill">
|
||||
Zill, Dennis G., Cullen, Michael R.
|
||||
<i>
|
||||
Equações diferenciais.
|
||||
</i>
|
||||
Vol 1.
|
||||
<span class="MATH">
|
||||
<img alt="$3^{a}$" src="img/img2210.svg" style="height: 1.69ex; vertical-align: -0.13ex; "/>
|
||||
</span>
|
||||
edição. São Paulo: Makron Books,
|
||||
</li>
|
||||
<li id="Zill">
|
||||
Zill, Dennis G., Cullen, Michael R.
|
||||
<i>
|
||||
Equações diferenciais.
|
||||
</i>
|
||||
Vol 1.
|
||||
<span class="MATH">
|
||||
<img alt="$3^{a}$" src="img/img2210.svg" style="height: 1.69ex; vertical-align: -0.13ex; "/>
|
||||
</span>
|
||||
edição. São Paulo: Makron Books,
|
||||
2001.
|
||||
</li>
|
||||
<li id="ZillVC">
|
||||
Zill, Dennis G.; Shanahan, Patrick D.
|
||||
<i>
|
||||
Curso introdutório à análise complexa com aplicações
|
||||
</i>
|
||||
. Rio de Janeiro:
|
||||
</li>
|
||||
<li id="ZillVC">
|
||||
Zill, Dennis G.; Shanahan, Patrick D.
|
||||
<i>
|
||||
Curso introdutório à análise complexa com aplicações
|
||||
</i>
|
||||
. Rio de Janeiro:
|
||||
LTC, 2011.
|
||||
</li>
|
||||
</ol>
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
@ -511,150 +525,6 @@ cookieconsent.run({
|
||||
}
|
||||
}
|
||||
toggleBodyColorPrimary();
|
||||
const disableStylesheet = (stylesheets) => {
|
||||
for (let i=0; i < stylesheets.length; i++) {
|
||||
const stylesheet = stylesheets[i];
|
||||
stylesheet.rel = 'prefetch';
|
||||
}
|
||||
}
|
||||
const enableStylesheet = (stylesheets) => {
|
||||
for (let i=0; i < stylesheets.length; i++) {
|
||||
const stylesheet = stylesheets[i];
|
||||
stylesheet.rel = 'stylesheet';
|
||||
}
|
||||
}
|
||||
const manageTransitions = (selector, allowTransitions) => {
|
||||
const els = window.document.querySelectorAll(selector);
|
||||
for (let i=0; i < els.length; i++) {
|
||||
const el = els[i];
|
||||
if (allowTransitions) {
|
||||
el.classList.remove('notransition');
|
||||
} else {
|
||||
el.classList.add('notransition');
|
||||
}
|
||||
}
|
||||
}
|
||||
const toggleGiscusIfUsed = (isAlternate, darkModeDefault) => {
|
||||
const baseTheme = document.querySelector('#giscus-base-theme')?.value ?? 'light';
|
||||
const alternateTheme = document.querySelector('#giscus-alt-theme')?.value ?? 'dark';
|
||||
let newTheme = '';
|
||||
if(darkModeDefault) {
|
||||
newTheme = isAlternate ? baseTheme : alternateTheme;
|
||||
} else {
|
||||
newTheme = isAlternate ? alternateTheme : baseTheme;
|
||||
}
|
||||
const changeGiscusTheme = () => {
|
||||
// From: https://github.com/giscus/giscus/issues/336
|
||||
const sendMessage = (message) => {
|
||||
const iframe = document.querySelector('iframe.giscus-frame');
|
||||
if (!iframe) return;
|
||||
iframe.contentWindow.postMessage({ giscus: message }, 'https://giscus.app');
|
||||
}
|
||||
sendMessage({
|
||||
setConfig: {
|
||||
theme: newTheme
|
||||
}
|
||||
});
|
||||
}
|
||||
const isGiscussLoaded = window.document.querySelector('iframe.giscus-frame') !== null;
|
||||
if (isGiscussLoaded) {
|
||||
changeGiscusTheme();
|
||||
}
|
||||
}
|
||||
const toggleColorMode = (alternate) => {
|
||||
// Switch the stylesheets
|
||||
const alternateStylesheets = window.document.querySelectorAll('link.quarto-color-scheme.quarto-color-alternate');
|
||||
manageTransitions('#quarto-margin-sidebar .nav-link', false);
|
||||
if (alternate) {
|
||||
enableStylesheet(alternateStylesheets);
|
||||
for (const sheetNode of alternateStylesheets) {
|
||||
if (sheetNode.id === "quarto-bootstrap") {
|
||||
toggleBodyColorMode(sheetNode);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
disableStylesheet(alternateStylesheets);
|
||||
toggleBodyColorPrimary();
|
||||
}
|
||||
manageTransitions('#quarto-margin-sidebar .nav-link', true);
|
||||
// Switch the toggles
|
||||
const toggles = window.document.querySelectorAll('.quarto-color-scheme-toggle');
|
||||
for (let i=0; i < toggles.length; i++) {
|
||||
const toggle = toggles[i];
|
||||
if (toggle) {
|
||||
if (alternate) {
|
||||
toggle.classList.add("alternate");
|
||||
} else {
|
||||
toggle.classList.remove("alternate");
|
||||
}
|
||||
}
|
||||
}
|
||||
// Hack to workaround the fact that safari doesn't
|
||||
// properly recolor the scrollbar when toggling (#1455)
|
||||
if (navigator.userAgent.indexOf('Safari') > 0 && navigator.userAgent.indexOf('Chrome') == -1) {
|
||||
manageTransitions("body", false);
|
||||
window.scrollTo(0, 1);
|
||||
setTimeout(() => {
|
||||
window.scrollTo(0, 0);
|
||||
manageTransitions("body", true);
|
||||
}, 40);
|
||||
}
|
||||
}
|
||||
const isFileUrl = () => {
|
||||
return window.location.protocol === 'file:';
|
||||
}
|
||||
const hasAlternateSentinel = () => {
|
||||
let styleSentinel = getColorSchemeSentinel();
|
||||
if (styleSentinel !== null) {
|
||||
return styleSentinel === "alternate";
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
const setStyleSentinel = (alternate) => {
|
||||
const value = alternate ? "alternate" : "default";
|
||||
if (!isFileUrl()) {
|
||||
window.localStorage.setItem("quarto-color-scheme", value);
|
||||
} else {
|
||||
localAlternateSentinel = value;
|
||||
}
|
||||
}
|
||||
const getColorSchemeSentinel = () => {
|
||||
if (!isFileUrl()) {
|
||||
const storageValue = window.localStorage.getItem("quarto-color-scheme");
|
||||
return storageValue != null ? storageValue : localAlternateSentinel;
|
||||
} else {
|
||||
return localAlternateSentinel;
|
||||
}
|
||||
}
|
||||
const darkModeDefault = false;
|
||||
let localAlternateSentinel = darkModeDefault ? 'alternate' : 'default';
|
||||
// Dark / light mode switch
|
||||
window.quartoToggleColorScheme = () => {
|
||||
// Read the current dark / light value
|
||||
let toAlternate = !hasAlternateSentinel();
|
||||
toggleColorMode(toAlternate);
|
||||
setStyleSentinel(toAlternate);
|
||||
toggleGiscusIfUsed(toAlternate, darkModeDefault);
|
||||
};
|
||||
// Ensure there is a toggle, if there isn't float one in the top right
|
||||
if (window.document.querySelector('.quarto-color-scheme-toggle') === null) {
|
||||
const a = window.document.createElement('a');
|
||||
a.classList.add('top-right');
|
||||
a.classList.add('quarto-color-scheme-toggle');
|
||||
a.href = "";
|
||||
a.onclick = function() { try { window.quartoToggleColorScheme(); } catch {} return false; };
|
||||
const i = window.document.createElement("i");
|
||||
i.classList.add('bi');
|
||||
a.appendChild(i);
|
||||
window.document.body.appendChild(a);
|
||||
}
|
||||
// Switch to dark mode if need be
|
||||
if (hasAlternateSentinel()) {
|
||||
toggleColorMode(true);
|
||||
} else {
|
||||
toggleColorMode(false);
|
||||
}
|
||||
const icon = "";
|
||||
const anchorJS = new window.AnchorJS();
|
||||
anchorJS.options = {
|
||||
|
File diff suppressed because one or more lines are too long
@ -1,189 +0,0 @@
|
||||
/* quarto syntax highlight colors */
|
||||
:root {
|
||||
--quarto-hl-al-color: #f07178;
|
||||
--quarto-hl-an-color: #d4d0ab;
|
||||
--quarto-hl-at-color: #00e0e0;
|
||||
--quarto-hl-bn-color: #d4d0ab;
|
||||
--quarto-hl-bu-color: #abe338;
|
||||
--quarto-hl-ch-color: #abe338;
|
||||
--quarto-hl-co-color: #f8f8f2;
|
||||
--quarto-hl-cv-color: #ffd700;
|
||||
--quarto-hl-cn-color: #ffd700;
|
||||
--quarto-hl-cf-color: #ffa07a;
|
||||
--quarto-hl-dt-color: #ffa07a;
|
||||
--quarto-hl-dv-color: #d4d0ab;
|
||||
--quarto-hl-do-color: #f8f8f2;
|
||||
--quarto-hl-er-color: #f07178;
|
||||
--quarto-hl-ex-color: #00e0e0;
|
||||
--quarto-hl-fl-color: #d4d0ab;
|
||||
--quarto-hl-fu-color: #ffa07a;
|
||||
--quarto-hl-im-color: #abe338;
|
||||
--quarto-hl-in-color: #d4d0ab;
|
||||
--quarto-hl-kw-color: #ffa07a;
|
||||
--quarto-hl-op-color: #ffa07a;
|
||||
--quarto-hl-ot-color: #00e0e0;
|
||||
--quarto-hl-pp-color: #dcc6e0;
|
||||
--quarto-hl-re-color: #00e0e0;
|
||||
--quarto-hl-sc-color: #abe338;
|
||||
--quarto-hl-ss-color: #abe338;
|
||||
--quarto-hl-st-color: #abe338;
|
||||
--quarto-hl-va-color: #00e0e0;
|
||||
--quarto-hl-vs-color: #abe338;
|
||||
--quarto-hl-wa-color: #dcc6e0;
|
||||
}
|
||||
|
||||
/* other quarto variables */
|
||||
:root {
|
||||
--quarto-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
}
|
||||
|
||||
code span.al {
|
||||
background-color: #2a0f15;
|
||||
font-weight: bold;
|
||||
color: #f07178;
|
||||
}
|
||||
|
||||
code span.an {
|
||||
color: #d4d0ab;
|
||||
}
|
||||
|
||||
code span.at {
|
||||
color: #00e0e0;
|
||||
}
|
||||
|
||||
code span.bn {
|
||||
color: #d4d0ab;
|
||||
}
|
||||
|
||||
code span.bu {
|
||||
color: #abe338;
|
||||
}
|
||||
|
||||
code span.ch {
|
||||
color: #abe338;
|
||||
}
|
||||
|
||||
code span.co {
|
||||
font-style: italic;
|
||||
color: #f8f8f2;
|
||||
}
|
||||
|
||||
code span.cv {
|
||||
color: #ffd700;
|
||||
}
|
||||
|
||||
code span.cn {
|
||||
color: #ffd700;
|
||||
}
|
||||
|
||||
code span.cf {
|
||||
font-weight: bold;
|
||||
color: #ffa07a;
|
||||
}
|
||||
|
||||
code span.dt {
|
||||
color: #ffa07a;
|
||||
}
|
||||
|
||||
code span.dv {
|
||||
color: #d4d0ab;
|
||||
}
|
||||
|
||||
code span.do {
|
||||
color: #f8f8f2;
|
||||
}
|
||||
|
||||
code span.er {
|
||||
color: #f07178;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
code span.ex {
|
||||
font-weight: bold;
|
||||
color: #00e0e0;
|
||||
}
|
||||
|
||||
code span.fl {
|
||||
color: #d4d0ab;
|
||||
}
|
||||
|
||||
code span.fu {
|
||||
color: #ffa07a;
|
||||
}
|
||||
|
||||
code span.im {
|
||||
color: #abe338;
|
||||
}
|
||||
|
||||
code span.in {
|
||||
color: #d4d0ab;
|
||||
}
|
||||
|
||||
code span.kw {
|
||||
font-weight: bold;
|
||||
color: #ffa07a;
|
||||
}
|
||||
|
||||
pre > code.sourceCode > span {
|
||||
color: #f8f8f2;
|
||||
}
|
||||
|
||||
code span {
|
||||
color: #f8f8f2;
|
||||
}
|
||||
|
||||
code.sourceCode > span {
|
||||
color: #f8f8f2;
|
||||
}
|
||||
|
||||
div.sourceCode,
|
||||
div.sourceCode pre.sourceCode {
|
||||
color: #f8f8f2;
|
||||
}
|
||||
|
||||
code span.op {
|
||||
color: #ffa07a;
|
||||
}
|
||||
|
||||
code span.ot {
|
||||
color: #00e0e0;
|
||||
}
|
||||
|
||||
code span.pp {
|
||||
color: #dcc6e0;
|
||||
}
|
||||
|
||||
code span.re {
|
||||
background-color: #f8f8f2;
|
||||
color: #00e0e0;
|
||||
}
|
||||
|
||||
code span.sc {
|
||||
color: #abe338;
|
||||
}
|
||||
|
||||
code span.ss {
|
||||
color: #abe338;
|
||||
}
|
||||
|
||||
code span.st {
|
||||
color: #abe338;
|
||||
}
|
||||
|
||||
code span.va {
|
||||
color: #00e0e0;
|
||||
}
|
||||
|
||||
code span.vs {
|
||||
color: #abe338;
|
||||
}
|
||||
|
||||
code span.wa {
|
||||
color: #dcc6e0;
|
||||
}
|
||||
|
||||
.prevent-inlining {
|
||||
content: "</";
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=72bb05760472c1bb0bbb1d76e21bc2a0.css.map */
|
Loading…
x
Reference in New Issue
Block a user