generated from alshedivat/al-folio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3541c6d
commit 338608b
Showing
22 changed files
with
295 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,19 +3,18 @@ | |
# ----------------------------------------------------------------------------- | ||
|
||
title: blank # the website title (if blank, full name will be used instead) | ||
first_name: You | ||
middle_name: R. | ||
last_name: Name | ||
email: [email protected] | ||
first_name: SXZ | ||
middle_name: | ||
last_name: Group | ||
email: [email protected] | ||
description: > # the ">" symbol means to ignore newlines until "footer_text:" | ||
A simple, whitespace theme for academics. Based on [*folio](https://github.com/bogoli/-folio) design. | ||
Research group led by Prof. Shi-Xin Zhang at IOP-CAS | ||
footer_text: > | ||
Powered by <a href="https://jekyllrb.com/" target="_blank">Jekyll</a> with <a href="https://github.com/alshedivat/al-folio">al-folio</a> theme. | ||
Hosted by <a href="https://pages.github.com/" target="_blank">GitHub Pages</a>. | ||
Photos from <a href="https://unsplash.com" target="_blank">Unsplash</a>. | ||
keywords: jekyll, jekyll-theme, academic-website, portfolio-website # add your own keywords or leave empty | ||
lang: en # the language of your site (for example: en, fr, cn, ru, etc.) | ||
icon: ⚛️ # the emoji used as the favicon (alternatively, provide image name in /assets/img/) | ||
icon: 🌖 # the emoji used as the favicon (alternatively, provide image name in /assets/img/) | ||
|
||
url: https://sxzgroup.github.io # the base hostname & protocol for your site | ||
baseurl: # the subpath of your site, e.g. /blog/. Leave blank for root | ||
|
@@ -96,7 +95,7 @@ pinterest_id: # your pinterest id | |
publons_id: # your ID on Publons | ||
quora_username: # your Quora username | ||
research_gate_profile: # your profile on ResearchGate | ||
scholar_userid: qc6CJjYAAAAJ # your Google Scholar ID | ||
scholar_userid: Ut8nVqIAAAAJ # your Google Scholar ID | ||
scopus_id: # your profile on Scopus | ||
semanticscholar_id: # your Semantic Scholar ID | ||
spotify_id: # your spotify id | ||
|
@@ -112,9 +111,7 @@ x_username: # your X handle | |
youtube_id: # your youtube channel id (youtube.com/@<youtube_id>) | ||
zotero_username: # your zotero username | ||
|
||
contact_note: > | ||
You can even add a little note about which of these is the best way to reach you. | ||
contact_note: | ||
# ----------------------------------------------------------------------------- | ||
# Analytics and search engine verification | ||
# ----------------------------------------------------------------------------- | ||
|
@@ -133,8 +130,8 @@ bing_site_verification: # out your bing-site-verification ID (Bing Webmaster) | |
# Blog | ||
# ----------------------------------------------------------------------------- | ||
|
||
blog_name: al-folio # blog_name will be displayed in your blog page | ||
blog_description: a simple whitespace theme for academics | ||
blog_name: # blog_name will be displayed in your blog page | ||
blog_description: | ||
permalink: /blog/:year/:title/ | ||
lsi: false # produce an index for related posts | ||
|
||
|
@@ -198,14 +195,18 @@ collections: | |
projects: | ||
output: true | ||
permalink: /:collection/:title/ | ||
members: | ||
output: true | ||
permalink: /members/:path | ||
|
||
|
||
announcements: | ||
enabled: true | ||
scrollable: true # adds a vertical scroll bar if there are more than 3 news items | ||
limit: 5 # leave blank to include all the news in the `_news` folder | ||
|
||
latest_posts: | ||
enabled: true | ||
enabled: false | ||
scrollable: true # adds a vertical scroll bar if there are more than 3 new posts items | ||
limit: 3 # leave blank to include all the blog posts | ||
|
||
|
@@ -313,8 +314,8 @@ display_categories: ["external-services"] # these categories will be displayed o | |
# ----------------------------------------------------------------------------- | ||
|
||
scholar: | ||
last_name: [Einstein] | ||
first_name: [Albert, A.] | ||
last_name: [Zhang] | ||
first_name: [Shi-Xin] | ||
|
||
style: apa | ||
locale: en | ||
|
@@ -373,7 +374,7 @@ filtered_bibtex_keywords: | |
] | ||
|
||
# Maximum number of authors to be shown for each publication (more authors are visible on click) | ||
max_author_limit: 3 # leave blank to always show all authors | ||
max_author_limit: 6 # leave blank to always show all authors | ||
more_authors_animation_delay: 10 # more authors are revealed on click using animation; smaller delay means faster animation | ||
|
||
# Enables publication thumbnails. If disabled, none of the publications will display thumbnails, even if specified in the bib entry. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!doctype html> | ||
<html lang="{{ site.lang }}"> | ||
<!-- Head --> | ||
<head> | ||
{% if page.redirect %} | ||
{% if page.redirect == true %} | ||
{% assign redirect = site.baseurl | append: '/' %} | ||
{% elsif page.redirect contains '://' %} | ||
{% assign redirect = page.redirect %} | ||
{% else %} | ||
{% assign redirect = page.redirect | relative_url %} | ||
{% endif %} | ||
<meta http-equiv="refresh" content="3; url={{ redirect }}"> | ||
{% endif %} | ||
{% include head.liquid %} | ||
</head> | ||
|
||
<!-- Body --> | ||
<body class="{% if site.navbar_fixed %}fixed-top-nav{% endif %} {% unless site.footer_fixed %}sticky-bottom-footer{% endunless %}"> | ||
<!-- Header --> | ||
{% include header.liquid %} | ||
|
||
<!-- Content --> | ||
<div class="container mt-5" role="main"> | ||
{{ content }} | ||
</div> | ||
|
||
<!-- Footer --> | ||
{% include footer.liquid %} | ||
|
||
<!-- JavaScripts --> | ||
{% include scripts/jquery.liquid %} | ||
{% include scripts/bootstrap.liquid %} | ||
{% include scripts/masonry.liquid %} | ||
{% include scripts/mermaid.liquid %} | ||
{% include scripts/diff2html.liquid %} | ||
{% include scripts/leaflet.liquid %} | ||
{% include scripts/chartjs.liquid %} | ||
{% include scripts/echarts.liquid %} | ||
{% include scripts/vega.liquid %} | ||
{% include scripts/tikzjax.liquid %} | ||
{% include scripts/typograms.liquid %} | ||
{% include scripts/misc.liquid %} | ||
{% include scripts/badges.liquid %} | ||
{% include scripts/mathjax.liquid %} | ||
{% include scripts/pseudocode.liquid %} | ||
{% include scripts/analytics.liquid %} | ||
{% include scripts/progressBar.liquid %} | ||
{% include scripts/wechatModal.liquid %} | ||
{% include scripts/imageLayouts.liquid %} | ||
{% include scripts/jekyll_tabs.liquid %} | ||
{% include scripts/back_to_top.liquid %} | ||
{% include scripts/search.liquid %} | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
--- | ||
layout: about | ||
inline: false | ||
group: Faculty | ||
group_rank: 1 | ||
|
||
title: Shi-Xin Zhang | ||
description: | ||
lastname: Zhang | ||
|
||
teaser: > | ||
I’m an Associate Professor at Institue of Physics, Chinese Academy of Sciences. | ||
profile: | ||
name: Shi-Xin Zhang | ||
position: > | ||
Principal Investigator<br /> | ||
Associate Professor<br /> | ||
Institue of Physics<br /> | ||
Chinese Academy of Sciences<br /> | ||
align: middle | ||
image: 001landscape.jpg | ||
email: [email protected] | ||
linkedin: zhangshixin | ||
orcid: 0000-0003-0347-9750 | ||
scholar: Ut8nVqIAAAAJ | ||
github: refraction-ray | ||
website: https://re-ra.xyz | ||
address: > | ||
Beijing China | ||
--- | ||
|
||
<br> | ||
|
||
## Experience | ||
|
||
* 2024.8 - now, Institute of Physics, Chinese Academy of Sciences, Associate Professor | ||
|
||
* 2021.7 - 2024.7, Tencent Quantum Laboratory, Senior Research Scientist | ||
|
||
## Education | ||
|
||
* 2016.8 - 2021.7, Institue for Advanced Study, Tsinghua University, PhD in Physics | ||
|
||
* 2012.8 - 2016.7, Department of Physics, Tsinghua University, BSc in Physics | ||
|
||
|
||
## Publications | ||
|
||
|
||
<div class="publications"> | ||
{% bibliography -f papers -q @*[author^=*Shi-Xin]* %} | ||
</div> |
Oops, something went wrong.