I just published my intro to morphology (Einführung in die Morphologie, in German). It starts out from the idea of the morphological cycle, which suggests that languages move through stages of isolating, agglutinating and fusional morphology, and uses this idea to introduce basic concepts of morphology, including inflection, derivation, paradigms, and different types and degrees of synthesis.
With my colleagues Ingo Plag and Jessica Nieder, we’re organizing a workshop on Morphological Variation at the upcoming DGfS in Mainz. I’m looking forward to reading the submitted abstracts!
I’m excited to be a regional editor for Open Text Collections! We’re aiming to publish curated, thematically consistent sets of interlinear glossed texts from a wide range of languages, and I’m looking forward to new submissions.
It was great to be at APLL this year. It’s one of my favourite conferences and this instalment in Amsterdam was great fun, with lots of interesting new data from Austronesian and Papuan languages.
My talk was mostly a toolkit for studying TAM expressions in Melanesia and beyond.
My proposal for a project on Oceanic Word Units was recently approved by the German Research Society! We’ll start in 2024, but I’m already excited and looking forward to diving into vowel harmony, clitics, and the morphosyntax of subject markers. You can read the proposal here.
I regularly go a little overboard when designing puzzles for the German Olympiad of Linguistics, but for one of this year’s puzzles, I really outnerded myself. I designed a True Type Font for the writing system Afaka, which was developed for the creole language Ndyuka. It was conceived in 1910 by Afáka Atumisi and is named after its inventor. It’s a syllabary, partially based on a rebus system.
For example, the symbol representing the syllable /fo/ shows four vertical lines. And there is an Afaka word pronounced “fo”, which means “four” (yes, it’s cognate with the English word).
There is a preliminary Unicode sheet with codes, but the writing system hasn’t been fully developed and codified so far. Accordingly, my font is also only a preliminary solution to writing Ndyuka in Afaka script. But it’s great for playing around, and designing puzzles! You can download the font here.
I used to plot my typological language data to geo-spatial maps with Generic Mapping Tools, which is awesome, and where a simple two-liner will do the job. But I found this hard to use in teaching, since it doesn’t run smoothly on everyone’s operating system. So it’s time for me to move on and learn to do maps with R. There are a few awesome resources out there, including lingtypology, which reads data directly off glottolog.
But I wanted to plot data that is not included in a database, and since it’s actually easy, but not entirely trivial to find on the internet so far, here’s a short tutorial. First of all, here is our little data set, with geo-spatial coordinates for each language, language family and basic word order info. Save this to a text file in your working directory with the name “typology.txt”.
Read in your map data and your language coordinates and save them to short variables like “map” and “df” (for data frame).
df <- read.csv("typology.txt")
head(df) #shows you the beginning of the data, good for trouble shooting
map <- map_data("world")
In order to plot your language coordinates with additional information about language families, do this:
#family
ggplot() +
geom_polygon(data = map, aes(x = long, y = lat, group=group), fill="#dddddd") + #plots the world map in the background in light grey
geom_point(data = df, aes(x = Longitude, y = Latitude, fill = factor(Family)), shape=21, size=3) + #plots the language coordinates
theme_minimal()+ #fewer embellishments
coord_sf()+ #nice proportions
scale_fill_viridis_d(option = "plasma")+ #color scheme
labs(fill = "Family", y="",x="") #labels
To get information about word order patterns, instead use this:
#word order
ggplot() +
geom_polygon(data = map, aes(x = long, y = lat, group = group), fill="#dddddd") +
geom_point(data = df, aes(x = Longitude, y = Latitude, fill = factor(Word.order)), shape=21, size=3) +
theme_minimal()+
coord_sf()+
scale_fill_viridis_d(option = "plasma")+
labs(fill = "Word Order", y="",x="")
And since newbies sometimes use my tutorials: If you don’t understand something here, don’t give up, google it! Everyone does it, and most questions you might have, have already been asked and answered by someone somewhere.
I gave a talk at the awesome linguistics department in Cologne, with a few more thoughts about wordhood in Daakaka.
I was also invited to the phenomenal UT Texas (which curiously expands to University of Texas at Austin) department of linguistics, which combines two of my favourite subjects, linguistic fieldwork and formal semantics. This gave me a chance to get back to some of my ideas about modal semantics.
I am heavily involved in organizing the German Olympiad of Linguistics each year (Deutsche Linguistik-Olympiade, DOL). I am primarily responsible for designing, curating and testing puzzles for the three rounds of competitions we host. In order to gain more support, we got together to found a “Verein”, the kind of institution that makes Germany go round. It’s been a rocky ride so far, but our students managed to collect some major prizes during this year’s IOL, so it’s all worth it! Take a look at the official DOL website here!