rb_latex 0.1.3 → 0.1.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 68e78dee39057843926677845afc84a77626f587aeb883c9f923d651b2e21bb6
4
- data.tar.gz: d2b6bff0548a4d712617bc64d650b8cba60a85f8dabdfc67084dcfe9ae2e6099
3
+ metadata.gz: 5c9340241294fb887b1302e3e807067f3747ffdc42e068c20b561415fd7c7f55
4
+ data.tar.gz: a4d435a081863e558f0af4c462aa11e056412a6546bc5c86118b3af9f6970fda
5
5
  SHA512:
6
- metadata.gz: c2ea551436822a1b702300eed6765711ed06458bcf7dccf81b0d6d7f5811a2996b0a697e214670184dc7c2e72a9b9c4d9be455d4dd940a94a8fb5f8a515ea202
7
- data.tar.gz: a72625bb40c802e325f0841ab5600f752fb76c268cb455741348d88e91c7e35dc4a3e1cff2a56b41f5ba35e1bc9c02b53341c13050fe1205dab350131f1fd4a8
6
+ metadata.gz: '090761fdba380cb25eb210e0464bdd81b5a7f0d9f084e086c70b82388c6bb99bd07d9a1c83112ccd19050a16568ee91be3771d8861f73cd18716206b784483da'
7
+ data.tar.gz: 06d79fd6fa249e19204527e5304531182996c6f287b3f3a6adc211b4f83faae2b2d181fb2a6c14b31762e3fe7ca077ab8486466ac95ea5aac1f7b1eb607466a6
@@ -32,7 +32,7 @@ module RbLatex
32
32
  @meta_info = RbLatex::MetaInfo.new
33
33
  @latex_cmd = "uplatex"
34
34
  @dvipdfmx_cmd = "dvipdfmx"
35
- @document_class = ["jlreq", "b5paper"]
35
+ @document_class = ["jlreq", "book,b5paper,openany"]
36
36
  end
37
37
 
38
38
  def default_config
@@ -58,6 +58,7 @@ module RbLatex
58
58
  "\\newcommand{\\rblatexTitle}{#{escape_latex(title)}}\n"+
59
59
  "\\newcommand{\\rblatexAuthor}{#{escape_latex(author)}}\n"+
60
60
  "\\newcommand{\\rblatexPubdate}{#{escape_latex(date_to_s)}}\n"+
61
+ "\\newcommand{\\rblatexPublisher}{#{escape_latex(publisher)}}\n"+
61
62
  "\\newcommand{\\rblatexPageDirection}{#{escape_latex(page_progression_direction)}}\n"
62
63
  end
63
64
 
@@ -1,3 +1,3 @@
1
1
  module RbLatex
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
@@ -19,7 +19,9 @@
19
19
 
20
20
  \VerbatimFootnotes
21
21
 
22
- \hypersetup{colorlinks=true,urlcolor=blue}
22
+ \hypersetup{colorlinks=false,urlcolor=blue}
23
+
24
+ \setlength{\parindent}{0pt}
23
25
 
24
26
  \begin{document}
25
27
  <% @item_list.filenames.each_with_index do |filename, idx| %>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rb_latex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - takahashim