Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
e3bbe361c7 | ||
![]() |
209bcc94ff | ||
![]() |
b4e9f42180 | ||
![]() |
68a1398c1b |
18
Makefile
18
Makefile
@ -3,11 +3,23 @@
|
|||||||
LATEX_OPTIONS=--template pandoc-artikel-template.tex
|
LATEX_OPTIONS=--template pandoc-artikel-template.tex
|
||||||
HTML_OPTIONS=--template pandoc-artikel-template.html
|
HTML_OPTIONS=--template pandoc-artikel-template.html
|
||||||
|
|
||||||
|
# PDF-Seitenlayout
|
||||||
|
# Siehe <https://en.wikibooks.org/wiki/LaTeX/Page_Layout>
|
||||||
|
# und <http://johnmacfarlane.net/pandoc/demo/example9/templates.html>
|
||||||
|
|
||||||
|
LATEX_OPTIONS+=-V fontfamily=arev
|
||||||
|
LATEX_OPTIONS+=-V fontsize=12pt
|
||||||
|
LATEX_OPTIONS+=-V papersize=a4paper
|
||||||
|
LATEX_OPTIONS+=-V documentclass=article
|
||||||
|
LATEX_OPTIONS+=-V headheight=0.8cm
|
||||||
|
LATEX_OPTIONS+=-V top=2cm -V bottom=2cm -V left=2cm -V right=2cm
|
||||||
|
LATEX_OPTIONS+=-V endnotes=1
|
||||||
|
|
||||||
.md.html:
|
.md.html:
|
||||||
pandoc -s -S -t html5 $(HTML_OPTIONS) -o $@ $<
|
cat $(patsubst %.md,%.yml,$<) $< | pandoc -s -S -t html5 $(HTML_OPTIONS) -o $@ -
|
||||||
|
|
||||||
.md.tex:
|
.md.tex:
|
||||||
pandoc -s -S -t latex $(LATEX_OPTIONS) -o $@ $<
|
cat $(patsubst %.md,%.yml,$<) $< | pandoc -s -S -t latex $(LATEX_OPTIONS) -o $@ -
|
||||||
|
|
||||||
.md.pdf:
|
.md.pdf:
|
||||||
pandoc -s -S $(LATEX_OPTIONS) -o $@ $<
|
cat $(patsubst %.md,%.yml,$<) $< | pandoc -s -S $(LATEX_OPTIONS) -o $@ -
|
||||||
|
@ -3,3 +3,12 @@ Dieses git-Repository enthält Vorlagen für Artikel der Fachzeitschrift
|
|||||||
Konvertierung der Artikel nach HTML und PDF.
|
Konvertierung der Artikel nach HTML und PDF.
|
||||||
|
|
||||||
Die Konvertierung benötigt das Program [Pandoc](johnmacfarlane.net/pandoc/).
|
Die Konvertierung benötigt das Program [Pandoc](johnmacfarlane.net/pandoc/).
|
||||||
|
|
||||||
|
Der Inhalt der Vorlage befindet sich in Markdown-Syntax in der Datei
|
||||||
|
`vorlage.md` und die dazugehörigen Metadaten in der Datei `vorlage.yml`.
|
||||||
|
|
||||||
|
Unter einem Unix-System mit LaTeX und Pandoc lässt sich die Vorlage
|
||||||
|
folgendermaßen nach HTML und PDF konvertieren:
|
||||||
|
|
||||||
|
make vorlage.html vorlage.pdf
|
||||||
|
|
||||||
|
@ -43,9 +43,84 @@ $endif$
|
|||||||
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
|
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
|
||||||
% use microtype if available
|
% use microtype if available
|
||||||
\IfFileExists{microtype.sty}{\usepackage{microtype}}{}
|
\IfFileExists{microtype.sty}{\usepackage{microtype}}{}
|
||||||
$if(geometry)$
|
|
||||||
\usepackage[$for(geometry)$$geometry$$sep$,$endfor$]{geometry}
|
%%% Seitenlayout
|
||||||
|
\usepackage[
|
||||||
|
includeheadfoot,
|
||||||
|
top=$top$,
|
||||||
|
bottom=$bottom$,
|
||||||
|
left=$left$,
|
||||||
|
right=$right$,
|
||||||
|
headheight=$headheight$,
|
||||||
|
headsep=\dimexpr$top$-$headheight$\relax
|
||||||
|
]{geometry}
|
||||||
|
|
||||||
|
\usepackage{fancyhdr}
|
||||||
|
\pagestyle{fancy}
|
||||||
|
% Kopfzeile
|
||||||
|
\renewcommand{\headrulewidth}{0pt}
|
||||||
|
\lhead{$for(author)$$author.name$$sep$ \and $endfor$: $title$}
|
||||||
|
\rhead{\textbf{$year$} / $issue$}
|
||||||
|
% Fußzeile
|
||||||
|
\lfoot{
|
||||||
|
\small \href{http://www.informationspraxis.de}{\underline{www.informationspraxis.de}}
|
||||||
|
}
|
||||||
|
\cfoot{}
|
||||||
|
% TODO: Creative Commons
|
||||||
|
\rfoot{\thepage}
|
||||||
|
% Titel von Tabellen und Abbildungen
|
||||||
|
\usepackage[small,figurename=Abbildung,tablename=Tabelle]{caption}
|
||||||
|
% Titelseite
|
||||||
|
\fancypagestyle{plain}{
|
||||||
|
\lhead{LOGO}
|
||||||
|
}
|
||||||
|
\makeatletter
|
||||||
|
\renewcommand\@maketitle{
|
||||||
|
% TODO: affiliation, email, ...
|
||||||
|
{\bfseries $for(author)$$author.name$$sep$, $endfor$ \par}
|
||||||
|
{\Large {\bfseries {\@title}} \par}
|
||||||
|
|
||||||
|
Zusammenfassung
|
||||||
|
|
||||||
|
...
|
||||||
|
|
||||||
|
Schlüsselwörter
|
||||||
|
|
||||||
|
...
|
||||||
|
|
||||||
|
{\large {\bfseries $title-en$} \par}
|
||||||
|
|
||||||
|
Abstract
|
||||||
|
|
||||||
|
...
|
||||||
|
|
||||||
|
Keywords
|
||||||
|
|
||||||
|
...
|
||||||
|
|
||||||
|
Classification: ...
|
||||||
|
}
|
||||||
|
|
||||||
|
$if(endnotes)$
|
||||||
|
\usepackage{endnotes}
|
||||||
|
\let\footnote\endnote
|
||||||
|
|
||||||
|
%Linie statt "Anmerkungen"
|
||||||
|
%\def\enoteheading{\par\kern2\baselineskip%
|
||||||
|
%\footnoterule%
|
||||||
|
%\kern1\baselineskip}
|
||||||
|
% subsection statt section
|
||||||
|
\def\enoteheading{\subsection*{\notesname
|
||||||
|
\@mkboth{\MakeUppercase{\notesname}}{\MakeUppercase{\notesname}}}%
|
||||||
|
\mbox{}\par\vskip-\baselineskip}
|
||||||
|
\def\notesname{Anmerkungen}
|
||||||
|
\def\enotesize{\normalsize}
|
||||||
$endif$
|
$endif$
|
||||||
|
%\renewcommand\maketitle{%
|
||||||
|
%}
|
||||||
|
%%%
|
||||||
|
\makeatother
|
||||||
|
|
||||||
$if(natbib)$
|
$if(natbib)$
|
||||||
\usepackage{natbib}
|
\usepackage{natbib}
|
||||||
\bibliographystyle{$if(biblio-style)$$biblio-style$$else$plainnat$endif$}
|
\bibliographystyle{$if(biblio-style)$$biblio-style$$else$plainnat$endif$}
|
||||||
@ -134,9 +209,7 @@ $endif$
|
|||||||
$if(subtitle)$
|
$if(subtitle)$
|
||||||
\subtitle{$subtitle$}
|
\subtitle{$subtitle$}
|
||||||
$endif$
|
$endif$
|
||||||
$if(author)$
|
|
||||||
\author{$for(author)$$author$$sep$ \and $endfor$}
|
\author{$for(author)$$author$$sep$ \and $endfor$}
|
||||||
$endif$
|
|
||||||
$if(date)$
|
$if(date)$
|
||||||
\date{$date$}
|
\date{$date$}
|
||||||
$endif$
|
$endif$
|
||||||
@ -184,6 +257,23 @@ $if(biblatex)$
|
|||||||
\printbibliography$if(biblio-title)$[title=$biblio-title$]$endif$
|
\printbibliography$if(biblio-title)$[title=$biblio-title$]$endif$
|
||||||
|
|
||||||
$endif$
|
$endif$
|
||||||
|
|
||||||
|
$if(endnotes)$
|
||||||
|
\theendnotes
|
||||||
|
$endif$
|
||||||
|
|
||||||
|
% \hrulefill
|
||||||
|
\subsection*{AutorInnen}
|
||||||
|
|
||||||
|
$for(author)$
|
||||||
|
$author.name$$if(author.email)$,$author.email$$endif$
|
||||||
|
|
||||||
|
$if(author.affiliation)$$author.affiliation$$if(author.address)$,$endif$$endif$$if(author.address)$$author.address$$endif$
|
||||||
|
|
||||||
|
$if(author.url)$ \url{$author.url$}$endif$
|
||||||
|
|
||||||
|
$endfor$
|
||||||
|
|
||||||
$for(include-after)$
|
$for(include-after)$
|
||||||
$include-after$
|
$include-after$
|
||||||
|
|
||||||
|
120
vorlage.md
Normal file
120
vorlage.md
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
Einleitung
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
Diese Vorlage ist **nicht aktuell** und dient lediglich als Platzhalter!
|
||||||
|
|
||||||
|
Text hier. Und hier ist ein in eigenen Worten wiedergegebenes Zitat.
|
||||||
|
(vgl. AutorIn & AutorIn, 2009). Text hier. Text hier. Text hier. Pro
|
||||||
|
Kapitel mind. eine halbe Seite. Text hier. Text hier.
|
||||||
|
|
||||||
|
<!---->
|
||||||
|
|
||||||
|
Abb. 1: Titel Abbildung 1 (normale Option)
|
||||||
|
|
||||||
|
Siehe [Einleitung](#einleitung)
|
||||||
|
|
||||||
|
2 Überschrift 1. Ebene {.c0 .c19}
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
Text hier. Text hier. Text hier. “Ein wörtliches Zitat soll sehr sparsam
|
||||||
|
eingesetzt werden.” (NAME, Name & NAME, 2014) Text hier. Text hier. Text
|
||||||
|
hier. Text hier.1
|
||||||
|
|
||||||
|
<!---->
|
||||||
|
|
||||||
|
Abb. 2: Titel Abbildung 2 (Option für breite Abbildungen)
|
||||||
|
|
||||||
|
Text hier. Text hier. Text hier. Text hier. Text hier. Text hier. Text
|
||||||
|
hier. Text hier. Text hier. Text hier. Text hier. Text hier. Text hier.
|
||||||
|
Text hier. Text hier. Text hier. Text hier. Text hier. Text hier. Text
|
||||||
|
hier. Text hier. Text hier. Text hier. Text hier. Text hier. Text hier.
|
||||||
|
Text hier. Text hier. Text hier. Text hier.
|
||||||
|
|
||||||
|
### 2.1 Überschrift 2. Ebene {.c0 .c22}
|
||||||
|
|
||||||
|
Text hier. Text hier. Text hier. Text hier. Text hier. Text hier. Text
|
||||||
|
hier. Text hier. Text hier. Text hier. Text hier. Text hier. Text hier.
|
||||||
|
Text hier. Text hier.Text hier. Text hier. Text hier. Text hier. Text
|
||||||
|
hier. Text hier. Text hier. Text hier. Text hier. Text hier. Text hier.
|
||||||
|
Text hier. Text hier. Text hier. Text hier.^[Eine Fußnote. So wenige wie
|
||||||
|
möglich verwenden]
|
||||||
|
|
||||||
|
### 2.2 Überschrift 2. Ebene {.c0 .c22}
|
||||||
|
|
||||||
|
Text hier. Text hier. Hervorhebungen sparsamund immer nur kursiv
|
||||||
|
einsetzen. Text hier. Text hier. Text hier. Text hier. Text hier. Text
|
||||||
|
hier. Text hier. Text hier.Text hier. Text hier. Text hier. Text hier.
|
||||||
|
Text hier. Text hier.^[Leider funktionieren bei Google keine Endnoten, aber
|
||||||
|
das wäre unsere Empfehlung für die eingereichten Artikel]
|
||||||
|
Verwenden Sie nicht die
|
||||||
|
automatisierten Aufzählungen Ihres Textprogrammes. Aufzählungszeichen
|
||||||
|
Minus Leerzeichen Text der Aufzählung.\
|
||||||
|
|
||||||
|
- Liste
|
||||||
|
|
||||||
|
- Liste
|
||||||
|
|
||||||
|
- Liste
|
||||||
|
|
||||||
|
Text hier. Text hier. Text hier. Text hier. Text hier. Text hier. Text
|
||||||
|
hier. Text hier. Text hier. Text hier. Text hier. Text hier. Text hier.
|
||||||
|
Text hier. Text hier.Text hier. Text hier. Text hier. Text hier. Text
|
||||||
|
hier. Text hier.
|
||||||
|
|
||||||
|
+--------------------+--------------------+--------------------+--------------------+
|
||||||
|
| Spalte 1 | Spalte 2 | Spalte 3 | Spalte 4 |
|
||||||
|
+--------------------+--------------------+--------------------+--------------------+
|
||||||
|
| Zeile 2 | 123,45 | 17,2 | 1232,23 |
|
||||||
|
+--------------------+--------------------+--------------------+--------------------+
|
||||||
|
| Zeile 3 | 56,78 | - | 189,9 |
|
||||||
|
+--------------------+--------------------+--------------------+--------------------+
|
||||||
|
| Zeile 4 | 198 | 67,325 | 789567,03 |
|
||||||
|
+--------------------+--------------------+--------------------+--------------------+
|
||||||
|
|
||||||
|
:Wahllos eingegebene Zahlen und ein Minuszeichen
|
||||||
|
|
||||||
|
#### 2.2.1 Überschrift 3. Ebene {.c0 .c16}
|
||||||
|
|
||||||
|
Text hier. Text hier. Text hier. Text hier. Text hier. Text hier. Text
|
||||||
|
hier. Text hier. Text hier. Text hier. Text hier. Text hier. Text hier.
|
||||||
|
Text hier. Text hier.Text hier. Text hier. Text hier. Text hier. Text
|
||||||
|
hier. Text hier. Verwenden Sie nicht die automatisierten nummerierten
|
||||||
|
Listen Ihres Textprogrammes.
|
||||||
|
|
||||||
|
1.Nummerierte Liste
|
||||||
|
|
||||||
|
2.Nummerierte Liste
|
||||||
|
|
||||||
|
3.Nummerierte Liste
|
||||||
|
|
||||||
|
#### 2.2.2 Überschrift 3. Ebene {.c0 .c16}
|
||||||
|
|
||||||
|
Text hier. Text hier. Text hier. Text hier. Text hier. Text hier. Text
|
||||||
|
hier. Text hier. Text hier. Text hier. Text hier. Text hier. Text hier.
|
||||||
|
Text hier. Text hier.Text hier. Text hier. Text hier. Text hier. Text
|
||||||
|
hier. Text hier.
|
||||||
|
|
||||||
|
#### 2.2.2.1 Überschrift 4. Ebene {.c0 .c16}
|
||||||
|
|
||||||
|
Text hier. Text hier. Text hier. Text hier. Text hier. Text hier. Text
|
||||||
|
hier. Text hier. Text hier. Text hier. Text hier. Text hier. Text hier.
|
||||||
|
Text hier. Text hier.Text hier. Text hier. Text hier. Text hier. Text
|
||||||
|
hier. Text hier.^[[a]](#cmnt1)^
|
||||||
|
|
||||||
|
3 Quellen {.c0 .c19}
|
||||||
|
---------
|
||||||
|
|
||||||
|
Nachname, Vorname (xx. Jan. 2012): Titel: Untertitel[online]. Zugriff
|
||||||
|
am: 10. Aug. 2014]. Verfügbar unter:
|
||||||
|
http://www.adresse.de/titel/name\_name\_titel\_name/
|
||||||
|
|
||||||
|
Nachname, Vorname (2009): Titel des unselbständigen Werkes. In:
|
||||||
|
Nachname, Vorname und Nachname, Vorname, Hg.: Der Titel des
|
||||||
|
selbständigen Titels. Ort: Verlag, S. von-bis
|
||||||
|
|
||||||
|
Nachname, Vorname Vorn. (2013): Titel: Untertitel. Ort: Verlag.
|
||||||
|
|
||||||
|
Nachname, Vorname, Nachname, Vorname & Nachname, Vorname (2010). Titel
|
||||||
|
des Artikels. In: Titel des Journals109, 2, S. 16–26. [Zugriff am 10.
|
||||||
|
Aug. 2014]. DOI: http://dx.doi.org/10.2403/jo.nam.2010.07.008.
|
||||||
|
|
16
vorlage.yml
Normal file
16
vorlage.yml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: Deutscher Titel
|
||||||
|
title-en: English title
|
||||||
|
year: 2014
|
||||||
|
issue: 1?
|
||||||
|
author:
|
||||||
|
- name: Vorname Nachname
|
||||||
|
email: vorname@email.tld
|
||||||
|
url: http://example.org/
|
||||||
|
- name: Vorname Nachname
|
||||||
|
email: vorname@email.tld
|
||||||
|
abstract: ...
|
||||||
|
keywords: ...
|
||||||
|
keywords-de: ...
|
||||||
|
jita: ...
|
||||||
|
...
|
Loading…
x
Reference in New Issue
Block a user