glyph 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. data/README.textile +80 -0
  2. data/Rakefile +51 -0
  3. data/VERSION +1 -0
  4. data/bin/glyph +7 -0
  5. data/book/config.yml +5 -0
  6. data/book/document.glyph +55 -0
  7. data/book/images/glyph.png +0 -0
  8. data/book/images/glyph.svg +351 -0
  9. data/book/lib/macros/reference.rb +98 -0
  10. data/book/output/html/glyph.html +1809 -0
  11. data/book/output/html/images/glyph.png +0 -0
  12. data/book/output/html/images/glyph.svg +351 -0
  13. data/book/output/pdf/glyph.pdf +4277 -0
  14. data/book/snippets.yml +13 -0
  15. data/book/styles/css3.css +220 -0
  16. data/book/styles/default.css +190 -0
  17. data/book/text/authoring.textile +351 -0
  18. data/book/text/extending.textile +148 -0
  19. data/book/text/getting_started.textile +152 -0
  20. data/book/text/introduction.textile +88 -0
  21. data/book/text/ref_commands.textile +74 -0
  22. data/book/text/ref_config.textile +0 -0
  23. data/book/text/ref_macros.textile +256 -0
  24. data/book/text/troubleshooting.textile +118 -0
  25. data/config.yml +63 -0
  26. data/document.glyph +29 -0
  27. data/glyph.gemspec +138 -0
  28. data/lib/glyph.rb +128 -0
  29. data/lib/glyph/commands.rb +124 -0
  30. data/lib/glyph/config.rb +152 -0
  31. data/lib/glyph/document.rb +145 -0
  32. data/lib/glyph/glyph_language.rb +530 -0
  33. data/lib/glyph/glyph_language.treetop +27 -0
  34. data/lib/glyph/interpreter.rb +84 -0
  35. data/lib/glyph/macro.rb +69 -0
  36. data/lib/glyph/node.rb +126 -0
  37. data/lib/glyph/system_extensions.rb +77 -0
  38. data/macros/common.rb +66 -0
  39. data/macros/filters.rb +69 -0
  40. data/macros/html/block.rb +119 -0
  41. data/macros/html/inline.rb +43 -0
  42. data/macros/html/structure.rb +138 -0
  43. data/spec/files/container.textile +5 -0
  44. data/spec/files/document.glyph +2 -0
  45. data/spec/files/document_with_toc.glyph +3 -0
  46. data/spec/files/included.textile +4 -0
  47. data/spec/files/ligature.jpg +449 -0
  48. data/spec/files/markdown.markdown +8 -0
  49. data/spec/files/test.sass +2 -0
  50. data/spec/lib/commands_spec.rb +83 -0
  51. data/spec/lib/config_spec.rb +79 -0
  52. data/spec/lib/document_spec.rb +100 -0
  53. data/spec/lib/glyph_spec.rb +76 -0
  54. data/spec/lib/interpreter_spec.rb +90 -0
  55. data/spec/lib/macro_spec.rb +60 -0
  56. data/spec/lib/node_spec.rb +76 -0
  57. data/spec/macros/filters_spec.rb +42 -0
  58. data/spec/macros/macros_spec.rb +159 -0
  59. data/spec/spec_helper.rb +92 -0
  60. data/spec/tasks/generate_spec.rb +31 -0
  61. data/spec/tasks/load_spec.rb +37 -0
  62. data/spec/tasks/project_spec.rb +41 -0
  63. data/styles/css3.css +220 -0
  64. data/styles/default.css +190 -0
  65. data/tasks/generate.rake +57 -0
  66. data/tasks/load.rake +55 -0
  67. data/tasks/project.rake +33 -0
  68. metadata +192 -0
