latex_document 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/bin/latex_document +74 -0
- data/latex_document.gemspec +25 -0
- data/lib/latex_document/version.rb +3 -0
- data/lib/latex_document.rb +5 -0
- data/templates/Makefile.tt +22 -0
- data/templates/document.tex.tt +19 -0
- data/templates/mydefault.sty.tt +79 -0
- data/templates/references.bib.tt +0 -0
- metadata +100 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 2848eabeb43d787e366107bc4b6fc5b22a250cdd
|
4
|
+
data.tar.gz: 568679bdaf1ec16609f50f18f7a377a3fdd0eef9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 32e5d6ed1192500eb3ab06e3840d308f53e29749eb3d0b9d609e4b3a90a4ee8af0b8600d03428977dbbf1cee7861c74f8127c9d965abe20d685988e6123e2628
|
7
|
+
data.tar.gz: 71e3f00283f666e4b1b8ed22251846ab4317243a4c80c289f8de3b629d1d6145acd0bd7cc9290967f1890048e8c44c67891bc5e9b454dcfdcb445637b2417010
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Dustin Morrill
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# LatexDocument
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'latex_document'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install latex_document
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/bin/latex_document
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require "rubygems"
|
3
|
+
require 'thor'
|
4
|
+
require 'date'
|
5
|
+
|
6
|
+
module LatexDocument
|
7
|
+
class New < Thor::Group
|
8
|
+
include Thor::Actions
|
9
|
+
|
10
|
+
argument :name, :desc => 'Name of the new project.'
|
11
|
+
|
12
|
+
def self.source_root
|
13
|
+
File.expand_path('../../', __FILE__)
|
14
|
+
end
|
15
|
+
|
16
|
+
def gen_root
|
17
|
+
empty_directory name
|
18
|
+
end
|
19
|
+
|
20
|
+
def fill_root
|
21
|
+
empty_directory file_path('src')
|
22
|
+
empty_directory file_path('include')
|
23
|
+
empty_directory file_path('diagrams')
|
24
|
+
create_file_from_template "Makefile"
|
25
|
+
end
|
26
|
+
|
27
|
+
def src
|
28
|
+
template("templates/document.tex.tt", file_path("src/#{name}.tex"))
|
29
|
+
template("templates/references.bib.tt", file_path("src/references.bib"))
|
30
|
+
end
|
31
|
+
|
32
|
+
def include
|
33
|
+
template("templates/mydefault.sty.tt", file_path("include/mydefault.sty"))
|
34
|
+
end
|
35
|
+
|
36
|
+
private
|
37
|
+
|
38
|
+
def title
|
39
|
+
title_string = name.dup
|
40
|
+
title_string[0] = name[0].upcase
|
41
|
+
title_string.gsub(/(\w)([A-Z])/) { "#{$1} #{$2}" } # Camel case
|
42
|
+
title_string.gsub(/[_\.\s](.)/) { " #{$1.upcase}" } # Snake case
|
43
|
+
end
|
44
|
+
|
45
|
+
def date
|
46
|
+
Date.today.to_s
|
47
|
+
end
|
48
|
+
|
49
|
+
def file_path(file_name)
|
50
|
+
File.join name, file_name
|
51
|
+
end
|
52
|
+
|
53
|
+
def create_file_from_template(file_name)
|
54
|
+
template(
|
55
|
+
"templates/#{file_name}.tt",
|
56
|
+
file_path(file_name)
|
57
|
+
)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
class LatexDocument < Thor
|
62
|
+
map 'n' => :new
|
63
|
+
|
64
|
+
register(
|
65
|
+
New,
|
66
|
+
'new',
|
67
|
+
'new NAME',
|
68
|
+
"Creates a new latex document NAME"
|
69
|
+
)
|
70
|
+
tasks["new"].options = New.class_options
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
LatexDocument::LatexDocument.start(ARGV)
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'latex_document/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "latex_document"
|
8
|
+
spec.version = LatexDocument::VERSION
|
9
|
+
spec.authors = ["Dustin Morrill"]
|
10
|
+
spec.email = ["morrill@ualberta.ca"]
|
11
|
+
spec.description = %q{Latex document generator}
|
12
|
+
spec.summary = %q{Latex document generator}
|
13
|
+
spec.homepage = "https://github.com/dmorrill10/latex_document"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency 'thor', '~> 0.18.1'
|
22
|
+
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
24
|
+
spec.add_development_dependency "rake"
|
25
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
|
2
|
+
default: pdf
|
3
|
+
|
4
|
+
TARGET_BASE = <%= name %>
|
5
|
+
DVI_COMMAND := cd build && latex $(TARGET_BASE)
|
6
|
+
|
7
|
+
build:
|
8
|
+
cp -r src build
|
9
|
+
|
10
|
+
dvi: clean src/$(TARGET_BASE).tex build
|
11
|
+
$(DVI_COMMAND)
|
12
|
+
cd build && bibtex $(TARGET_BASE)
|
13
|
+
$(DVI_COMMAND)
|
14
|
+
$(DVI_COMMAND) # Odd latex thing necessary for references
|
15
|
+
mv build/$(TARGET_BASE).dvi ./
|
16
|
+
|
17
|
+
pdf: dvi
|
18
|
+
dvipdf $(TARGET_BASE).dvi
|
19
|
+
|
20
|
+
clean:
|
21
|
+
-rm -rf build
|
22
|
+
-rm *.pdf *.dvi
|
@@ -0,0 +1,19 @@
|
|
1
|
+
\documentclass[11pt]{article}
|
2
|
+
\usepackage{../include/mydefault}
|
3
|
+
|
4
|
+
\addbibresource{references.bib}
|
5
|
+
|
6
|
+
% Document metadata
|
7
|
+
\title{<%= title %>}
|
8
|
+
\author{@todo Author}
|
9
|
+
\date{<%= date %>}
|
10
|
+
|
11
|
+
\begin{document}
|
12
|
+
\sloppy
|
13
|
+
\maketitle
|
14
|
+
|
15
|
+
\printbibliography
|
16
|
+
|
17
|
+
\appendix
|
18
|
+
|
19
|
+
\end{document}
|
@@ -0,0 +1,79 @@
|
|
1
|
+
%packages
|
2
|
+
% Deprecation warnings
|
3
|
+
\RequirePackage[l2tabu, orthodox]{nag}
|
4
|
+
|
5
|
+
% Scientific units
|
6
|
+
\usepackage{siunitx}
|
7
|
+
|
8
|
+
% Math
|
9
|
+
\usepackage{amsmath}
|
10
|
+
|
11
|
+
% Page geometry and margins
|
12
|
+
\usepackage[margin=1.00in]{geometry}
|
13
|
+
\linespread{1.25}
|
14
|
+
|
15
|
+
% Images
|
16
|
+
\usepackage{graphicx}
|
17
|
+
\usepackage{caption}
|
18
|
+
\usepackage{subcaption}
|
19
|
+
|
20
|
+
% Tables with out vertical separators
|
21
|
+
\usepackage{booktabs}
|
22
|
+
|
23
|
+
% ?
|
24
|
+
\usepackage{amssymb}
|
25
|
+
\usepackage{amsthm}
|
26
|
+
|
27
|
+
\setlength{\parskip}{6pt plus 2pt minus 1pt}
|
28
|
+
\setlength{\emergencystretch}{3em} % prevent overfull lines
|
29
|
+
|
30
|
+
\usepackage[stable]{footmisc}
|
31
|
+
\parfillskip 0pt plus 0.75\textwidth
|
32
|
+
|
33
|
+
% Bibliography
|
34
|
+
\usepackage[english]{babel}% Recommended
|
35
|
+
\usepackage{csquotes}% Recommended
|
36
|
+
\usepackage{biblatex}
|
37
|
+
|
38
|
+
% Typesetting enhancements
|
39
|
+
\usepackage{microtype}
|
40
|
+
|
41
|
+
% Links
|
42
|
+
\usepackage{xcolor}
|
43
|
+
\definecolor{dark-red}{rgb}{0.4,0.15,0.15}
|
44
|
+
\definecolor{dark-blue}{rgb}{0.15,0.15,0.4}
|
45
|
+
\definecolor{medium-blue}{rgb}{0,0,0.5}
|
46
|
+
\PassOptionsToPackage{hyphens}{url}\usepackage[pdfborder={0 0 0}]{hyperref}
|
47
|
+
\hypersetup{
|
48
|
+
colorlinks, linkcolor={dark-red},
|
49
|
+
citecolor={dark-blue}, urlcolor={medium-blue}
|
50
|
+
}
|
51
|
+
|
52
|
+
% Cross-references
|
53
|
+
\usepackage{cleveref}
|
54
|
+
|
55
|
+
% Code listings
|
56
|
+
\usepackage{listings}
|
57
|
+
|
58
|
+
% layout
|
59
|
+
\pdfpagewidth 8.5in
|
60
|
+
\pdfpageheight 11in
|
61
|
+
\topmargin 0in
|
62
|
+
\headheight 0in
|
63
|
+
\headsep 0in
|
64
|
+
\textheight 9in
|
65
|
+
\textwidth 6.5in
|
66
|
+
\oddsidemargin 0in
|
67
|
+
\evensidemargin 0in
|
68
|
+
|
69
|
+
% Header
|
70
|
+
%\usepackage{fancyhdr}
|
71
|
+
%\pagestyle{fancy}
|
72
|
+
|
73
|
+
% Verbatim text
|
74
|
+
\usepackage{verbatim}
|
75
|
+
|
76
|
+
% Notes and todos
|
77
|
+
\usepackage{todonotes}
|
78
|
+
|
79
|
+
\usepackage{appendix}
|
File without changes
|
metadata
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: latex_document
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Dustin Morrill
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-12-28 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: thor
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.18.1
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.18.1
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.3'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.3'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: Latex document generator
|
56
|
+
email:
|
57
|
+
- morrill@ualberta.ca
|
58
|
+
executables:
|
59
|
+
- latex_document
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- Gemfile
|
64
|
+
- LICENSE.txt
|
65
|
+
- README.md
|
66
|
+
- Rakefile
|
67
|
+
- bin/latex_document
|
68
|
+
- latex_document.gemspec
|
69
|
+
- lib/latex_document.rb
|
70
|
+
- lib/latex_document/version.rb
|
71
|
+
- templates/Makefile.tt
|
72
|
+
- templates/document.tex.tt
|
73
|
+
- templates/mydefault.sty.tt
|
74
|
+
- templates/references.bib.tt
|
75
|
+
homepage: https://github.com/dmorrill10/latex_document
|
76
|
+
licenses:
|
77
|
+
- MIT
|
78
|
+
metadata: {}
|
79
|
+
post_install_message:
|
80
|
+
rdoc_options: []
|
81
|
+
require_paths:
|
82
|
+
- lib
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - '>='
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '0'
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - '>='
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
requirements: []
|
94
|
+
rubyforge_project:
|
95
|
+
rubygems_version: 2.0.3
|
96
|
+
signing_key:
|
97
|
+
specification_version: 4
|
98
|
+
summary: Latex document generator
|
99
|
+
test_files: []
|
100
|
+
has_rdoc:
|