To change the backgroundcolor, adjust the scalebgcolor
variable to use the desired color.
Add the following code to your preamble:
\usepackage{tikz}
\usepackage[usenames, dvipsnames]{color}
\definecolor{scalebgcolor}{rgb}{0.08,0.52,0.80}
#!/usr/bin/env python3 | |
import zipfile | |
import sys | |
import re | |
import xml.etree.ElementTree as ET | |
namespaces = { | |
'a': 'http://schemas.openxmlformats.org/drawingml/2006/main', | |
'r': 'http://schemas.openxmlformats.org/officeDocument/2006/relationships', |
var incognito = function(require, module, exports) { | |
"use strict"; | |
function isWebkitRequestFileSystem() { | |
return !!window.webkitRequestFileSystem | |
} | |
function isFirefoxIndexedDB() { | |
return !!window.indexedDB && /Firefox/.test(window.navigator.userAgent) | |
} | |
function isIE10PlusOrEdge() { | |
if (document.documentMode) { |
These rules are adopted from the AngularJS commit conventions.
{ | |
"@context": { | |
"_links": "http://stateless.co/hal_specification.html#links", | |
"title": "http://schema.org/name", | |
"description": "http://schema.org/description", | |
"publisher": "#http://schema.org/publisher > http://schema.org/Organization > http://schema.org/name", | |
"firstpage": "http://schema.org/pageStart", | |
"doi": "#http://schema.org/sameAs (URL)", | |
"volume": "#http://schema.org/isPartOf > http://schema.org/PublicationVolume > http://schema.org/volumeNumber", | |
"volume": "#http://schema.org/isPartOf > http://schema.org/PublicationIssue > http://schema.org/issueNumber", |