# 《清华大学荐读书目》清华师生共读经典--万俊人老师导读《清华大学荐读书目》(1)
**Source**: https://libmonth.lib.tsinghua.edu.cn/dswhy2023/info/1095/1711.htm
**Parent**: https://libmonth.lib.tsinghua.edu.cn/dswhy2023/a_qhdxjdsm_qhssgdjdxlspfb.htm
- [首页](../../index.htm)
- [活动日程](../../index.htm#tsg1)
- [借阅排行榜](../../index.htm#tsg2)
- [相关报道](../../index.htm#tsg4)
- [历年回顾](http://libmonth.lib.tsinghua.edu.cn/)
[2022](http://libmonth.lib.tsinghua.edu.cn/dswhy2022/)
[2021](http://libmonth.lib.tsinghua.edu.cn/dswhy2021/)
# 《清华大学荐读书目》清华师生共读经典--万俊人老师导读《清华大学荐读书目》(1)
介绍最新版《清华大学荐读书目》的编撰情况和选书初衷。目前书单里推荐的书大致分三类,第一类是中外思想文化经典;第二类是受到大众广泛欢迎的图书;第三类是一些文化艺术主题的著作,比如说中外文学经典。\
\
showVsbVideo("/\_\_local/5/19/AE/CE6803EB9CBF1D6A9CC6D42C856\_BCF612AB\_9D462D1.mp4?e=.mp4","height=\"540\"","width=\"960\"","","float:none","false");
万俊人,清华大学首批文科资深教授,尼山世界儒学研究中心董事会董事、国际儒联理事,中华孔子学会副会长等职,《哲学研究》《哲学动态》《世界哲学》《中国社会科学评价》等杂志编委,浙江师范大学高等人文研究院、南京师范大学特聘教授,美国哈佛大学“哈佛-燕京学社”高级访问学者、“福布莱特”访问教授,英国剑桥大学人文科学艺术研究院(CRRASH)、荷兰阿姆斯特丹大学、日本东北大学访问教授,著有《现代西方伦理学史》(上下卷)《万俊人集》等23种,译著《道德语言》《政治自由主义》等22种,迄今在海内外中英文刊物上发表学术论文280余篇,另著有诗词集《悠斋清吟》等。
\
中国 北京 海淀区 清华大学图书馆 100084 电话:62782137 传真:62781758
[联系我们](http://lib.tsinghua.edu.cn/gk/lxwm.htm)
图书馆微信公众号
版权所有:清华大学图书馆 [版权声明](https://lib.tsinghua.edu.cn/about/policy_bqsm.html)
$(function(){
$(".img\_vsb\_content").click(function(){
var \_this = $(this);//将当前的pimg元素作为\_this传入函数
imgShow("#outerdiv", "#innerdiv", "#bigimg", \_this);
});
});
function imgShow(outerdiv, innerdiv, bigimg, \_this){
var src = \_this.attr("src");//获取当前点击的图片元素中的src属性
$(bigimg).attr("src", src);//设置#bigimg元素的src属性
/\*获取当前点击图片的真实大小,并显示弹出层及大图\*/
$("<img/>").attr("src", src).load(function(){
var windowW = $(window).width();//获取当前窗口宽度
var windowH = $(window).height();//获取当前窗口高度
var realWidth = this.width;//获取图片真实宽度
var realHeight = this.height;//获取图片真实高度
var imgWidth, imgHeight;
var scale = 0.8;//缩放尺寸,当图片真实宽度和高度大于窗口宽度和高度时进行缩放
if(realHeight>windowH\*scale) {//判断图片高度
imgHeight = windowH\*scale;//如大于窗口高度,图片高度进行缩放
imgWidth = imgHeight/realHeight\*realWidth;//等比例缩放宽度
if(imgWidth>windowW\*scale) {//如宽度扔大于窗口宽度
imgWidth = windowW\*scale;//再对宽度进行缩放
}
} else if(realWidth>windowW\*scale) {//如图片高度合适,判断图片宽度
imgWidth = windowW\*scale;//如大于窗口宽度,图片宽度进行缩放
imgHeight = imgWidth/realWidth\*realHeight;//等比例缩放高度
} else {//如果图片真实高度和宽度都符合要求,高宽不变
imgWidth = realWidth;
imgHeight = realHeight;
}
$(bigimg).css("width",imgWidth);//以最终的宽度对图片缩放
var w = (windowW-imgWidth)/2;//计算图片与窗口左边距
var h = (windowH-imgHeight)/1.8;//计算图片与窗口上边距
$(innerdiv).css({"top":h, "left":w});//设置#innerdiv的top和left属性
$(outerdiv).fadeIn("fast");//淡入显示#outerdiv及.pimg
});
$(outerdiv).click(function(){//再次点击淡出消失弹出层
$(this).fadeOut("fast");
});
}
var nav = {
menuBtn: $('.menuBtn'),
nav: $('.js-nav'),
menu: $('.nav'),
menuLi: $('.nav li'),
menuLink: $('.nav li > a'),
init: function() {
var \_this = this;
this.menuBtn.append('<span></span>');
this.menuBtn.on('click', function() {
$(this).toggleClass('open');
\_this.nav.toggleClass('open');
});
this.resize(959);
},
resize: function(width) {
this.menuLink.off('click');
this.menuLi.off('mouseenter mouseleave');
this.menu.find('.sub').stop(true, true).slideUp(0);
if ($(window).innerWidth() < width) {
this.menuLi.off('mouseenter mouseleave');
this.menuLink.on('click', function() {
if ($(this).siblings('.sub').length) {
$(this).siblings('.sub').stop(true, true).slideToggle('fast').parent().siblings().find('.sub').stop(true, true).slideUp('fast');
return false;
}
})
} else {
this.menuBtn.removeClass('open');
this.nav.removeClass('open');
this.menuLi.on('mouseenter', function() {
if ($(this).find('.sub').length) {
$(this).find('.sub').stop(true, true).slideDown('fast');
}
});
this.menuLi.on('mouseleave', function() {
$(this).find('.sub').stop(true, true).slideUp('fast');
});
}
}
};
nav.init();
var resizeTimer = null;
$(window).on('resize', function() {
if (resizeTimer) {
clearTimeout(resizeTimer);
}
resizeTimer = setTimeout(function() {
nav.resize(959);
}, 100);
});
$(window).on('scroll', function() {
var \_top = $(window).scrollTop();
if (\_top > 10) {
$('.header').addClass('on');
} else {
$('.header').removeClass('on');
}
});