We accept submissions in LibreOffice or MicroSoft Word but strongly prefer LaTeX submissions. […] Word to LaTeX conversion is the most expensive part of our way to produce books, so authors can help this project by learning LaTeX. It will improve their workflow and the quality of their work.
WYSIWYG: What You See Is What You Get
WYSIWYM: What You See Is What You Mean
XML-basierte Auszeichnungssprachen:
Für Mathematiker, Ingenieure und Naturwissenschaftler: LaTeX
<?xml version="1.0" encoding="UTF-8"?>
<book xml:id="simple_book" xmlns="http://docbook.org/ns/docbook"
version="5.0">
<title>Die Welt</title>
<chapter xml:id="chapter_1">
<title>Das Hallo</title>
<para>Hallo Welt!</para>
</chapter>
</book>
\documentclass{article}
\begin{document}
Hallo Welt!
\end{document}
Hallo Welt!
(engl. lightweight markup languages)
digraph format_converters {
HTML -> {DokuWiki Kwiki MediaWiki MoinMoin Oddmuse PhpWiki PmWiki SnipSnap
TikiWiki UseMod WakkaWiki WikkaWiki} [label=html2wiki, color=yellow];
DocBook -> {EPUB FO HTML MAN MIF PCL PDF PS SVG TXT} [label=xmlto, color=violet];
FO -> {MIF PCL PDF PS SVG TXT} [label=xmlto, color=violet];
HTML -> {FO MIF PCL PDF PS SVG TXT} [label=xmlto, color=violet];
RST -> HTML [label="sphinx", color=green];
Markdown -> HTML [label="jekyll", color=blue];
{MOBI LIT PRC EPUB ODT HTML CBR CBZ RTF TXT PDF LRS} -> {LRF EPUB} [label="calibre", color=brown];
ORG -> {FreeMind HTML DocBook LaTeX Markdown} [label="org", color=orange];
{Markdown RST DocBook TEXTILE HTML LaTeX} -> {HTML HTML5 S5 SLIDY SLIDEOUS DZSLIDES DocBook LaTeX Beamer MAN Markdown RST MEDIAWIKI TEXTILE RTF ORG AsciiDoc ODT DOCX EPUB} [label="pandoc", color=black];
}
http://daringfireball.net/projects/markdown/
Markdown is a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML).
Programmcode
, Markdown is a fantastic and minimalist tool for authoring scientific documents. This repository is a collection of tools, resources, and tutorials to simplfy your workflow. If you spend a little time going through the tutorials you'll be able to stop using Microsoft Word entirely and write clean, lightweight markdown files that can easily be version controlled by git. Collaboration with your coauthors would also become way more powerful and simpler.
statische, seitenorientierte(!) Dokumente sind im Web nicht sinnvoll
Nachnutzung kaum möglich
"enhanced publications", "article of the future"
Publikationen <--> Forschungsdaten
Europe PMC Zitationen für den Artikel
Rosso MG, Li Y, Strizhov N, Reiss B, Dekker K, Weisshaar B. An Arabidopsis thaliana T-DNA mutagenized population (GABI-Kat) for flanking sequence tag-based reverse genetics. Plant Molecular Biology. 2003;53(1):247–259. PMID: 14756321
install.packages("devtools")
require(devtools)
install_github("rebi", "ropensci")
require(rebi)
my.data <- getcitations(id = "14756321")
Die Funktion getcitations.r
liefert folgende Felder
## [1] "id" "source" "citationType"
## [4] "title" "authorString" "journalAbbreviation"
## [7] "pubYear" "volume" "issue"
## [10] "pageInfo" "citedByCount" "text"
## [13] "issn"
plot(my.data$pubYear)
rev(sort(table(my.data$journalAbbreviation)))[1:5]
##
## Plant J. Planta
## 55 13
## Plant Mol. Biol. Proc. Natl. Acad. Sci. U.S.A.
## 13 12
## Plant Cell Physiol.
## 11
1· Sämtlicher Text, der nicht innerhalb der folgenden Bezeichner verfasst wird, wird wie in der Eingabe ausgegeben
2· R-Anweisungen innerhalb von <%
und %>
werden ausgeführt
<%
2 + 3
%>
3· Werte der Funktion innerhalb von <%=
und %>
werden ausgegeben
## [1] 5
Konvertierung
library(brew)
brew("input.md", "output.md")