|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1447 ] | Dr. Teresa Lopez-Soto |
---|---|
Name | Lopez-Soto, Dr. Teresa |
Job Title | Tenure |
Organisation | University of Seville |
Address | Palos de la Frontera, s/n |
Postal Code | 41004 |
City | Sevilla |
Country | Spain |
Phone | + +34 95 455 1588 |
Fax | + +34 95 455 1516 |
Mobile | + +34 656 365 710 |
teresals_(on)_us.es [@ replaced for spam protection] | |
Organisation URL | http://www.us.es |
Personal URL | |
Membership | |
Languages | English Spanish, Catalan |
Specialism | Acoustic Phonetics
Computational Lexicography Computational Linguistics Computational Morphology Computer Assisted Language Learning Corpora and Dialogue Annotations Dialogue Discourse analysis Discourse Theories Emotion in Speech Experimental Phonetics Functional Languages in Language Processing General and Applied Phonetics General linguistics Grammar Grammar Compilers Hand Gestures and Speech Human Voice Understanding Intonation Language Acquisition Language Learning Language Processing Language Translation Lexical Semantics Lexicons Linguistics Machine Translation Morphology Morphology Modeling for Languages with Highly Complex Inflection Multilingual Speech Recognition Multilinguality Multimodal Dialogue Systems Natural Language Processing Natural Language Semantics Naturalistic Spoken Language Oral Dialogue Para- and Extralinguistic Aspects of Speech Parsing Perceptual analysis of speech and gestures Phonetics Phonology Pragmatics Pronunciation Modelling Prosodic Studies in Spontaneous Language Analysis Prosody Psycholinguistics of Phonology Second Language Speech Semantics Semantics and Pragmatics in Speech Understanding Spanish Phonetics/Phonology Speech Acoustics Speech Analysis Speech Applications Speech Databases Speech Perception Speech Processing Speech Production Speech Technologies Speech-to-Speech Translation Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Modeling Spoken Dialogue Processing Spoken Dialogue Systems Spoken Translation Spontaneous Speech Syntax Translation and Foreign Language Production |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2002-07-10 20:04:29 #!/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" |