data/macros/filters.rb ADDED
@@ -0,0 +1,69 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ macro :textile do
4
+ rc = nil
5
+ begin
6
+ require 'RedCloth'
7
+ rc = RedCloth.new @value, Glyph::CONFIG.get("filters.redcloth.restrictions")
8
+ rescue Exception
9
+ macro_error "RedCloth gem not installed. Please run: gem insall RedCloth"
10
+ end
11
+ target = cfg "filters.target"
12
+ case target.to_sym
13
+ when :html
14
+ rc.to_html.gsub /<p><\/p>/, ''
15
+ when :latex
16
+ rc.to_latex
17
+ else
18
+ macro_error "RedCloth does not support target '#{target}'"
19
+ end
20
+ end
21
+
22
+ macro :markdown do
23
+ md = nil
24
+ markdown_converter = cfg "filters.markdown_converter"
25
+ if !markdown_converter then
26
+ begin
27
+ require 'bluecloth'
28
+ markdown_converter = :BlueCloth
29
+ rescue LoadError
30
+ begin
31
+ require 'rdiscount'
32
+ markdown_converter = :RDiscount
33
+ rescue LoadError
34
+ begin
35
+ require 'maruku'
36
+ markdown_converter = :Maruku
37
+ rescue LoadError
38
+ begin
39
+ require 'kramdown'
40
+ markdown_converter = :Kramdown
41
+ rescue LoadError
42
+ macro_error "No MarkDown converter installed. Please run: gem insall bluecloth"
43
+ end
44
+ end
45
+ end
46
+ end
47
+ Glyph.config_override "filters.markdown_converter", markdown_converter
48
+ end
49
+ case markdown_converter
50
+ when :BlueCloth
51
+ md = BlueCloth.new @value
52
+ when :RDiscount
53
+ md = RDiscount.new @value
54
+ when :Maruku
55
+ md = Maruku.new @value
56
+ when :Kramdown
57
+ md = Kramdown::Document.new @value
58
+ else
59
+ macro_error "No MarkDown converter installed. Please run: gem insall bluecloth"
60
+ end
61
+ target = cfg "filters.target"
62
+ if target.to_sym == :html then
63
+ md.to_html
64
+ else
65
+ macro_error "#{markdown_converter} does not support target '#{target}'"
66
+ end
67
+ end
68
+
69
+ macro_alias :md => :markdown
@@ -0,0 +1,119 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ macro :note do
4
+ %{<div class="#{@name}"><span class="note-title">#{@name.to_s.capitalize}</span>#{@value}
5
+
6
+ </div>}
7
+ end
8
+
9
+ macro :box do
10
+ %{<div class="box"><span class="box-title">#{@params[0]}</span>
11
+ #{@params[1]}
12
+
13
+ </div>}
14
+ end
15
+
16
+ macro :code do
17
+ %{<div class="code"><pre><code>
18
+ #{@value.gsub('>', '&gt;').gsub('<', '&lt;')}
19
+ </code></pre></div>}
20
+ end
21
+
22
+ macro :title do
23
+ %{
24
+ <h1>
25
+ #{cfg("document.title")}
26
+ </h1>
27
+ }
28
+ end
29
+
30
+ macro :img do
31
+ image = @params[0]
32
+ width = @params[1]
33
+ w = (width) ? "width=\"#{width}\"" : ''
34
+ height = @params[2]
35
+ h = (height) ? "height=\"#{height}\"" : ''
36
+ if (Glyph::PROJECT/"images/#{image}").exist? then
37
+ %{
38
+ <img src="images/#{image}" #{w} #{h} alt="-"/>
39
+ }
40
+ else
41
+ warning "Image '#{image}' not found"
42
+ ""
43
+ end
44
+ end
45
+
46
+ macro :fig do
47
+ image = @params[0]
48
+ caption = @params[1]
49
+ caption ||= nil
50
+ caption = %{<div class="caption">#{caption}</div>} if caption
51
+ if (Glyph::PROJECT/"images/#{image}").exist? then
52
+ %{
53
+ <div class="figure">
54
+ <img src="images/#{image}" alt="-"/>
55
+ #{caption}
56
+ </div>
57
+ }
58
+ else
59
+ warning "Figure '#{image}' not found"
60
+ ""
61
+ end
62
+ end
63
+
64
+
65
+ macro :subtitle do
66
+ %{
67
+ <h2>
68
+ #{cfg("document.subtitle")}
69
+ </h2>
70
+ }
71
+ end
72
+
73
+ macro :author do
74
+ %{
75
+ <div class="author">
76
+ by <em>#{cfg("document.author")}</em>
77
+ </div>
78
+ }
79
+ end
80
+
81
+ macro :pubdate do
82
+ %{
83
+ <div class="pubdate">
84
+ #{Time.now.strftime("%B %Y")}
85
+ </div>
86
+ }
87
+ end
88
+
89
+ macro :table do
90
+ %{
91
+ <table>#{@value}
92
+ </table>
93
+ }
94
+ end
95
+
96
+ macro :tr do
97
+ %{
98
+ <tr>#{@value}
99
+ </tr>
100
+ }
101
+ end
102
+
103
+ macro :td do
104
+ %{
105
+ <td>#{@value}
106
+ </td>
107
+ }
108
+ end
109
+
110
+ macro :th do
111
+ %{
112
+ <th>#{@value}
113
+ </th>
114
+ }
115
+ end
116
+
117
+ macro_alias :important => :note
118
+ macro_alias :tip => :note
119
+ macro_alias :caution => :note
@@ -0,0 +1,43 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ macro :anchor do
4
+ ident, title = @params
5
+ macro_error "Bookmark '#{ident}' already exists" if bookmark? ident
6
+ bookmark :id => ident, :title => title
7
+ %{<a id="#{ident}">#{title}</a>}
8
+ end
9
+
10
+ macro :codeph do
11
+ %{<code>#@value</code>}
12
+ end
13
+
14
+ macro :link do
15
+ href, title = @params
16
+ if href.match /^#/ then
17
+ anchor = href.gsub(/^#/, '').to_sym
18
+ bmk = bookmark? anchor
19
+ if bmk then
20
+ title ||= bmk[:title]
21
+ else
22
+ plac = placeholder do |document|
23
+ macro_error "Bookmark '#{anchor}' does not exist" unless document.bookmarks[anchor]
24
+ document.bookmarks[anchor][:title]
25
+ end
26
+ title ||= plac
27
+ end
28
+ end
29
+ title ||= href
30
+ %{<a href="#{href}">#{title}</a>}
31
+ end
32
+
33
+ macro :fmi do
34
+ topic, href = @params
35
+ link = placeholder do |document|
36
+ interpret "link[#{href}]"
37
+ end
38
+ %{<span class="fmi">for more information on #{topic}, see #{link}</span>}
39
+ end
40
+
41
+ macro_alias :bookmark => :anchor
42
+ macro_alias '#' => :anchor
43
+ macro_alias '=>' => :link
@@ -0,0 +1,138 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ macro :div do
4
+ %{<div class="#{@name}">
5
+
6
+ #{@value}
7
+
8
+ </div>}
9
+ end
10
+
11
+ macro :header do
12
+ title = @params[0]
13
+ level = 1
14
+ @node.ascend do |n|
15
+ if cfg("structure.headers").include? n[:macro] then
16
+ level+=1
17
+ end
18
+ end
19
+ h_id = @params[1]
20
+ h_id ||= "h_#{@node[:document].headers.length+1}".to_sym
21
+ header :title => title, :level => level, :id => h_id
22
+ @node[:header] = h_id
23
+ macro_error "Bookmark '#{h_id}' already exists" if bookmark? h_id
24
+ bookmark :id => h_id, :title => title
25
+ %{
26
+ <h#{level} id="#{h_id}">#{title}</h#{level}>
27
+ }
28
+ end
29
+
30
+ macro :document do
31
+ %{<?xml version="1.0" encoding="utf-8"?>
32
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
33
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
34
+ #{@value}
35
+ </html>}
36
+ end
37
+
38
+ macro :body do
39
+ %{
40
+ <body>
41
+ #{@value}
42
+ </body>
43
+ }
44
+ end
45
+
46
+ macro :head do
47
+ %{
48
+ <head>
49
+ <title>#{Glyph::CONFIG.get("document.title")}</title>
50
+ <meta name="author" content="#{cfg("document.author")}" />
51
+ <meta name="copyright" content="#{cfg("document.author")}" />
52
+ #{@value}
53
+ </head>
54
+ }
55
+ end
56
+
57
+ macro :style do
58
+ file = Glyph::PROJECT/"styles/#{@value}"
59
+ macro_error "Stylesheet '#{@value}' not found" unless file.exist?
60
+ style = ""
61
+ case file.extname
62
+ when ".css"
63
+ style = file_load file
64
+ when ".sass"
65
+ begin
66
+ require 'sass'
67
+ style = Sass::Engine.new(file_load(file)).render
68
+ rescue LoadError
69
+ macro_error "Haml is not installed. Please run: gem install haml"
70
+ rescue Exception
71
+ raise
72
+ end
73
+ else
74
+ macro_error "Extension '#{file.extname}' not supported."
75
+ end
76
+ %{
77
+ <style type="text/css">
78
+ #{style}
79
+ </style>
80
+ }
81
+ end
82
+
83
+ macro :toc do
84
+ link_header = lambda do |header|
85
+ %{<a href="##{header[:id]}">#{header[:title].gsub(/@(.+?)@/, '\1')}</a>}
86
+ end
87
+ toc = placeholder do |document|
88
+ descend_section = lambda do |n1, added_headers|
89
+ list = ""
90
+ added_headers ||= []
91
+ n1.descend do |n2, level|
92
+ if cfg('structure.headers').include?(n2[:macro])
93
+ next if n2.find_parent{|node| cfg('structure.special').include? node[:macro] }
94
+ header_id = n2.children.select{|n| n[:header]}[0][:header] rescue nil
95
+ next if added_headers.include? header_id
96
+ added_headers << header_id
97
+ # Check if part of frontmatter, bodymatter or backmatter
98
+ container = n2.find_parent{|node| node[:macro] == :frontmatter}[:macro] rescue nil
99
+ container ||= n2.find_parent{|node| node[:macro] == :bodymatter}[:macro] rescue nil
100
+ container ||= n2.find_parent{|node| node[:macro] == :appendix}[:macro] rescue nil
101
+ container ||= n2.find_parent{|node| node[:macro] == :backmatter}[:macro] rescue nil
102
+ list << "<li class=\"#{container} #{n2[:macro]}\">#{link_header.call(document.header?(header_id))}</li>\n" if header_id
103
+ child_list = ""
104
+ n2.children.each do |c|
105
+ child_list << descend_section.call(c, added_headers)
106
+ end
107
+ list << "<li><ol>#{child_list}</ol></li>\n" unless child_list.blank?
108
+ end
109
+ end
110
+ list
111
+ end
112
+ %{
113
+ <div class="contents">
114
+ <h2 class="toc-header" id="h_toc">Table of Contents</h2>
115
+ <ol class="toc">
116
+ #{descend_section.call(document.structure, nil)}
117
+ </ol>
118
+ </div>}
119
+ end
120
+ toc
121
+ end
122
+
123
+ # See:
124
+ # http://microformats.org/wiki/book-brainstorming
125
+ # http://en.wikipedia.org/wiki/Book_design
126
+
127
+ macro_alias :section => :div
128
+
129
+ (cfg('structure.frontmatter') + cfg('structure.bodymatter') + cfg('structure.backmatter')).
130
+ each {|s| macro_alias s => :div }
131
+
132
+ macro_alias :frontcover => :div
133
+ macro_alias :titlepage => :div
134
+ macro_alias :halftitlepage => :div
135
+ macro_alias :frontmatter => :div
136
+ macro_alias :bodymatter => :div
137
+ macro_alias :backmatter => :div
138
+ macro_alias :backcover => :div
@@ -0,0 +1,5 @@
1
+ section[
2
+ header[Container section]
3
+ This is a test.
4
+ @[included.textile]
5
+ ]
@@ -0,0 +1,2 @@
1
+ @[container.textile]
2
+ @[markdown.markdown]
@@ -0,0 +1,3 @@
1
+ toc[]
2
+ @[container.textile]
3
+ @[markdown.markdown]
@@ -0,0 +1,4 @@
1
+ section[
2
+ header[Test Section]
3
+ ...
4
+ ]
@@ -0,0 +1,449 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
3
+ <head>
4
+ <title>File:Garamond type fi-ligature.jpg - Wikipedia, the free encyclopedia</title>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6
+ <meta http-equiv="Content-Style-Type" content="text/css" />
7
+ <meta name="generator" content="MediaWiki 1.16alpha-wmf" />
8
+ <link rel="apple-touch-icon" href="http://en.wikipedia.org/apple-touch-icon.png" />
9
+ <link rel="shortcut icon" href="/favicon.ico" />
10
+ <link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (en)" />
11
+ <link rel="copyright" href="http://creativecommons.org/licenses/by-sa/3.0/" />
12
+ <link rel="alternate" type="application/rss+xml" title="Wikipedia RSS Feed" href="/w/index.php?title=Special:RecentChanges&amp;feed=rss" />
13
+ <link rel="alternate" type="application/atom+xml" title="Wikipedia Atom Feed" href="/w/index.php?title=Special:RecentChanges&amp;feed=atom" />
14
+ <link rel="stylesheet" href="http://bits.wikimedia.org/skins-1.5/common/shared.css?257z23" type="text/css" media="screen" />
15
+ <link rel="stylesheet" href="http://bits.wikimedia.org/skins-1.5/common/commonPrint.css?257z23" type="text/css" media="print" />
16
+ <link rel="stylesheet" href="http://bits.wikimedia.org/skins-1.5/monobook/main.css?257z23" type="text/css" media="screen" />
17
+ <link rel="stylesheet" href="http://bits.wikimedia.org/skins-1.5/chick/main.css?257z23" type="text/css" media="handheld" />
18
+ <!--[if lt IE 5.5000]><link rel="stylesheet" href="http://bits.wikimedia.org/skins-1.5/monobook/IE50Fixes.css?257z23" type="text/css" media="screen" /><![endif]-->
19
+ <!--[if IE 5.5000]><link rel="stylesheet" href="http://bits.wikimedia.org/skins-1.5/monobook/IE55Fixes.css?257z23" type="text/css" media="screen" /><![endif]-->
20
+ <!--[if IE 6]><link rel="stylesheet" href="http://bits.wikimedia.org/skins-1.5/monobook/IE60Fixes.css?257z23" type="text/css" media="screen" /><![endif]-->
21
+ <!--[if IE 7]><link rel="stylesheet" href="http://bits.wikimedia.org/skins-1.5/monobook/IE70Fixes.css?257z23" type="text/css" media="screen" /><![endif]-->
22
+ <link rel="stylesheet" href="/w/index.php?title=MediaWiki:Common.css&amp;usemsgcache=yes&amp;ctype=text%2Fcss&amp;smaxage=2678400&amp;action=raw&amp;maxage=2678400" type="text/css" media="all" />
23
+ <link rel="stylesheet" href="/w/index.php?title=MediaWiki:Print.css&amp;usemsgcache=yes&amp;ctype=text%2Fcss&amp;smaxage=2678400&amp;action=raw&amp;maxage=2678400" type="text/css" media="print" />
24
+ <link rel="stylesheet" href="/w/index.php?title=MediaWiki:Handheld.css&amp;usemsgcache=yes&amp;ctype=text%2Fcss&amp;smaxage=2678400&amp;action=raw&amp;maxage=2678400" type="text/css" media="handheld" />
25
+ <link rel="stylesheet" href="/w/index.php?title=MediaWiki:Monobook.css&amp;usemsgcache=yes&amp;ctype=text%2Fcss&amp;smaxage=2678400&amp;action=raw&amp;maxage=2678400" type="text/css" media="all" />
26
+ <link rel="stylesheet" href="/w/index.php?title=-&amp;action=raw&amp;maxage=2678400&amp;gen=css" type="text/css" media="all" />
27
+ <script type="text/javascript">
28
+ var skin="monobook",
29
+ stylepath="http://bits.wikimedia.org/skins-1.5",
30
+ wgUrlProtocols="http\\:\\/\\/|https\\:\\/\\/|ftp\\:\\/\\/|irc\\:\\/\\/|gopher\\:\\/\\/|telnet\\:\\/\\/|nntp\\:\\/\\/|worldwind\\:\\/\\/|mailto\\:|news\\:|svn\\:\\/\\/",
31
+ wgArticlePath="/wiki/$1",
32
+ wgScriptPath="/w",
33
+ wgScriptExtension=".php",
34
+ wgScript="/w/index.php",
35
+ wgVariantArticlePath=false,
36
+ wgActionPaths={},
37
+ wgServer="http://en.wikipedia.org",
38
+ wgCanonicalNamespace="File",
39
+ wgCanonicalSpecialPageName=false,
40
+ wgNamespaceNumber=6,
41
+ wgPageName="File:Garamond_type_fi-ligature.jpg",
42
+ wgTitle="Garamond type fi-ligature.jpg",
43
+ wgAction="view",
44
+ wgArticleId=0,
45
+ wgIsArticle=true,
46
+ wgUserName=null,
47
+ wgUserGroups=null,
48
+ wgUserLanguage="en",
49
+ wgContentLanguage="en",
50
+ wgBreakFrames=false,
51
+ wgCurRevisionId=0,
52
+ wgVersion="1.16alpha-wmf",
53
+ wgEnableAPI=true,
54
+ wgEnableWriteAPI=true,
55
+ wgSeparatorTransformTable=["", ""],
56
+ wgDigitTransformTable=["", ""],
57
+ wgMainPageTitle="Main Page",
58
+ wgFormattedNamespaces={"-2": "Media", "-1": "Special", "0": "", "1": "Talk", "2": "User", "3": "User talk", "4": "Wikipedia", "5": "Wikipedia talk", "6": "File", "7": "File talk", "8": "MediaWiki", "9": "MediaWiki talk", "10": "Template", "11": "Template talk", "12": "Help", "13": "Help talk", "14": "Category", "15": "Category talk", "100": "Portal", "101": "Portal talk", "108": "Book", "109": "Book talk"},
59
+ wgNamespaceIds={"media": -2, "special": -1, "": 0, "talk": 1, "user": 2, "user_talk": 3, "wikipedia": 4, "wikipedia_talk": 5, "file": 6, "file_talk": 7, "mediawiki": 8, "mediawiki_talk": 9, "template": 10, "template_talk": 11, "help": 12, "help_talk": 13, "category": 14, "category_talk": 15, "portal": 100, "portal_talk": 101, "book": 108, "book_talk": 109, "wp": 4, "wt": 5, "image": 6, "image_talk": 7},
60
+ wgMWSuggestTemplate="http://en.wikipedia.org/w/api.php?action=opensearch\x26search={searchTerms}\x26namespace={namespaces}\x26suggest",
61
+ wgDBname="enwiki",
62
+ wgSearchNamespaces=[0],
63
+ wgMWSuggestMessages=["with suggestions", "no suggestions"],
64
+ wgRestrictionEdit=[],
65
+ wgRestrictionMove=[],
66
+ wgTrackingToken="c1bcaa4a17238f776c68a2bf9368f3ab",
67
+ wgClickTrackingIsThrottled=true,
68
+ wgNotice="",
69
+ wgNoticeLocal="";
70
+ </script>
71
+ <script src="http://bits.wikimedia.org/skins-1.5/common/wikibits.js?urid=257z23_1264870003" type="text/javascript"></script>
72
+ <script src="http://bits.wikimedia.org/skins-1.5/common/metadata.js?urid=257z23" type="text/javascript"></script>
73
+ <script src="http://bits.wikimedia.org/skins-1.5/common/ajax.js?urid=257z23" type="text/javascript"></script>
74
+ <script src="http://bits.wikimedia.org/skins-1.5/common/mwsuggest.js?urid=257z23" type="text/javascript"></script>
75
+ <script type="text/javascript" src="http://upload.wikimedia.org/centralnotice/wikipedia/en/centralnotice.js?257z23"></script>
76
+
77
+ <!--[if lt IE 7]><script type="text/javascript" src="http://bits.wikimedia.org/skins-1.5/common/IEFixes.js?257z23"></script>
78
+ <meta http-equiv="imagetoolbar" content="no" /><![endif]-->
79
+ <script src="/w/index.php?title=-&amp;action=raw&amp;gen=js&amp;useskin=monobook&amp;urid=257z23_336800052" type="text/javascript"></script>
80
+
81
+ </head>
82
+ <body class="mediawiki ltr ns-6 ns-subject page-File_Garamond_type_fi-ligature_jpg skin-monobook">
83
+ <div id="globalWrapper">
84
+ <div id="column-content">
85
+ <div id="content">
86
+ <a id="top"></a>
87
+ <div id="siteNotice"><script type='text/javascript'>if (wgNotice != '') document.writeln(wgNotice);</script></div> <h1 id="firstHeading" class="firstHeading">File:Garamond type fi-ligature.jpg</h1>
88
+ <div id="bodyContent">
89
+ <h3 id="siteSub">From Wikipedia, the free encyclopedia</h3>
90
+ <div id="contentSub"></div>
91
+ <div id="jump-to-nav">Jump to: <a href="#column-one">navigation</a>, <a href="#searchInput">search</a></div> <!-- start content -->
92
+ <ul id="filetoc">
93
+ <li><a href="#file">File</a></li>
94
+ <li><a href="#filehistory">File history</a></li>
95
+ <li><a href="#filelinks">File links</a></li>
96
+ <li><a href="#metadata">Metadata</a></li>
97
+ </ul>
98
+ <div class="fullImageLink" id="file"><a href="http://upload.wikimedia.org/wikipedia/commons/0/07/Garamond_type_fi-ligature.jpg"><img alt="File:Garamond type fi-ligature.jpg" src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/07/Garamond_type_fi-ligature.jpg/449px-Garamond_type_fi-ligature.jpg" width="449" height="599" /></a><br /><small>Size of this preview: 449 × 599 pixels</small><br /><a href="http://upload.wikimedia.org/wikipedia/commons/0/07/Garamond_type_fi-ligature.jpg">Full resolution</a>‎ (670 × 894 pixels, file size: 293 KB, MIME type: image/jpeg)</div>
99
+ <div class="sharedUploadNotice">
100
+ <table id="mw-sharedupload" class="plainlinks fmbox fmbox-system" style="">
101
+ <tr>
102
+ <td class="mbox-image">
103
+ <a href="/wiki/File:Commons-logo.svg" class="image" title="Wikimedia Commons logo"><img alt="Wikimedia Commons logo" src="http://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/30px-Commons-logo.svg.png" width="30" height="40" /></a></td>
104
+ <td class="mbox-text" style="font-size: 90%; text-align: center;"> <div>
105
+ <p><big>This is a file from the <a href="http://commons.wikimedia.org/wiki/Main_Page" class="extiw" title="commons:Main Page">Wikimedia Commons</a>. The description on its <b><a href="http://commons.wikimedia.org/wiki/File:Garamond_type_fi-ligature.jpg" class="extiw" title="commons:File:Garamond type fi-ligature.jpg">description page there</a></b> is shown below.</big> <br/> Commons is a freely licensed media file repository. <a href="http://commons.wikimedia.org/wiki/Commons:Welcome" class="extiw" title="commons:Commons:Welcome">You can help</a>.
106
+ </p>
107
+ </div> </td>
108
+ </tr>
109
+ </table><div class="metadata topicon" id="commons-icon" style="display:none; right:30px;"><a href="http://commons.wikimedia.org/wiki/File:Garamond_type_fi-ligature.jpg" title="This is a file from the Wikimedia Commons"><img alt="This is a file from the Wikimedia Commons" src="http://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/14px-Commons-logo.svg.png" width="14" height="19" /></a></div>
110
+ </div>
111
+ <div id="shared-image-desc"><table summary="A standardized table providing complete information about the file, including description of what it shows and how it was made, copyright status and source." class="toccolours vevent" style="width: 100%; direction: ltr;" cellpadding="2">
112
+ <tr>
113
+ <th style="background: #ccf; text-align: right; vertical-align: top; padding-right: 0.4em; width: 15%" id="fileinfotpl_desc">Description</th>
114
+ <td><span class="summary" style="display:none">Garamond type fi-ligature.jpg</span>
115
+ <p>long s - i ligature type in 12p Garamond</p>
116
+ </td>
117
+ </tr>
118
+ <tr valign="top">
119
+ <th style="background: #ccf; text-align: right; padding-right: 0.4em; white-space: nowrap" id="fileinfotpl_date">Date</th>
120
+ <td>
121
+ <p>created 7 June 2006</p>
122
+ </td>
123
+ </tr>
124
+ <tr valign="top">
125
+ <th style="background: #ccf; text-align: right; padding-right: 0.4em" id="fileinfotpl_src">Source</th>
126
+ <td>
127
+ <p>Own work</p>
128
+ </td>
129
+ </tr>
130
+ <tr valign="top">
131
+ <th style="background: #ccf; text-align: right; padding-right: 0.4em" id="fileinfotpl_aut">Author</th>
132
+ <td>
133
+ <p>Daniel Ullrich, <a href="http://commons.wikimedia.org/wiki/User:Threedots" title="User:Threedots">Threedots</a></p>
134
+ </td>
135
+ </tr>
136
+ <tr valign="top">
137
+ <th style="background: #ccf; text-align: right; padding-right: 0.4em" id="fileinfotpl_perm">Permission<br />
138
+ <small>(<a href="http://commons.wikimedia.org/wiki/Commons:Reusing_content_outside_Wikimedia" title="Commons:Reusing content outside Wikimedia">Reusing this file</a>)</small></th>
139
+ <td>released in the GFDL and CC-by-sa-2.0-de by Daniel Ullrich, <a href="http://commons.wikimedia.org/wiki/User:Threedots" title="User:Threedots">Threedots</a></td>
140
+ </tr>
141
+ <tr valign="top">
142
+ <td style="background: #ccf; text-align: right; padding-right: 0.4em; font-weight: bold" id="fileinfotpl_ver">Other versions</td>
143
+ <td><a href="http://commons.wikimedia.org/wiki/File:Garamond_type_fi-ligature_2.jpg" title="File:Garamond type fi-ligature 2.jpg">Image:Garamond type fi-ligature_2.jpg</a></td>
144
+ </tr>
145
+ </table>
146
+ <table cellspacing="8" cellpadding="0" style="clear:both; margin:0.5em auto; background-color:#f0f0f0; border:2px solid #e0e0e0; direction: ltr;">
147
+ <tr>
148
+ <td>
149
+ <center><i><span lang="en" class="description en" xml:lang="en"><b>I, the copyright holder of this work,</b> hereby publish it under the following licenses</span>:</i></center>
150
+ <table cellspacing="8" cellpadding="0" style="width:100%; clear:both; margin:0.5em auto; background-color:#f9f9f9; border:2px solid #e0e0e0; direction: ltr;" class="layouttemplate">
151
+ <tr>
152
+ <td><img alt="GNU head" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/22/Heckert_GNU_white.svg/64px-Heckert_GNU_white.svg.png" width="64" height="63" /></td>
153
+ <td><span lang="en" class="description en" xml:lang="en"><i>Permission is granted to copy, distribute and/or modify this document under the terms of the <b><a href="http://en.wikipedia.org/wiki/GNU_Free_Documentation_License" class="extiw" title="w:GNU Free Documentation License">GNU Free Documentation License</a></b>, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled "<a href="http://commons.wikimedia.org/wiki/Commons:GNU_Free_Documentation_License" title="Commons:GNU Free Documentation License">GNU Free Documentation License</a>".</i></span>
154
+ <hr />
155
+ <p><span style="font-size:x-small;line-height:140%" class="plainlinks"><a href="http://commons.wikimedia.org/wiki/Template:GFDL/af" class="external text" rel="nofollow">Afrikaans</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/als" class="external text" rel="nofollow">Alemannisch</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/an" class="external text" rel="nofollow">Aragonés</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/ar" class="external text" rel="nofollow">العربية</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/ast" class="external text" rel="nofollow">Asturianu</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/be" class="external text" rel="nofollow">Беларуская</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/be-tarask" class="external text" rel="nofollow">Беларуская (тарашкевіца)</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/bg" class="external text" rel="nofollow">Български</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/bn" class="external text" rel="nofollow">বাংলা</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/bpy" class="external text" rel="nofollow">ইমার ঠার/বিষ্ণুপ্রিয়া মণিপুরী</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/br" class="external text" rel="nofollow">Brezhoneg</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/bs" class="external text" rel="nofollow">Bosanski</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/ca" class="external text" rel="nofollow">Català</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/ceb" class="external text" rel="nofollow">Cebuano</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/cs" class="external text" rel="nofollow">Česky</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/da" class="external text" rel="nofollow">Dansk</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/de" class="external text" rel="nofollow">Deutsch</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/el" class="external text" rel="nofollow">Ελληνικά</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/en" class="external text" rel="nofollow">English</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/eo" class="external text" rel="nofollow">Esperanto</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/es" class="external text" rel="nofollow">Español</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/et" class="external text" rel="nofollow">Eesti</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/eu" class="external text" rel="nofollow">Euskara</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/fa" class="external text" rel="nofollow">فارسی</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/fi" class="external text" rel="nofollow">Suomi</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/fr" class="external text" rel="nofollow">Français</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/ga" class="external text" rel="nofollow">Gaeilge</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/gl" class="external text" rel="nofollow">Galego</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/he" class="external text" rel="nofollow">עברית</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/hr" class="external text" rel="nofollow">Hrvatski</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/hu" class="external text" rel="nofollow">Magyar</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/hy" class="external text" rel="nofollow">Հայերեն</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/id" class="external text" rel="nofollow">Bahasa Indonesia</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/io" class="external text" rel="nofollow">Ido</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/is" class="external text" rel="nofollow">Íslenska</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/it" class="external text" rel="nofollow">Italiano</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/ja" class="external text" rel="nofollow">日本語</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/ka" class="external text" rel="nofollow">ქართული</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/km" class="external text" rel="nofollow">ភាសាខ្មែរ</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/ko" class="external text" rel="nofollow">한국어</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/ku" class="external text" rel="nofollow">Kurdî / كوردی</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/la" class="external text" rel="nofollow">Latina</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/lb" class="external text" rel="nofollow">Lëtzebuergesch</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/lt" class="external text" rel="nofollow">Lietuvių</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/lzh" class="external text" rel="nofollow">文言</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/mk" class="external text" rel="nofollow">Македонски</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/ms" class="external text" rel="nofollow">Bahasa Melayu</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/mt" class="external text" rel="nofollow">Malti</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/nap" class="external text" rel="nofollow">Nnapulitano</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/nds" class="external text" rel="nofollow">Plattdüütsch</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/nl" class="external text" rel="nofollow">Nederlands</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/nn" class="external text" rel="nofollow">‪Norsk (nynorsk)‬</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/no" class="external text" rel="nofollow">‪Norsk (bokmål)‬</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/oc" class="external text" rel="nofollow">Occitan</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/pl" class="external text" rel="nofollow">Polski</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/pt" class="external text" rel="nofollow">Português</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/ro" class="external text" rel="nofollow">Română</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/ru" class="external text" rel="nofollow">Русский</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/sk" class="external text" rel="nofollow">Slovenčina</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/sl" class="external text" rel="nofollow">Slovenščina</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/sq" class="external text" rel="nofollow">Shqip</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/sr" class="external text" rel="nofollow">Српски / Srpski</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/sv" class="external text" rel="nofollow">Svenska</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/sw" class="external text" rel="nofollow">Kiswahili</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/te" class="external text" rel="nofollow">తెలుగు</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/th" class="external text" rel="nofollow">ไทย</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/tl" class="external text" rel="nofollow">Tagalog</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/tr" class="external text" rel="nofollow">Türkçe</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/uk" class="external text" rel="nofollow">Українська</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/ur" class="external text" rel="nofollow">اردو</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/vec" class="external text" rel="nofollow">Vèneto</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/vi" class="external text" rel="nofollow">Tiếng Việt</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/vo" class="external text" rel="nofollow">Volapük</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/yo" class="external text" rel="nofollow">Yorùbá</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/zh" class="external text" rel="nofollow">中文</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/zh-hans" class="external text" rel="nofollow">‪中文(简体)‬</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:GFDL/zh-hant" class="external text" rel="nofollow">‪中文(繁體)‬</a>&#160;| <small class="plainlinks"><a href="http://commons.wikimedia.org/w/index.php?title=Template:GFDL/lang&amp;action=edit" class="external text" rel="nofollow">+/−</a></small></span></p>
156
+ </td>
157
+ </tr>
158
+ </table>
159
+ <table cellspacing="8" cellpadding="0" style="width:100%; clear:both; text-align:center; margin:0.5em auto; background-color:#f9f9f9; border:2px solid #e0e0e0; direction: ltr;" class="layouttemplate">
160
+ <tr>
161
+ <td style="width:90px;"><img alt="Creative Commons license" src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/79/CC_some_rights_reserved.svg/90px-CC_some_rights_reserved.svg.png" width="90" height="36" /><br />
162
+ <img alt="Creative Commons Attribution" src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Cc-by_new_white.svg/24px-Cc-by_new_white.svg.png" width="24" height="24" /> <img alt="Creative Commons Share Alike" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Cc-sa.svg/24px-Cc-sa.svg.png" width="24" height="24" /></td>
163
+ <td><span lang="en" class="description en" xml:lang="en"><i>This file is licensed under the <a href="http://en.wikipedia.org/wiki/Creative_Commons" class="extiw" title="w:Creative Commons">Creative&#160;Commons</a> <a href="http://creativecommons.org/licenses/by-sa/3.0/" class="external text" rel="nofollow">Attribution&#160;ShareAlike&#160;3.0</a>&#160;License. In short: you are free to share and make derivative works of the file under the conditions that you appropriately attribute it, and that you distribute it only under a license identical to this one. <a href="http://creativecommons.org/licenses/by-sa/3.0/" class="external text" rel="nofollow">Official license</a></i><br /></span>
164
+ <p><span lang="en" class="description en" xml:lang="en"><span style="font-size:90%;">This licensing tag was added to this file as part of the GFDL <a href="http://meta.wikimedia.org/wiki/licensing_update" class="extiw" title="m:licensing update">licensing update</a>.</span></span></p>
165
+ <hr />
166
+ <p><span style="font-size:x-small;line-height:140%" class="plainlinks"><a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/als" class="external text" rel="nofollow">Alemannisch</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/be-tarask" class="external text" rel="nofollow">Беларуская (тарашкевіца)</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/ca" class="external text" rel="nofollow">Català</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/cs" class="external text" rel="nofollow">Česky</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/de" class="external text" rel="nofollow">Deutsch</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/de-formal" class="external text" rel="nofollow">Deutsch (Sie-Form)</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/el" class="external text" rel="nofollow">Ελληνικά</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/en" class="external text" rel="nofollow">English</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/es" class="external text" rel="nofollow">Español</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/et" class="external text" rel="nofollow">Eesti</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/fi" class="external text" rel="nofollow">Suomi</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/fr" class="external text" rel="nofollow">Français</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/hr" class="external text" rel="nofollow">Hrvatski</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/hy" class="external text" rel="nofollow">Հայերեն</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/it" class="external text" rel="nofollow">Italiano</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/ja" class="external text" rel="nofollow">日本語</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/ko" class="external text" rel="nofollow">한국어</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/lt" class="external text" rel="nofollow">Lietuvių</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/mk" class="external text" rel="nofollow">Македонски</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/pl" class="external text" rel="nofollow">Polski</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/pt" class="external text" rel="nofollow">Português</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/pt-br" class="external text" rel="nofollow">Português do Brasil</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/ru" class="external text" rel="nofollow">Русский</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/sv" class="external text" rel="nofollow">Svenska</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/th" class="external text" rel="nofollow">ไทย</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/vec" class="external text" rel="nofollow">Vèneto</a>&#160;| <a href="http://commons.wikimedia.org/wiki/Template:Cc-by-sa-3.0-migrated/vi" class="external text" rel="nofollow">Tiếng Việt</a>&#160;| <small class="plainlinks"><a href="http://commons.wikimedia.org/w/index.php?title=Template:Cc-by-sa-3.0-migrated/lang&amp;action=edit" class="external text" rel="nofollow">+/−</a></small></span></p>
167
+ </td>
168
+ </tr>
169
+ </table>
170
+ <table cellspacing="8" cellpadding="0" style="width:100%; clear:both; text-align:center; margin:0.5em auto; background-color:#f9f9f9; border:2px solid #e0e0e0; direction: ltr;" class="layouttemplate">
171
+ <tr>
172
+ <td style="width:90px;" rowspan="3"><img alt="w:en:Creative Commons" src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/79/CC_some_rights_reserved.svg/90px-CC_some_rights_reserved.svg.png" width="90" height="36" /><br />
173
+ <img alt="attribution" src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Cc-by_new_white.svg/24px-Cc-by_new_white.svg.png" width="24" height="24" /> <img alt="share alike" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Cc-sa.svg/24px-Cc-sa.svg.png" width="24" height="24" /></td>
174
+ <td>This file is licensed under the <a href="http://en.wikipedia.org/wiki/en:Creative_Commons" class="extiw" title="w:en:Creative Commons">Creative Commons</a> <a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.en" class="external text" rel="nofollow">Attribution-Share Alike 2.0 Germany</a> license.</td>
175
+ <td style="width:90px;" rowspan="3">
176
+ <div class="floatright"><img alt="Flag of Germany.svg" src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/90px-Flag_of_Germany.svg.png" width="90" height="54" class="thumbborder" /></div>
177
+ </td>
178
+ </tr>
179
+ <tr style="text-align:center;">
180
+ <td></td>
181
+ </tr>
182
+ <tr style="text-align:left;">
183
+ <td>
184
+ <dl>
185
+ <dd>You are free:
186
+ <ul>
187
+ <li><b>to share</b> – to copy, distribute and transmit the work</li>
188
+ <li><b>to remix</b> – to adapt the work</li>
189
+ </ul>
190
+ </dd>
191
+ <dd>Under the following conditions:
192
+ <ul>
193
+ <li><b>attribution</b> – You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work).</li>
194
+ <li><b>share alike</b> – If you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar license to this one.</li>
195
+ </ul>
196
+ </dd>
197
+ </dl>
198
+ </td>
199
+ </tr>
200
+ </table>
201
+ <center><span lang="en" class="description en" xml:lang="en"><i>You may select the license of your choice.</i></span></center>
202
+ </td>
203
+ </tr>
204
+ </table>
205
+
206
+
207
+ <!--
208
+ NewPP limit report
209
+ Preprocessor node count: 1993/1000000
210
+ Post-expand include size: 115002/2048000 bytes
211
+ Template argument size: 4240/2048000 bytes
212
+ Expensive parser function count: 4/500
213
+ -->
214
+
215
+ <!-- Saved in parser cache with key commonswiki:pcache:idhash:848826-1!1!0!default!!en!2 and timestamp 20100219142629 -->
216
+ </div>
217
+ <h2 id="filehistory">File history</h2>
218
+ <div id="mw-imagepage-section-filehistory">
219
+ <p>Click on a date/time to view the file as it appeared at that time.
220
+ </p>
221
+ <table class="wikitable filehistory">
222
+ <tr><td></td><th>Date/Time</th><th>Thumbnail</th><th>Dimensions</th><th>User</th><th>Comment</th></tr>
223
+ <tr><td>current</td><td class='filehistory-selected' style='white-space: nowrap;'><a href="http://upload.wikimedia.org/wikipedia/commons/0/07/Garamond_type_fi-ligature.jpg">18:06, 7 June 2006</a></td><td><a href="http://upload.wikimedia.org/wikipedia/commons/0/07/Garamond_type_fi-ligature.jpg"><img alt="Thumbnail for version as of 18:06, 7 June 2006" src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/07/Garamond_type_fi-ligature.jpg/90px-Garamond_type_fi-ligature.jpg" width="90" height="120" /></a></td><td>670×894 <span style='white-space: nowrap;'>(293 KB)</span></td><td>Threedots</td><td> <span class="comment">({{Information| |Description = fi-ligature type in 12p Garamond |Source = picture taken by myself |Date = created 7. June 2006 |Author = Daniel Ullrich, ~~~ |Permission = released in the GFDL and CC-by-sa-2.0-de by Daniel Ullrich, ~~~ |other_versions = - })</span></td></tr>
224
+ </table>
225
+
226
+ </div>
227
+ <h2 id="filelinks">File links</h2>
228
+ <div id='mw-imagepage-section-linkstoimage'>
229
+ <div class="linkstoimage" id="linkstoimage">The following pages on the English Wikipedia link to this file (pages on other projects are not listed):</div>
230
+ <ul class='mw-imagepage-linkstoimage'>
231
+ <li><a href="/wiki/Glyph" title="Glyph">Glyph</a></li>
232
+ </ul>
233
+ </div>
234
+ <h2 id="globalusage">Global file usage</h2>
235
+ <p>The following other wikis use this file:
236
+ </p><ul>
237
+ <li>Usage on cs.wikipedia.org
238
+ <ul> <li><a href="http://cs.wikipedia.org/wiki/Wikipedie:Obr%C3%A1zek_t%C3%BDdne/N%C3%A1vrhy" class="external ">Wikipedie:Obrázek týdne/Návrhy</a></li>
239
+ <li><a href="http://cs.wikipedia.org/wiki/Knihtisk" class="external ">Knihtisk</a></li>
240
+ </ul></li>
241
+ <li>Usage on de.wikipedia.org
242
+ <ul> <li><a href="http://de.wikipedia.org/wiki/Ligatur_(Typografie)" class="external ">Ligatur (Typografie)</a></li>
243
+ <li><a href="http://de.wikipedia.org/wiki/Diskussion:Ligatur_(Typografie)" class="external ">Diskussion:Ligatur (Typografie)</a></li>
244
+ <li><a href="http://de.wikipedia.org/wiki/Wikipedia:Kandidaten_f%C3%BCr_exzellente_Bilder/Archiv2006/10" class="external ">Wikipedia:Kandidaten für exzellente Bilder/Archiv2006/10</a></li>
245
+ </ul></li>
246
+ <li>Usage on de.wiktionary.org
247
+ <ul> <li><a href="http://de.wiktionary.org/wiki/Ligatur" class="external ">Ligatur</a></li>
248
+ </ul></li>
249
+ <li>Usage on ru.wikipedia.org
250
+ <ul> <li><a href="http://ru.wikipedia.org/wiki/%D0%93%D0%BB%D0%B8%D1%84" class="external ">Глиф</a></li>
251
+ </ul></li>
252
+ <li>Usage on sv.wikipedia.org
253
+ <ul> <li><a href="http://sv.wikipedia.org/wiki/Ligatur" class="external ">Ligatur</a></li>
254
+ </ul></li>
255
+ </ul>
256
+ <h2 id="metadata">Metadata</h2>
257
+ <div class="mw-imagepage-section-metadata">This file contains additional information, probably added from the digital camera or scanner used to create or digitize it.
258
+ If the file has been modified from its original state, some details may not fully reflect the modified file.<table id="mw_metadata" class="mw_metadata">
259
+ <tr class="exif-make">
260
+ <th>Camera manufacturer</th>
261
+ <td><a href="/wiki/OLYMPUS_CORPORATION" title="OLYMPUS CORPORATION" class="mw-redirect">OLYMPUS CORPORATION</a></td>
262
+ </tr><tr class="exif-model">
263
+ <th>Camera model</th>
264
+ <td><a href="/w/index.php?title=C760UZ&amp;action=edit&amp;redlink=1" class="new" title="C760UZ (page does not exist)">C760UZ</a></td>
265
+ </tr><tr class="exif-exposuretime">
266
+ <th><a href="/wiki/Shutter_speed" title="Shutter speed">Exposure time</a></th>
267
+ <td>1/15 sec (0.066666666666667)</td>
268
+ </tr><tr class="exif-fnumber">
269
+ <th><a href="/wiki/F-number" title="F-number">F-number</a></th>
270
+ <td>f/8</td>
271
+ </tr><tr class="exif-isospeedratings">
272
+ <th><a href="/wiki/Film_speed" title="Film speed">ISO speed</a> rating</th>
273
+ <td>100</td>
274
+ </tr><tr class="exif-datetimeoriginal">
275
+ <th>Date and time of data generation</th>
276
+ <td>18:19, 7 June 2006</td>
277
+ </tr><tr class="exif-focallength">
278
+ <th>Lens <a href="/wiki/Focal_length" title="Focal length">focal length</a></th>
279
+ <td>10.9 mm</td>
280
+ </tr><tr class="exif-imagedescription collapsable">
281
+ <th>Image title</th>
282
+ <td>OLYMPUS DIGITAL CAMERA </td>
283
+ </tr><tr class="exif-orientation collapsable">
284
+ <th>Orientation</th>
285
+ <td>Normal</td>
286
+ </tr><tr class="exif-xresolution collapsable">
287
+ <th>Horizontal resolution</th>
288
+ <td>72 dpi</td>
289
+ </tr><tr class="exif-yresolution collapsable">
290
+ <th>Vertical resolution</th>
291
+ <td>72 dpi</td>
292
+ </tr><tr class="exif-software collapsable">
293
+ <th>Software used</th>
294
+ <td><a href="/w/index.php?title=V771-77&amp;action=edit&amp;redlink=1" class="new" title="V771-77 (page does not exist)">v771-77</a></td>
295
+ </tr><tr class="exif-datetime collapsable">
296
+ <th>File change date and time</th>
297
+ <td>18:19, 7 June 2006</td>
298
+ </tr><tr class="exif-ycbcrpositioning collapsable">
299
+ <th>Y and C positioning</th>
300
+ <td>2</td>
301
+ </tr><tr class="exif-exposureprogram collapsable">
302
+ <th>Exposure Program</th>
303
+ <td>Manual</td>
304
+ </tr><tr class="exif-exifversion collapsable">
305
+ <th><a href="/wiki/Exchangeable_image_file_format" title="Exchangeable image file format">Exif</a> version</th>
306
+ <td>2.2</td>
307
+ </tr><tr class="exif-datetimedigitized collapsable">
308
+ <th>Date and time of digitizing</th>
309
+ <td>18:19, 7 June 2006</td>
310
+ </tr><tr class="exif-compressedbitsperpixel collapsable">
311
+ <th>Image compression mode</th>
312
+ <td>2</td>
313
+ </tr><tr class="exif-exposurebiasvalue collapsable">
314
+ <th><a href="/wiki/Exposure_compensation" title="Exposure compensation">Exposure bias</a></th>
315
+ <td>0</td>
316
+ </tr><tr class="exif-maxaperturevalue collapsable">
317
+ <th>Maximum land aperture</th>
318
+ <td>3.4</td>
319
+ </tr><tr class="exif-meteringmode collapsable">
320
+ <th><a href="/wiki/Metering_mode" title="Metering mode">Metering mode</a></th>
321
+ <td>Spot</td>
322
+ </tr><tr class="exif-lightsource collapsable">
323
+ <th>Light source</th>
324
+ <td>Unknown</td>
325
+ </tr><tr class="exif-flash collapsable">
326
+ <th><a href="/wiki/Flash_(photography)" title="Flash (photography)">Flash</a></th>
327
+ <td>Flash did not fire, compulsory flash suppression</td>
328
+ </tr><tr class="exif-colorspace collapsable">
329
+ <th><a href="/wiki/Color_space" title="Color space">Color space</a></th>
330
+ <td>sRGB</td>
331
+ </tr><tr class="exif-customrendered collapsable">
332
+ <th>Custom image processing</th>
333
+ <td>Normal process</td>
334
+ </tr><tr class="exif-exposuremode collapsable">
335
+ <th>Exposure mode</th>
336
+ <td>Manual exposure</td>
337
+ </tr><tr class="exif-whitebalance collapsable">
338
+ <th><a href="/wiki/Color_balance" title="Color balance">White balance</a></th>
339
+ <td>Auto white balance</td>
340
+ </tr><tr class="exif-digitalzoomratio collapsable">
341
+ <th><a href="/wiki/Digital_zoom" title="Digital zoom">Digital zoom</a> ratio</th>
342
+ <td>0</td>
343
+ </tr><tr class="exif-scenecapturetype collapsable">
344
+ <th>Scene capture type</th>
345
+ <td>Standard</td>
346
+ </tr><tr class="exif-contrast collapsable">
347
+ <th><a href="/wiki/Contrast_(vision)" title="Contrast (vision)">Contrast</a></th>
348
+ <td>Hard</td>
349
+ </tr><tr class="exif-saturation collapsable">
350
+ <th><a href="/wiki/Colorfulness" title="Colorfulness">Saturation</a></th>
351
+ <td>Normal</td>
352
+ </tr><tr class="exif-sharpness collapsable">
353
+ <th><a href="/wiki/Acutance" title="Acutance">Sharpness</a></th>
354
+ <td>Normal</td>
355
+ </tr></table>
356
+ </div>
357
+ <script type="text/javascript">attachMetadataToggle('mw_metadata', 'Show extended details', 'Hide extended details');</script>
358
+ <div class="printfooter">
359
+ Retrieved from "<a href="http://en.wikipedia.org/wiki/File:Garamond_type_fi-ligature.jpg">http://en.wikipedia.org/wiki/File:Garamond_type_fi-ligature.jpg</a>"</div>
360
+ <div id='catlinks' class='catlinks catlinks-allhidden'></div> <!-- end content -->
361
+ <div class="visualClear"></div>
362
+ </div>
363
+ </div>
364
+ </div>
365
+ <div id="column-one">
366
+ <div id="p-cactions" class="portlet">
367
+ <h5>Views</h5>
368
+ <div class="pBody">
369
+ <ul lang="en" xml:lang="en">
370
+
371
+ <li id="ca-nstab-image" class="selected"><a href="/wiki/File:Garamond_type_fi-ligature.jpg" title="View the file page [c]" accesskey="c">File</a></li>
372
+ <li id="ca-talk" class="new"><a href="/w/index.php?title=File_talk:Garamond_type_fi-ligature.jpg&amp;action=edit&amp;redlink=1" title="Discussion about the content page [t]" accesskey="t">Discussion</a></li>
373
+ <li id="ca-viewsource"><a href="/w/index.php?title=File:Garamond_type_fi-ligature.jpg&amp;action=edit" title="This page is protected.&#10;You can view its source [e]" accesskey="e">View source</a></li> </ul>
374
+ </div>
375
+ </div>
376
+ <div class="portlet" id="p-personal">
377
+ <h5>Personal tools</h5>
378
+ <div class="pBody">
379
+ <ul lang="en" xml:lang="en">
380
+ <li id="pt-optin-try"><a href="http://en.wikipedia.org/w/index.php?title=Special:UsabilityInitiativeOptIn&amp;from=File%3AGaramond_type_fi-ligature.jpg" title="Try out new features" class="no-text-transform">Try Beta</a></li>
381
+ <li id="pt-login"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=File:Garamond_type_fi-ligature.jpg" title="You are encouraged to log in; however, it is not mandatory. [o]" accesskey="o">Log in / create account</a></li>
382
+ </ul>
383
+ </div>
384
+ </div>
385
+ <div class="portlet" id="p-logo">
386
+ <a style="background-image: url(http://upload.wikimedia.org/wikipedia/en/b/bc/Wiki.png);" href="/wiki/Main_Page" title="Visit the main page"></a>
387
+ </div>
388
+ <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script>
389
+ <div class='generated-sidebar portlet' id='p-navigation'>
390
+ <h5 lang="en" xml:lang="en">Navigation</h5>
391
+ <div class='pBody'>
392
+ <ul>
393
+ <li id="n-mainpage-description"><a href="/wiki/Main_Page" title="Visit the main page [z]" accesskey="z">Main page</a></li>
394
+ <li id="n-contents"><a href="/wiki/Portal:Contents" title="Guides to browsing Wikipedia">Contents</a></li>
395
+ <li id="n-featuredcontent"><a href="/wiki/Portal:Featured_content" title="Featured content — the best of Wikipedia">Featured content</a></li>
396
+ <li id="n-currentevents"><a href="/wiki/Portal:Current_events" title="Find background information on current events">Current events</a></li>
397
+ <li id="n-randompage"><a href="/wiki/Special:Random" title="Load a random article [x]" accesskey="x">Random article</a></li>
398
+ </ul>
399
+ </div>
400
+ </div>
401
+ <div id="p-search" class="portlet">
402
+ <h5 lang="en" xml:lang="en"><label for="searchInput">Search</label></h5>
403
+ <div id="searchBody" class="pBody">
404
+ <form action="/w/index.php" id="searchform">
405
+ <input type='hidden' name="title" value="Special:Search"/>
406
+ <input id="searchInput" title="Search Wikipedia" accesskey="f" value="" name="search" />
407
+ <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Go" title="Go to a page with this exact name if one exists" />&nbsp;
408
+ <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Search" title="Search Wikipedia for this text" />
409
+ </form>
410
+ </div>
411
+ </div>
412
+ <div class='generated-sidebar portlet' id='p-interaction'>
413
+ <h5 lang="en" xml:lang="en">Interaction</h5>
414
+ <div class='pBody'>
415
+ <ul>
416
+ <li id="n-aboutsite"><a href="/wiki/Wikipedia:About" title="Find out about Wikipedia">About Wikipedia</a></li>
417
+ <li id="n-portal"><a href="/wiki/Wikipedia:Community_portal" title="About the project, what you can do, where to find things">Community portal</a></li>
418
+ <li id="n-recentchanges"><a href="/wiki/Special:RecentChanges" title="The list of recent changes in the wiki [r]" accesskey="r">Recent changes</a></li>
419
+ <li id="n-contact"><a href="/wiki/Wikipedia:Contact_us" title="How to contact Wikipedia">Contact Wikipedia</a></li>
420
+ <li id="n-sitesupport"><a href="http://wikimediafoundation.org/wiki/Support_Wikipedia/en" title="Support us">Donate to Wikipedia</a></li>
421
+ <li id="n-help"><a href="/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia">Help</a></li>
422
+ </ul>
423
+ </div>
424
+ </div>
425
+ <div class="portlet" id="p-tb">
426
+ <h5 lang="en" xml:lang="en">Toolbox</h5>
427
+ <div class="pBody">
428
+ <ul>
429
+ <li id="t-whatlinkshere"><a href="/wiki/Special:WhatLinksHere/File:Garamond_type_fi-ligature.jpg" title="List of all English Wikipedia pages containing links to this page [j]" accesskey="j">What links here</a></li>
430
+ <li id="t-upload"><a href="/wiki/Wikipedia:Upload" title="Upload files [u]" accesskey="u">Upload file</a></li>
431
+ <li id="t-specialpages"><a href="/wiki/Special:SpecialPages" title="List of all special pages [q]" accesskey="q">Special pages</a></li>
432
+ <li id="t-print"><a href="/w/index.php?title=File:Garamond_type_fi-ligature.jpg&amp;printable=yes" rel="alternate" title="Printable version of this page [p]" accesskey="p">Printable version</a></li> </ul>
433
+ </div>
434
+ </div>
435
+ </div><!-- end of the left (by default at least) column -->
436
+ <div class="visualClear"></div>
437
+ <div id="footer">
438
+ <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="http://bits.wikimedia.org/skins-1.5/common/images/poweredby_mediawiki_88x31.png" height="31" width="88" alt="Powered by MediaWiki" /></a></div>
439
+ <div id="f-copyrightico"><a href="http://wikimediafoundation.org/"><img src="/images/wikimedia-button.png" width="88" height="31" alt="Wikimedia Foundation"/></a></div>
440
+ <ul id="f-list">
441
+ <li id="privacy"><a href="http://wikimediafoundation.org/wiki/Privacy_policy" title="wikimedia:Privacy policy">Privacy policy</a></li>
442
+ <li id="about"><a href="/wiki/Wikipedia:About" title="Wikipedia:About">About Wikipedia</a></li>
443
+ <li id="disclaimer"><a href="/wiki/Wikipedia:General_disclaimer" title="Wikipedia:General disclaimer">Disclaimers</a></li>
444
+ </ul>
445
+ </div>
446
+ </div>
447
+
448
+ <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script>
449
+ <!-- Served by srv133 in 0.885 secs. --></body></html>