latex_curriculum_vitae 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. checksums.yaml +7 -0
  2. data/.gemnasium.yml +5 -0
  3. data/.gitignore +5 -0
  4. data/.idea/latex_curriculum_vitae.iml +25 -0
  5. data/.idea/misc.xml +4 -0
  6. data/.idea/modules.xml +8 -0
  7. data/.idea/vcs.xml +6 -0
  8. data/.idea/workspace.xml +686 -0
  9. data/.index +84 -0
  10. data/.setup/installer.rb +30 -0
  11. data/.setup/metaconfig.rb +1 -0
  12. data/CHANGELOG.md +5 -0
  13. data/CODE_OF_CONDUCT.md +17 -0
  14. data/CONTRIBUTING.md +25 -0
  15. data/Gemfile +2 -0
  16. data/Gemfile.lock +32 -0
  17. data/Index.yml +40 -0
  18. data/LICENSE +166 -0
  19. data/MANIFEST +69 -0
  20. data/README.md +122 -0
  21. data/Rakefile +216 -0
  22. data/VERSION +1 -0
  23. data/bin/latexcv.rb +10 -0
  24. data/data/latex_curriculum_vitae/Appendix/Bibliography/bibliography1.bib +61 -0
  25. data/data/latex_curriculum_vitae/Appendix/Certificates/Zertifikat_Sascha_Manns1.pdf +0 -0
  26. data/data/latex_curriculum_vitae/Appendix/Certificates/kompetenzpass12013.pdf +0 -0
  27. data/data/latex_curriculum_vitae/Appendix/Certificates/thm-webeng1.pdf +0 -0
  28. data/data/latex_curriculum_vitae/Appendix/Employers_Reference/Arbeitszeugnisse.pdf +0 -0
  29. data/data/latex_curriculum_vitae/Appendix/Employers_Reference/build.bat +4 -0
  30. data/data/latex_curriculum_vitae/Appendix/Employers_Reference/hays.pdf +0 -0
  31. data/data/latex_curriculum_vitae/Appendix/Employers_Reference/haysnew.pdf +0 -0
  32. data/data/latex_curriculum_vitae/Appendix/Employers_Reference/openslx.pdf +0 -0
  33. data/data/latex_curriculum_vitae/Appendix/Employers_Reference/openslx1.pdf +0 -0
  34. data/data/latex_curriculum_vitae/Appendix/Employers_Reference/test.bat +2 -0
  35. data/data/latex_curriculum_vitae/Appendix/Employers_Reference/wtg.pdf +0 -0
  36. data/data/latex_curriculum_vitae/Appendix/First_References/bsaz.pdf +0 -0
  37. data/data/latex_curriculum_vitae/Appendix/First_References/hsaz.pdf +0 -0
  38. data/data/latex_curriculum_vitae/Appendix/First_References/ihk.pdf +0 -0
  39. data/data/latex_curriculum_vitae/Appendix/Study/foo.pdf +0 -0
  40. data/data/latex_curriculum_vitae/Appendix/Study/zwzils.jpg +0 -0
  41. data/data/latex_curriculum_vitae/Appendix/Study/zwzils.pdf +0 -0
  42. data/data/latex_curriculum_vitae/Cover/Cover.tex +153 -0
  43. data/data/latex_curriculum_vitae/Motivational_Letter/Anschreiben.docx +0 -0
  44. data/data/latex_curriculum_vitae/Motivational_Letter/Anschreiben_MC.pdf +0 -0
  45. data/data/latex_curriculum_vitae/Motivational_Letter/bwanschreiben.tex +199 -0
  46. data/data/latex_curriculum_vitae/Pictures/Sascha1p.jpg +0 -0
  47. data/data/latex_curriculum_vitae/Pictures/arbeitsagentur.png +0 -0
  48. data/data/latex_curriculum_vitae/Pictures/background.jpg +0 -0
  49. data/data/latex_curriculum_vitae/Pictures/background.png +0 -0
  50. data/data/latex_curriculum_vitae/Pictures/signatur.png +0 -0
  51. data/data/latex_curriculum_vitae/Resume/cv_10.aux +41 -0
  52. data/data/latex_curriculum_vitae/Resume/cv_10.bbl +1982 -0
  53. data/data/latex_curriculum_vitae/Resume/cv_10.bcf +2089 -0
  54. data/data/latex_curriculum_vitae/Resume/cv_10.blg +100 -0
  55. data/data/latex_curriculum_vitae/Resume/cv_10.out +0 -0
  56. data/data/latex_curriculum_vitae/Resume/cv_10.pdf +0 -0
  57. data/data/latex_curriculum_vitae/Resume/cv_10.run.xml +86 -0
  58. data/data/latex_curriculum_vitae/Resume/cv_10.tex +440 -0
  59. data/data/latex_curriculum_vitae/Resume/friggeri-cv.cls +327 -0
  60. data/data/latex_curriculum_vitae/Resume/missfont.log +13 -0
  61. data/etc/personal_data.tex +6 -0
  62. data/latex_curriculum_vitae.gemspec +42 -0
  63. data/lib/latex_curriculum_vitae/cover.rb +17 -0
  64. data/lib/latex_curriculum_vitae/cv.rb +26 -0
  65. data/lib/latex_curriculum_vitae/email.rb +62 -0
  66. data/lib/latex_curriculum_vitae/entityfile.rb +65 -0
  67. data/lib/latex_curriculum_vitae/glade/latexcv.glade~ +249 -0
  68. data/lib/latex_curriculum_vitae/notifier.rb +26 -0
  69. data/lib/latex_curriculum_vitae/outfile.rb +35 -0
  70. data/lib/latex_curriculum_vitae/version.rb +24 -0
  71. data/lib/latex_curriculum_vitae.rb +56 -0
  72. data/setup.rb +1296 -0
  73. metadata +276 -0
