duplicates = multiple editions
A Classical Introduction to Modern Number Theory,Kenneth IrelandMichael Rosen
A Classical Introduction to Modern Number Theory,Kenneth IrelandMichael Rosen
| { | |
| "name": "ds000031 example", | |
| "description": "An example of connectivity analysis using ds000031", | |
| "input": | |
| { | |
| "task": "rest" | |
| }, | |
| "blocks": [ | |
| { | |
| "level": "run", |
| \documentclass{article} | |
| \usepackage{booktabs} | |
| \usepackage{geometry} | |
| \usepackage{tabularx} | |
| \geometry{lmargin=72pt,tmargin=72pt,textwidth=350pt,marginparwidth=144pt} | |
| \usepackage{tufte-sidenotes} | |
| \begin{document} | |
| Here is demo of the \verb#tufte-sidenotes# style. |
| import numpy as np | |
| # Author : Alexandre Gramfort | |
| # license : BSD | |
| def pav(y): | |
| """ | |
| PAV uses the pair adjacent violators method to produce a monotonic | |
| smoothing of y |
| var TreeId = "your_tree_id_here"; | |
| var Filename = "output_filename"; | |
| var http =require('http'); | |
| var fs = require('fs'); | |
| var request = require('request'); | |
| var exec = require('child_process').exec; | |
| var header = fs.readFileSync('parts/header.tex', 'utf8'); | |
| var footer = fs.readFileSync('parts/footer.tex', 'utf8'); | |
| var replacements = { '\\\\begin\\{center\\}\\\\rule\\{3in\\}\\{0\\.4pt\}\\\\end\\{center\\}': '\\hr', '\\\\section\{([^\}]*)\}\\\\label\{([^\}]*)\}\\n\\n([^\.]*[\\.\\\'\\\'\\?\\!]*)\\s': '\\finishchapter\n\\section{$1}\\label{$2}\n\\setupchapter\n\\newthought{$3} ' }; |
| --- | |
| $if(date)$ | |
| Date: $date$ | |
| $endif$ | |
| $if(title)$ | |
| Title: $title$ | |
| $endif$ | |
| --- | |
| <div> |
| try: | |
| from urllib.parse import quote # Py 3 | |
| except ImportError: | |
| from urllib2 import quote # Py 2 | |
| import os | |
| import sys | |
| BLOG_DIR = os.environ['BLOG_DIR'] | |
| # BLOG_DIR = '/Users/cscorley/git/cscorley.github.io/' |
| PANDOC = pandoc | |
| %.html: %.md style.css Makefile | |
| $(PANDOC) -c style.css -s -f markdown -t html --standalone -o $@ $< | |
| %.odt: %.md Makefile | |
| $(PANDOC) --standalone -f markdown -t odt -o $@ $< | |
| %.epub: %.md Makefile | |
| $(PANDOC) -o $@ $< |
| TEX = pdflatex -interaction nonstopmode | |
| BIB = bibtex | |
| GS = gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite | |
| COVER = cover | |
| PAPER = paper_main | |
| SUPP = paper_supp | |
| BIBFILE = temp.bib | |
| BUNDLE = paper_bundle.pdf |