-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresearch.html
128 lines (120 loc) · 4.14 KB
/
research.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!doctype html>
<html lang = "en">
<head>
<title>Research</title>
<meta charset = "UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE-edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Josefin+Slab:400,700">
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<style type="text/css">
.st-container em{
font-family: 'Open Sans Bold', sans-serif;
font-size: 34px;
font-weight:bold;
font-style: normal;
color: #00688b;
line-height: 120%
}
.st-container em1{
font-family: 'Open Sans Bold', sans-serif;
font-size: 37px;
font-weight:bold;
font-style: normal;
color: #000000;
line-height: 120%
}
.st-container em0{
font-style: italic;
}
@media screen and (max-width:1480px){
.st-container em,
.st-container em1{
font-size: 30px;
}
}
@media screen and (max-width:1020px){
.st-container em,
.st-container em1{
font-size: 28px;
}
}
@media screen and (max-width:720px){
.st-container em,
.st-container em1{
font-size: 26px;
}
}
@media screen and (max-width:520px){
.st-container em,
.st-container em1{
font-size: 24px;
}
}
@media screen and (max-width:360px){
.st-container em,
.st-container em1{
font-size: 22px;
}
}
</style>
<script src="jquery.js"></script>
<script type="text/javascript">
$(function() {
$('a[href*="#"]:not([href="#"])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html, body').animate({
scrollTop: target.offset().top
}, 500);
return false;
}
}
});
});
</script>
</head>
<body>
<div class="container">
<!--nav begin-->
<div class="st-container-tr" id="trnav">
<ul id="menu">
<li>
<a href="index.html" class="active" >Home</a>
</li>
<li>
<a href="cv.html" class="active" > Publications</a>
</li>
<li>
<a href="research.html" class="active" >Research</a>
</li>
</ul>
</div>
<!--nav end-->
<!--content begin-->
<div class="picture2"> </div>
<div class="st-container">
<div class="st-scroll">
<section class="st-panel" id="st-panel-2"><a name="cv"></a>
<p>
<br><em>Papers that will appear soon:</em> </br>
<br><i>"Hunting for primordial black holes with stochastic gravitational-wave background in the space-based detector frequency band (in preparation)"</i>
<br><u>Yi-Fan Wang</u>, Qing-Guo Huang, Tjonnie G. F. Li and Shihong Liao
<br><i><a href="PBH-poster.pdf">(See the poster for GWPAW2018!)</a></i></br>
</br>
<br><i>"Looking for statistical dependence of beyond general relativity parameters among multiple gravitational-wave events (in preparation)"</i>
<br><u>Yi-Fan Wang</u>, Tjonnie G. F. Li
<br><i><a href="testingGR-poster.pdf">(See the poster for GWPAW2018!)</a></i></br>
</br>
<br></br>
<br></br>
</p>
</section>
</div>
</div>
</div>
</body>
</html>