data/Rakefile ADDED
@@ -0,0 +1,216 @@
1
+ # encoding: utf-8
2
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), 'lib'))
3
+ require File.expand_path(File.join(File.dirname(__FILE__), 'lib', 'latex_curriculum_vitae/version.rb'))
4
+ require 'bundler/gem_tasks'
5
+ require 'rubygems'
6
+
7
+ # Yard Task
8
+ require 'yard'
9
+ desc 'Run yarddoc for the source'
10
+ # rubocop:disable Metrics/LineLength
11
+ YARD::Rake::YardocTask.new do |t|
12
+ t.files = %w('lib/**/*.rb', '-', 'CHANGELOG.md', 'CODE_OF_CONDUCT.md', 'CONTRIBUTING.md', 'MANIFEST', 'LICENSE', 'README.md')
13
+ end
14
+
15
+ require 'fileutils'
16
+ desc 'Prepares for release'
17
+ task :make_release do
18
+ version = LatexCurriculumVitae::Version::STRING
19
+ home = Dir.home
20
+ target = "#{home}/RubymineProjects/saigkill.github.com/_posts"
21
+ time = Time.new
22
+ date = time.strftime('%Y-%m-%d')
23
+
24
+ puts 'Updating MANIFEST'
25
+ system('mast -u && mast -u')
26
+ system('git add MANIFEST')
27
+ puts 'done'
28
+ puts 'Updating workspace'
29
+ system('git add .idea/*')
30
+ system('git commit -m "Updated workspace"')
31
+ puts 'done'
32
+ puts 'Making release'
33
+ system('rake release')
34
+
35
+ FileUtils.cd(target) do
36
+ FileUtils.touch "#{date}-latex_curriculum_vitae-#{version}-released-en.md"
37
+ File.write "#{date}-latex_curriculum_vitae-#{version}-released-en.md", <<EOF
38
+ ---
39
+ layout: post
40
+ title: "latex_curriculum_vitae #{version} - A program for creating an job application"
41
+ description: "It supports creating a application by rendering with LaTEX."
42
+ category: "programming"
43
+ tags: [ruby, opensource, latex_curriculum_vitae, en-US]
44
+ ---
45
+ {% include JB/setup %}
46
+
47
+ # Introduction
48
+ latex_curriculum_vitae is a Ruby based generator for LaTEX job applications:
49
+
50
+ * it asks for the information like jobtitle, contact, company and so far,
51
+ * it generates the resume with a cover,
52
+ * it generates an email with the contacts emailaddress and a predefined text and
53
+ * it saves the informations in a CSV file.
54
+
55
+ # Installation
56
+ If you give it a try just do:
57
+
58
+ gem install latex_curriculum_vitae
59
+ cd /path/to/gem (In case of using RVM ~/.rvm/gems/ruby-2.2.1/gems/latex_curriculum_vitae)
60
+ rake
61
+
62
+ # Dependencies
63
+
64
+ * pdflatex
65
+ * xelatex
66
+ * yad
67
+
68
+ # Using the Gem
69
+
70
+ To use the gem type in the console
71
+
72
+ latexcv.rb
73
+
74
+ or use the launcher.
75
+
76
+ # All Downloads for latex_curriculum_vitae:
77
+ [![downloads-all](https://img.shields.io/gem/dt/latex_curriculum_vitae.svg)](https://rubygems.org/gems/latex_curriculum_vitae)
78
+
79
+ # References
80
+ * Projects home: [https://github.com/saigkill/latex_curriculum_vitae](https://github.com/saigkill/latex_curriculum_vitae)
81
+ * Developer documentation: [http://www.rubydoc.info/gems/latex_curriculum_vitae](http://www.rubydoc.info/gems/latex_curriculum_vitae)
82
+ * Bug reports: [http://saigkill-bugs.myjetbrains.com/youtrack/issues](http://saigkill-bugs.myjetbrains.com/youtrack/issues)
83
+
84
+ # What has be done in this version #{version}?
85
+ * Basic method integration
86
+
87
+ # Donations
88
+ [![latex_curriculum_vitae](https://pledgie.com/campaigns/30094.png?skin_name=chrome)](https://pledgie.com/campaigns/30094)
89
+ [![wishlist](http://tsv-neuss.de/cms/upload/News-Bilder/amazon1.png)](http://www.amazon.de/registry/wishlist/D75HOEQ00BDD)
90
+ EOF
91
+ end
92
+ FileUtils.cd(target) do
93
+ FileUtils.touch "#{date}-latex_curriculum_vitae-#{version}-released-de.md"
94
+ File.write "#{date}-latex_curriculum_vitae-#{version}-released-de.md", <<EOF
95
+ ---
96
+ layout: post
97
+ title: "latex_curriculum_vitae #{version} - Eine Generator für LaTEX Bewerbungen"
98
+ description: "Ein Gem zum generieren von Bewerbungen"
99
+ category: "programming"
100
+ tags: [ruby, opensource, latex_curriculum_vitae, de-DE]
101
+ ---
102
+ {% include JB/setup %}
103
+
104
+ # Introduction
105
+ latex_curriculum_vitae generiert eine Bewerbung mit den folgenden Schritten:
106
+
107
+ * es fragt nach Informationen wie Name des Kontaktes, der Firma usw.,
108
+ * es generiert daraus eine Bewerbungsmappe mit Cover, Lebenslauf und Anhängen,
109
+ * es generiert eine Email mit einem erweiterbaren Standardtext,
110
+ * es trägt die Informationen in eine CSV Tabelle ein.
111
+
112
+ # Installation
113
+ Zur installation genügt ein:
114
+
115
+ gem install latex_curriculum_vitae
116
+ cd /path/to/gem (Falls RVM benutzt wird z.B. ~/.rvm/gems/ruby-2.2.1/gems/latex_curriculum_vitae)
117
+ rake
118
+
119
+ # Abhängigkeiten
120
+
121
+ * pdflatex
122
+ * xelatex
123
+ * yad
124
+
125
+ # Benutzung des Gems
126
+ Geben Sie in der Konsole ein:
127
+
128
+ latexcv.rb
129
+
130
+ oder benutzen Sie den Programmstarter.
131
+
132
+ # Gesamtdownloads für latex_curriculum_vitae:
133
+ [![downloads-all](https://img.shields.io/gem/dt/latex_curriculum_vitae.svg)](https://rubygems.org/gems/latex_curriculum_vitae)
134
+
135
+ # Referenzen
136
+ * Projekthomepage: [https://github.com/saigkill/latex_curriculum_vitae](https://github.com/saigkill/latex_curriculum_vitae)
137
+ * Entwicklerdokumentation: [http://www.rubydoc.info/gems/latex_curriculum_vitae](http://www.rubydoc.info/gems/latex_curriculum_vitae)
138
+ * Bugreports: [http://saigkill-bugs.myjetbrains.com/youtrack/issues](http://saigkill-bugs.myjetbrains.com/youtrack/issues)
139
+
140
+ # Was ist neu in der version #{version}?
141
+ * Basic method integration
142
+
143
+ # Donations
144
+ [![latex_curriculum_vitae](https://pledgie.com/campaigns/29554.png?skin_name=chrome)](https://pledgie.com/campaigns/29554)
145
+ [![wishlist](http://tsv-neuss.de/cms/upload/News-Bilder/amazon1.png)](http://www.amazon.de/registry/wishlist/D75HOEQ00BDD)
146
+ EOF
147
+ end
148
+ puts 'Prepared your Blogpost. Please add the changes of this release'
149
+ puts 'Now ready for social media posting'
150
+
151
+ # Create email to ruby-talk
152
+ space = '%20'
153
+ crlf = '%0D%0A'
154
+ subject = "latex_curriculum_vitae #{version} released"
155
+ subject.gsub!(/ /, "#{space}")
156
+ body = 'Hello Ruby list,' + "#{crlf}" + "#{crlf}" +
157
+ "i would like to announce the latex_curriculum_vitae gem in version #{version}." + "#{crlf}" + "#{crlf}" +
158
+ "What happend in version #{version}?" + "#{crlf}" +
159
+ '* Its the initial release' + "#{crlf}" +
160
+ '* Fixed LCV 1-4' + "#{crlf}" + "#{crlf}" +
161
+ 'What is latex_curriculum_vitae?' + "#{crlf}" + "#{crlf}" +
162
+ 'It is a Ruby based generator for LaTEX job applications. It does:' + "#{crlf}" + "#{crlf}" +
163
+ '* asks for information like jobtitle, contact, company and so far,' + "#{crlf}" +
164
+ '* generates the resume with a cover' + "#{crlf}" +
165
+ '* generates an email with the contacts email address and a predefined text and' + "#{crlf}" +
166
+ '* saves the information in a csv file.' + "#{crlf}" + "#{crlf}" +
167
+ 'Installation:'+ "#{crlf}" + "#{crlf}" +
168
+ ' gem install latex_curriculum_vitae' + "#{crlf}" +
169
+ ' cd /path/to/gem \(In case of using RVM anything like ~/.rvm/gems/ruby-2.2.1/gems/latex_curriculum_vitae\)' + "#{crlf}" + "#{crlf}" +
170
+ ' rake' + "#{crlf}" + "#{crlf}" +
171
+ 'Dependencies:'+ "#{crlf}" + "#{crlf}" +
172
+ '* pdflatex'+ "#{crlf}" +
173
+ '* xelatex' + "#{crlf}" +
174
+ '* yad' + "#{crlf}" + "#{crlf}" +
175
+ 'Using the gem' + "#{crlf}" + "#{crlf}" +
176
+ 'To use the gem just type in the console:' + "#{crlf}" + "#{crlf}" +
177
+ ' latexcv.rb' + "#{crlf}" + "#{crlf}" +
178
+ 'or use the launcher.' + "#{crlf}" + "#{crlf}" +
179
+ 'References:' + "#{crlf}" +
180
+ 'Issue tracker: http://saigkill-bugs.myjetbrains.com/youtrack/issues' + "#{crlf}" +
181
+ 'Home: https://github.com/saigkill/latex_curriculum_vitae' + "#{crlf}" +
182
+ 'Greetings Sascha'
183
+ body.gsub!(/ /, "#{space}")
184
+ system("thunderbird mailto:ruby-talk@ruby-lang.org?subject=#{subject}\\&body=#{body}")
185
+ end
186
+
187
+ require 'etc'
188
+ require 'fileutils'
189
+ desc 'Create Desktop files'
190
+ task :create_desktop do
191
+ prefix = "#{Dir.home}/.rvm/rubies/default"
192
+ datadir = "#{prefix}/share"
193
+ desktopfile = "#{Dir.home}/.local/share/applications/latex_curriculum_vitae.desktop"
194
+ FileUtils.touch(desktopfile)
195
+ File.write "#{desktopfile}", <<EOF
196
+ [Desktop Entry]
197
+ Version=1.0
198
+ Type=Application
199
+ Name=Job-Application Creator
200
+ Exec=latexcv.rb
201
+ Icon="#{datadir}/latex_curriculum_vitae/Pictures/arbeitsagentur.png"
202
+ EOF
203
+ end
204
+
205
+ desc 'Setup'
206
+ task :setup do
207
+ system('./setup uninstall --force')
208
+ system('./setup.rb config')
209
+ system('./setup.rb install')
210
+ end
211
+
212
+ desc 'Run release & deployment'
213
+ task :default => [:setup, :create_desktop] do
214
+ puts 'Finished Setup'.color(:green)
215
+ end
216
+
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.1
data/bin/latexcv.rb ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+ # Binary for latex_curriculum_vitae
3
+
4
+ # Dependencies
5
+ require 'rubygems'
6
+ require 'latex_curriculum_vitae.rb'
7
+ require 'bundler/setup'
8
+ require 'setup/command'
9
+
10
+ IRB.start
@@ -0,0 +1,61 @@
1
+ @article{bib.ds.datenbrief,
2
+ address = {Berlin},
3
+ author = {Manns, Sascha and others},
4
+ issn = {0930-1054},
5
+ journal = {Die Datenschleuder},
6
+ number = {94},
7
+ organization = {Chaos Computer Club},
8
+ pages = {37},
9
+ publisher = {Chaos Computer Club},
10
+ title = {{Praxis Dr. Datenbrief - Ein Selbstversuch}},
11
+ url = {http://ds.ccc.de/pdfs/ds094.pdf},
12
+ year = {2010}
13
+ }
14
+
15
+ @book{bib.hb.openslx,
16
+ address = {N\"{u}rnberg},
17
+ author = {Manns, Sascha and K\"{o}ke, Jens and others},
18
+ howpublished = {Boxprodukt},
19
+ organization = {open-slx GmbH},
20
+ publisher = {open-slx GmbH},
21
+ title = {{Startup Guide f\"{u}r Balsam Professional}},
22
+ url = {http://d-nb.info/1016808844},
23
+ year = {2011}
24
+ }
25
+
26
+ @book{bib.hb.pactive,
27
+ address = {Mayen},
28
+ author = {Manns, Sascha and others},
29
+ isbn = {978-1-291-57705-1},
30
+ publisher = {Sascha Manns},
31
+ title = {{Plasma Active 4 Handbook}},
32
+ url = {http://d-nb.info/1042698783},
33
+ year = {2013}
34
+ }
35
+
36
+ @misc{bib.misc.slx,
37
+ author = {Manns, Sascha and others},
38
+ bookauthor = {Manns, Sascha and others},
39
+ editor = {Manns, Sascha},
40
+ editora = {Manns, Sascha},
41
+ issn = {2195-5344},
42
+ location = {N\"{u}rnberg},
43
+ publisher = {open-slx GmbH},
44
+ title = {{open-slx Weekly News}},
45
+ url = {http://openslxowr.sourceforge.net},
46
+ urldate = {2013/11/03},
47
+ year = {2012-2013}
48
+ }
49
+
50
+ @misc{bib.misc.opensusewn,
51
+ author = {Manns, Sascha and others},
52
+ bookauthor = {others},
53
+ editor = {Manns, Sascha},
54
+ location = {Mayen},
55
+ publisher = {openSUSE Project},
56
+ title = {{openSUSE Weekly News}},
57
+ url = {http://news.opensuse.org/tag/newsletter/},
58
+ urldate = {2013/11/03},
59
+ year = {2009-2011}
60
+ }
61
+
@@ -0,0 +1,4 @@
1
+ set PATH=%PATH%;E:\Program Files\gs\gs9.14\bin;E:\Program Files\gs\gs9.14\lib
2
+ echo "Baue Verzeichnis Arbeitszeugnisse"
3
+ gswin64c -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress -sOutputFile=Arbeitszeugnisse.pdf haysnew.pdf openslx.pdf openslx1.pdf wtg.pdf
4
+ echo "Verzeichnis Arbeitszeugnisse abgeschlossen"
@@ -0,0 +1,2 @@
1
+ set PATH=%PATH%;E:\Program Files\gs\gs9.14\bin;E:\Program Files\gs\gs9.14\lib
2
+ gswin64c -o wtgn.pdf -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress wtg.pdf
@@ -0,0 +1,153 @@
1
+ \documentclass[a4paper,11pt]{scrartcl}
2
+ %
3
+ % -------------------------------------------------
4
+ % character encoding
5
+ % -------------------------------------------------
6
+ \usepackage[ngerman]{babel}
7
+ \usepackage[T1]{fontenc}
8
+ \usepackage[utf8]{inputenc}
9
+ \usepackage{lmodern}
10
+ \usepackage{marvosym}
11
+ \usepackage{graphicx}
12
+ \usepackage{color}
13
+ %
14
+ \pagestyle{empty}
15
+ %
16
+ % -------------------------------------------------
17
+ % adjust the page margins
18
+ % -------------------------------------------------
19
+ \usepackage[scale=1]{geometry}
20
+ \setlength{\parindent}{0pt}
21
+ \addtolength{\parskip}{0pt}
22
+ \setlength{\footskip}{0pt}
23
+ \setlength{\headheight}{15pt}
24
+ \setlength{\topskip}{0pt}
25
+ %
26
+ % -------------------------------------------------
27
+ % Positioning the text elements
28
+ % -------------------------------------------------
29
+ \usepackage[absolute]{textpos}
30
+ \setlength{\TPHorizModule}{1cm}
31
+ \setlength{\TPVertModule}{\TPHorizModule}
32
+ %
33
+ % -------------------------------------------------
34
+ % personal data
35
+ % -------------------------------------------------
36
+ \input{$HOME/.latex_curriculum_vitae/personal_data.tex}
37
+ %
38
+ % -------------------------------------------------
39
+ % Firmendaten <<-------------------------------
40
+ % -------------------------------------------------
41
+ %\newcommand*{\CommonRubyPath}{/home/sascha/}%
42
+ \input{$HOME/.latex_curriculum_vitae/entity.tex}
43
+ %
44
+ %
45
+ % -------------------------------------------------
46
+ % Font
47
+ % -------------------------------------------------
48
+ %\renewcommand{\ttdefault}{pcr}
49
+ %\renewcommand{\ttdefault}{Latin Modern}
50
+ %
51
+ % -------------------------------------------------
52
+ % Aus der moderncvstylecasual.sty:
53
+ % -------------------------------------------------
54
+ \definecolor{blau}{rgb}{0.20,0.40,0.65}
55
+ \definecolor{hellblau}{rgb}{0.25,0.50,0.75}
56
+ \definecolor{orange}{rgb}{0.95,0.55,0.15}
57
+ %\definecolor{gruen}{rgb}{0.30,0.65,0.15}
58
+ \definecolor{gruen}{rgb}{0.35,0.70,0.30}
59
+ \definecolor{rot}{rgb}{0.95,0.20,0.20}
60
+ \definecolor{dunkelgrau}{rgb}{0.35,0.35,0.35}
61
+ \definecolor{hellgrau}{rgb}{0.45,0.45,0.45}
62
+ \definecolor{schwarz}{rgb}{0,0,0}
63
+ \definecolor{gray}{rgb}{0.77,0.77,0.77}
64
+ \definecolor{white}{rgb}{0.255,0.255,0.255}
65
+ \newcommand*{\firstnamefont}{\fontsize{25}{27}\sffamily\mdseries\upshape}
66
+ \newcommand*{\familynamefont}{\firstnamefont}
67
+ \newcommand*{\titel}{\fontsize{25}{27}\mdseries\upshape}
68
+ \newcommand*{\inhalt}{\fontsize{15}{17}\mdseries\upshape}
69
+ %
70
+ \begin{document}
71
+ \sffamily
72
+ %
73
+ % -------------------------------------------------
74
+ % Titel
75
+ % -------------------------------------------------
76
+ \begin{textblock}{10}(3,5)
77
+ \color{schwarz}{
78
+ \bfseries \begin{Large}\titel{Bewerbungsunterlagen} \\
79
+ %2nd Level IT-Support
80
+ \end{Large}}
81
+ \end{textblock}
82
+ %
83
+ % -------------------------------------------------
84
+ % Ansprechpartner
85
+ % -------------------------------------------------
86
+ \begin{textblock}{10}(3,6)
87
+ \color{schwarz}
88
+ \begin{Large}
89
+ für die \company \\
90
+ als \\
91
+ \textbf{\jobtitle}
92
+ \end{Large}
93
+ \end{textblock}
94
+ %
95
+ % -------------------------------------------------
96
+ % Inhaltsverzeichnis
97
+ % -------------------------------------------------
98
+ \begin{textblock}{10}(3,10)
99
+ \color{schwarz}{\inhalt{Anlagen:
100
+ \begin{itemize}\setlength{\itemsep}{-2pt}
101
+ \item Lebenslauf
102
+ \item Zwischenzeugnis des Studiums
103
+ \item Arbeitszeugnisse \& Zertifikate
104
+ \item Abschlusszeugnisse
105
+ \end{itemize}
106
+ }}
107
+ \end{textblock}
108
+ %
109
+ % -------------------------------------------------
110
+ % Vertikaler Strich
111
+ % -------------------------------------------------
112
+ \begin{textblock}{1}(13.5,0)
113
+ \color{hellblau}{\vrule width 45.5ex depth 1\textheight}
114
+ \end{textblock}
115
+
116
+ % -------------------------------------------------
117
+ % Horizontaler Strich
118
+ % -------------------------------------------------
119
+ %\begin{textblock}{10}(0,4)
120
+ % %\color{hellgrau}{\hlinefill}%
121
+ % \color{hellgrau}\rule{1.35\textwidth}{15ex}
122
+ %\end{textblock}
123
+ %
124
+ % -------------------------------------------------
125
+ % Passfoto
126
+ % -------------------------------------------------
127
+ \begin{textblock}{3}(3.0,18.5)
128
+ \fbox{\includegraphics[width=4cm]{../Pictures/Sascha1p.jpg}}
129
+ \end{textblock}
130
+ %
131
+ % -------------------------------------------------
132
+ % Anschrift
133
+ % -------------------------------------------------
134
+ \begin{textblock}{4.8}(14,25)
135
+ \begin{flushleft}
136
+ \vspace{-3.5cm}
137
+ \color{schwarz}{\bfseries \begin{Large}\firstnamefont{{\firstname}}~\familynamefont{{\familyname}}\end{Large}}\\[.35ex]
138
+ \small\itshape%
139
+ {\mystreet\\
140
+ \mycity\\[.35ex]
141
+ \Telefon~\myphone\\
142
+ \Letter~{\myemail}}
143
+ \end{flushleft}
144
+ \end{textblock}
145
+ %
146
+ % -------------------------------------------------
147
+ % Hintergrundbild
148
+ % -------------------------------------------------
149
+ % \begin{textblock}{13.5}(0,0)
150
+ % \includegraphics[width=13.5cm, height=\textheight]{background.png}
151
+ % \end{textblock}
152
+ %
153
+ \end{document}