This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% Modified version of elsarticle-num-names.bst for alphabetical sorting by Felix Last <[email protected]> | |
%% Modifications marked with %%MODFL2018 | |
%% | |
%% Copyright 2007, 2008, 2009 Elsevier Ltd | |
%% | |
%% This file is part of the 'Elsarticle Bundle'. | |
%% --------------------------------------------- | |
%% | |
%% It may be distributed under the conditions of the LaTeX Project Public | |
%% License, either version 1.2 of this license or (at your option) any |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% template to submit thesis to IMS @ Universidade de Lisboa | |
% copy fragments as needed to create latex pdf | |
% fill in Word template (e.g. Templatethesis_MAA_EN.doc from moodle) | |
% export pages up to, but excluding the table of contents as pdf | |
% merge the two pdfs (how? google 'how to merge pdfs' :) ) | |
% using article document class is important for some modifications below to get the desired outcome | |
\documentclass[a4paper]{article} | |
% set page margins |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: gpl-3.0 | |
height: 2000 | |
border: no |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var dot = document.createElement('div'); | |
dot.className = 'dot'; | |
dot.style.top = graph.y(d.value.y0 + d.value.y) + 'px'; | |
dot.style.borderColor = d.series.color; | |
this.element.appendChild(dot); | |
dot.className = 'dot active'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var legend = document.querySelector('#legend'); | |
$('<span></span>').addClass('value').appendTo('.label, #legend'); | |
value_space = $('.value'); | |
console.log(value_space); | |
var Hover = Rickshaw.Class.create(Rickshaw.Graph.HoverDetail, { | |
render: function(args) { | |
args.detail.sort(function(a, b) { return a.order - b.order }).forEach( function(d) { | |
var value = document.createElement('div'); | |
value.className = 'value '; |