|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1882 ] | Departement of Linguistics and Phonetics (Institutionen för Lingvistik) |
---|---|
Organisation name | Departement of Linguistics and Phonetics (Institutionen för Lingvistik) |
Short name or acronym | Departement of Linguistics and Phonetics (Institutionen för Lingvistik) |
Organisation type | Center |
Activity type | Speech technology |
Address | Dept. of Linguistics and Phonetics Lund University Helgonabacken 12 |
Postal Code | 223 62 |
City | Lund |
Country | Sweden |
Phone | + +46 46 222 84 40 |
Fax | + +46 46 222 42 10 |
ling_(on)_ling.lu.se | |
Organisation URL | http://www.ling.lu.se/index.html |
Logo | Description |
![]() |
The Department of Linguistics at Lund University has two sections: Phonetics and General Linguistics, both of which have undergraduate as well as graduate programmes. Phonetics was established first, with its first professorial chair already in 1950. General Linguistics followed in 1969. Today the department consists of approximately 40 employees, including teachers, research. In 1983 a professorial chair and a section in Child Language Research was established at the department. It was replaced in 1998 by a professorial chair in Language Acquisition. This section conducts research, gives research student guidance and courses in language acquisition. A number of researchers or groups of researchers with sponsorship from different councils and foundations are also connected to the department. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |