├── .github ├── dependabot.yml └── workflows │ ├── build.yaml │ └── remind.yml ├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── cn ├── abstracts.tex ├── activities.tex ├── awards.tex ├── cv.tex ├── education.tex ├── employment.tex ├── fieldwork.tex ├── funds.tex ├── interests.tex ├── presentations.tex ├── publications.tex ├── software.tex ├── students.tex └── teaching.tex └── en ├── abstracts.tex ├── activities.tex ├── awards.tex ├── cv.tex ├── education.tex ├── employment.tex ├── fieldwork.tex ├── funds.tex ├── interests.tex ├── presentations.tex ├── publications.tex ├── software.tex ├── students.tex └── teaching.tex /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # Set update schedule for GitHub Actions 2 | 3 | version: 2 4 | updates: 5 | 6 | - package-ecosystem: "github-actions" 7 | directory: "/" 8 | schedule: 9 | # Check for updates to GitHub Actions every weekday 10 | interval: "weekly" 11 | day: "tuesday" 12 | # Allow up to 5 open pull requests at a time 13 | open-pull-requests-limit: 5 14 | -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- 1 | # 2 | # Build the cv 3 | # 4 | name: Build 5 | on: 6 | pull_request: 7 | push: 8 | branches: 9 | - main 10 | release: 11 | types: 12 | - published 13 | 14 | concurrency: 15 | group: ${{ github.workflow }}-${{ github.ref }} 16 | cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} 17 | 18 | jobs: 19 | build: 20 | runs-on: ubuntu-latest 21 | name: Build 22 | 23 | steps: 24 | - name: Checkout 25 | uses: actions/checkout@v4 26 | 27 | - name: Tectonic Cache 28 | uses: actions/cache@v4 29 | with: 30 | path: ~/.cache/Tectonic 31 | key: ${{ runner.os }}-tectonic-${{ hashFiles('**/*.tex') }} 32 | restore-keys: | 33 | ${{ runner.os }}-tectonic- 34 | 35 | - name: Setup tectonic 36 | uses: wtfjoke/setup-tectonic@v3 37 | with: 38 | github-token: ${{ github.token }} 39 | 40 | - name: Build CV 41 | run: make 42 | 43 | - name: Prepare files for gh-pages 44 | run: | 45 | mkdir public 46 | mv cn/cv.pdf public/DTian_cv_cn.pdf 47 | mv en/cv.pdf public/DTian_cv_en.pdf 48 | 49 | - name: Deploy 50 | uses: peaceiris/actions-gh-pages@v4 51 | if: github.event_name == 'push' 52 | with: 53 | github_token: ${{ github.token }} 54 | publish_dir: ./public 55 | force_orphan: true 56 | 57 | - name: Upload the two pdf files as release assets 58 | run: gh release upload ${{ github.ref_name }} ./public/DTian_cv_cn.pdf ./public/DTian_cv_en.pdf 59 | if: github.event_name == 'release' 60 | env: 61 | GH_TOKEN: ${{ github.token }} -------------------------------------------------------------------------------- /.github/workflows/remind.yml: -------------------------------------------------------------------------------- 1 | # 2 | # Create an issue to remind me to review/update my CV. 3 | # 4 | name: Review reminder 5 | on: 6 | schedule: 7 | # 10 am on the 28th day of every month 8 | - cron: '0 10 28 * *' 9 | 10 | jobs: 11 | remind: 12 | name: Review CV 13 | runs-on: ubuntu-latest 14 | steps: 15 | 16 | - name: Checkout 17 | uses: actions/checkout@v4 18 | 19 | - name: Get current date 20 | id: date 21 | run: echo "date=$(date +'%Y/%m')" >> $GITHUB_OUTPUT 22 | 23 | - name: Create an reminder 24 | run: | 25 | title="Review the CV for ${{ steps.date.outputs.date }}" 26 | read -d "#" body <<- EOF 27 | Any activity in this month? 28 | It's time to review my activities in this month and update the CV. 29 | # 30 | EOF 31 | echo $body 32 | gh issue create --title "$title" --body "$body" 33 | env: 34 | GH_TOKEN: ${{ github.token }} 35 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | cv.pdf 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017 Leonardo Uieda, 2018-2025 Dongdong Tian 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without modification, 5 | are permitted provided that the following conditions are met: 6 | 7 | * Redistributions of source code must retain the above copyright notice, 8 | this list of conditions and the following disclaimer. 9 | * Redistributions in binary form must reproduce the above copyright notice, 10 | this list of conditions and the following disclaimer in the documentation 11 | and/or other materials provided with the distribution. 12 | * Neither the name of Leonardo Uieda nor the names of any contributors 13 | may be used to endorse or promote products derived from this software 14 | without specific prior written permission. 15 | 16 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 17 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 18 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 19 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR 20 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 21 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 22 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 23 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 25 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: cv_en.pdf cv_cn.pdf 2 | 3 | install: 4 | curl --proto '=https' --tlsv1.2 -fsSL https://drop-sh.fullyjustified.net |sh 5 | 6 | cv_en.pdf: en/*.tex 7 | tectonic en/cv.tex 8 | 9 | cv_cn.pdf: cn/*.tex 10 | tectonic cn/cv.tex 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TIAN Dongdong (田冬冬)'s Curriculum Vitae 2 | 3 | [![GitHub Release](https://img.shields.io/github/v/release/seisman/cv)](https://github.com/seisman/cv/releases) 4 | [![Build](https://github.com/seisman/cv/actions/workflows/build.yaml/badge.svg)](https://github.com/seisman/cv/actions/workflows/build.yaml) 5 | [![GitHub](https://img.shields.io/github/license/seisman/cv)](https://github.com/seisman/cv/blob/main/LICENSE.txt) 6 | 7 | These are the LaTeX source files for my academic CV. 8 | 9 | ## Download 10 | 11 | Download my CV: 12 | 13 | - [English version](https://github.com/seisman/cv/raw/gh-pages/DTian_cv_en.pdf) 14 | - [Chinese version](https://github.com/seisman/cv/raw/gh-pages/DTian_cv_cn.pdf) 15 | 16 | ## Build 17 | 18 | To build the CV, you need to have LaTeX installed. The full LaTeX distribution (e.g., 19 | TeXLive on Linux or MacTeX on macOS) are usually too big (>5 GB). 20 | 21 | I recommend to install the lightweight [Tectonic](https://tectonic-typesetting.github.io/en-US/index.html) 22 | which automatically downloads necessary dependencies. 23 | 24 | 1. Install Tectonic: 25 | 26 | curl --proto '=https' --tlsv1.2 -fsSL https://drop-sh.fullyjustified.net | sh 27 | 28 | 2. Build the CV: 29 | 30 | make 31 | 32 | ## License 33 | 34 | The CV template is released under the terms of the BSD 3-clause License. 35 | 36 | ## Acknowledgemnt 37 | 38 | The CV template is modified from https://github.com/leouieda/cv. 39 | -------------------------------------------------------------------------------- /cn/abstracts.tex: -------------------------------------------------------------------------------- 1 | \section{会议摘要} 2 | 3 | \subsection{口头报告} 4 | 5 | \begin{etaremune} 6 | \item 7 | \SWei, \& \Me\ (2022). 8 | Stress drops of small-to-moderate earthquakes beneath the Alaska Peninsula. 9 | 2022 AGU Fall Meeting, Chicago, IL, USA. ID: S42A-02. 10 | \item 11 | \YZhang, \SWei, Byrnes, J. S., \Me, \FWang, \& Bezada M. (2022). 12 | P-wave attenuation structure of the Tonga subduction zone and implications for mantle wedge processes. 13 | 2022 AGU Fall Meeting, Chicago, IL, USA. ID: DI23A-06. 14 | \item 15 | \Me\ (2022). 16 | Source spectra and stress drops of small-to-moderate earthquakes beneath Tonga and the Alaska Peninsula. 17 | 2022/2021 Annual Meeting of Chinese Geosciecen Union, online. 18 | \item 19 | Meghan, J., Grund, M., Schlitzer, W., Leong, W. J., \Me, \JYao, \& \LUieda\ (2021). 20 | PyGMT: An open-source Python library for geospatial processing, analysis, and visualization. 21 | 2021 AGU Fall Meeting, online. ID: IN55C-08. 22 | \item 23 | \SWei, \YZhang, \Me, \& \DWiens\ (2021). 24 | New advances in body-wave attenuation studies of the Tonga subduction zone. 25 | 2021 AGU Fall Meeting, online. ID: S23B-05. 26 | \item 27 | \SWei, \PShearer, \CLithgowBertelloni, \LStixrude, \& \Me\ (2021). 28 | Oceanic plateau of the Hawaiian mantle plume head subducted to the uppermost lower mantle. 29 | EGU General Assembly 2021, online. ID: EGU21-13874. 30 | \item 31 | \Me, \& \SWei\ (2021). 32 | Source spectra and stress drops of small-to-moderate earthquakes beneath the Alaska peninsula. 33 | 2021 AGU Fall Meeting, online. ID: T54A-11. 34 | \item 35 | \Me, \& \LWen\ (2017). 36 | Seismological evidence for a localized mushy zone at the Earth's inner core boundary. 37 | 2017 Annual Meeting of Chinese Geoscience Union, Beijing, China. 38 | \end{etaremune} 39 | 40 | \subsection{张贴海报} 41 | 42 | \begin{etaremune} 43 | \item 44 | \YZhang, Byrnes, J. S., \SWei, \Me, \FWang, \& Bezada M. (2021). 45 | P-wave attenuation tomography of the Tonga-Lau mantle wedge improved 46 | by a Bayesian Monte Carlo approach and independently constrained source spectra. 47 | 2021 AGU Fall Meeting, online. ID: S25D-0276. 48 | \item 49 | \Me, \WWang, \FWang, \& \SWei\ (2020). 50 | Source spectra of intermediate-depth and deep earthquakes in the Tonga subduction zone. 51 | 2020 AGU Fall Meeting, online. ID: S054-0012. 52 | \item 53 | \SWei, \Me, \PShearer, \MLv, \SDorfman, \CLithgowBertelloni, \& \LStixrude\ (2020). 54 | Compositional heterogeneities in the mid-mantle revealed by seismic discontinuities and reflectors. 55 | 2020 AGU Fall Meeting, online. ID: DI016-0008. 56 | \item 57 | \Me, \WWang, \& \SWei\ (2019). 58 | Source spectra and stress drop of deep earthquakes in the Tonga subduction zone. 59 | 2019 AGU Fall Meeting, San Francisco, CA, USA. ID: S13C-0458. 60 | \item 61 | \Me, \SWei, \& \PShearer\ (2019). 62 | Global variations of the 520-km discontinuity. 63 | Gordon Research Conference: Interior of the Earth, South Hadley, MA, USA. 64 | \item 65 | \Me, \SWei, \& \PShearer\ (2018). 66 | Global variations of the 520-km discontinuity. 67 | 2018 AGU Fall Meeting, Washington, DC, USA. ID: DI31C-0024. 68 | \item 69 | \Me, \JYao, \& \LWen\ (2017). 70 | Collapse and earthquake swarm after North Korea's 3 September 2017 nuclear test. 71 | 2017 AGU Fall Meeting, New Orleans, LA, USA. ID: S43H-2968. 72 | \item 73 | \Me, \& \LWen\ (2017). 74 | Three types of Earth's inner core boundary. 75 | 2017 AGU Fall Meeting, New Orleans, LA, USA. ID: DI33B-0404. 76 | \item 77 | \JYao, \Me, \& \LWen\ (2017). 78 | High-precision location, yield and tectonic release of North Korea's 3 September 2017 nuclear test. 79 | 2017 AGU Fall Meeting, New Orleans, LA, USA. ID: S43H-2967. 80 | \item 81 | \JYao, \Me, \LSun, \& \LWen\ (2017). 82 | Temporal change of seismic Earth's inner core phases: Inner core differential rotation or temporal change of inner core surface? 83 | 2017 AGU Fall Meeting, New Orleans, LA, USA. ID: DI33B-0405. 84 | \item 85 | \Me, \& \LWen\ (2017). 86 | Seismological evidence for a localized mushy zone at the Earth's inner core boundary. 87 | Gordon Research Conference: Interior of the Earth, South Hadley, MA, USA. 88 | \item 89 | \JYao, \Me, \LSun, \& \LWen\ (2017). 90 | Temporal change of seismic Earth's inner core phases: Inner core differential rotation or temporal change of inner core surface? 91 | Gordon Research Conference: Interior of the Earth, South Hadley, MA, USA. 92 | \item 93 | \Me, \& \LWen\ (2016). 94 | Seismic structures of the Earth's inner core boundary beneath the Bearing sea and Mexico. 95 | 2016 AGU Fall Meeting, San Francisco, CA, USA. ID: DI43A-2657. 96 | \item 97 | \Me, \& \LWen\ (2015). 98 | Varying seismic property of the Earth's inner core boundary. 99 | 2015 AGU Fall Meeting, San Francisco, CA, USA. ID: DI33A-2606. 100 | \item 101 | \Me, \& \LWen\ (2014). 102 | Seismic study on the properties of the Earth's inner core boundary. 103 | 2014 AGU Fall Meeting, San Francisco, CA, USA. ID: DI31B-4269. 104 | \item 105 | \Me, \& \LWen (2014). 106 | Topography and properties of the Earth's inner core boundary. 107 | 2014 Annual Meeting of Chinese Geophysical Society, Beijing, China. 108 | \item 109 | \XChen, \Me, \& \LWen\ (2013). 110 | Seismic tracking of Hurricane Sandy. 111 | 2013 AGU Fall Meeting, San Francisco, CA, USA. ID: S11A-2296. 112 | \item 113 | \Me, \& \LWen\ (2013). 114 | Regional topography variation of Earth's inner core boundary. 115 | 2013 AGU Fall Meeting, San Francisco, CA, USA. ID: DI23A-2282. 116 | \item 117 | \MZhang, \Me, \& \LWen\ (2013). 118 | A new method for earthquake determination: stacking multiple-station autocorrelograms. 119 | 2013 AGU Fall Meeting, San Francisco, CA, USA. ID: S51A-2301. 120 | \item 121 | \Me, \& \LWen\ (2013). 122 | Simulating wave propagation in a faulted medium using a finite difference method. 123 | 2013 Annual Meeting of Chinese Geophysical Society, Kunming, Yunnan, China. 124 | \item 125 | \Me, \& \LWen\ (2012). 126 | Simulating wave propagation in a faulted medium using a 3D finite difference method. 127 | 2012 AGU Fall Meeting, San Francisco, CA, USA. ID: S43A-2458. 128 | \end{etaremune} 129 | -------------------------------------------------------------------------------- /cn/activities.tex: -------------------------------------------------------------------------------- 1 | \section{学术团体及服务} 2 | 3 | \subsection{学术团体} 4 | \begin{itemize} 5 | \item \href{https://sites.agu.org/}{美国地球物理联合会(AGU)}会员(2012至今) 6 | \item \href{http://www.cgscgs.org.cn/}{中国地球物理学会(CGS)}会员(2022至今) 7 | \item \href{https://www.ssoc.org.cn/}{中国地震学会}会员(2024 至今) 8 | \end{itemize} 9 | 10 | \subsection{学术服务} 11 | \begin{itemize} 12 | \item Earthquake Research Advances 副主编(2024 至今) 13 | \item 中国地震学会地震学专业委员会委员(2024至今) 14 | \item Generic Mapping Tools (GMT) 指导委员会委员 (2024 至今) 15 | \item 期刊/基金审稿人: 16 | \emph{Nature Communications}, 17 | \emph{Journal of Geophysical Research: Solid Earth}, 18 | \emph{Geophysical Research Letters}, 19 | \emph{Seismological Research Letters}, 20 | \emph{Review of Scientific Instruments}, 21 | \emph{Journal of Open Source Software}, 22 | \emph{Results in Geophysical Sciences}, 23 | \emph{华北地震科学}, 24 | \emph{国家自然科学基金青年科学基金} 25 | \item 创办博客及网站 26 | \href{https://blog.seisman.info}{SeisMan 博客} (2013)、 27 | \href{http://gmt-china.org/}{GMT 中文社区} (2016)和 28 | \href{https://seismo-learn.org/}{地震``学''} (2020) 29 | \item \href{https://github.com/GenericMappingTools/gmt}{Generic Mapping Tools (GMT)} 和 30 | \href{https://github.com/GenericMappingTools/pygmt}{PyGMT} 核心开发者 (2018至今) 31 | \item \href{http://chinageorefmodel.org/}{中国地震学参考模型}研究助理及数据库管理员 (2016--2018) 32 | \item AGU 秋季会议 Outstanding Student Paper Award 评审(2018--2020) 33 | \item \href{http://chinageorefmodel.org/}{中国地震学参考模型}工作组成员(2023至今) 34 | \end{itemize} 35 | 36 | \subsection{学院服务} 37 | \begin{itemize} 38 | \item 地空学院学位评定分委员会委员(2023--2025) 39 | \end{itemize} 40 | -------------------------------------------------------------------------------- /cn/awards.tex: -------------------------------------------------------------------------------- 1 | \section{荣誉} 2 | 3 | \begin{EntriesTable}{0.05}{0.02}{0.93} 4 | 2022 & 湖北省高层次人才计划 \\ 5 | 2021 & 中国地质大学(武汉)“百人计划” \\ 6 | 2018 & 中国科学院院长奖 \\ 7 | 2018 & 中国科学技术大学优秀毕业生 \\ 8 | 2017 & 中国地球科学联合学术年会 优秀学生论文奖 \\ 9 | 2017 & 博士生国家奖学金 \\ 10 | % 2014 & 光华奖学金 \\ 11 | % 2010 & 光华奖学金 \\ 12 | % 2009 & 中国科学技术大学优秀志愿者 \\ 13 | \end{EntriesTable} 14 | -------------------------------------------------------------------------------- /cn/cv.tex: -------------------------------------------------------------------------------- 1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2 | % 学术简历 LaTeX 模板 3 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 4 | \documentclass[11pt,a4paper]{article} 5 | 6 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 7 | % 自定义信息 8 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 9 | % 个人信息 10 | \newcommand{\Title}{学术简历} 11 | \newcommand{\Name}{田冬冬} 12 | \newcommand{\Role}{教授\hspace{0.5em}博士生导师} 13 | \newcommand{\Email}{dtian@cug.edu.cn} 14 | \newcommand{\Website}{me.seisman.info} 15 | \newcommand{\Github}{seisman} 16 | \newcommand{\Orcid}{0000-0001-7967-1197} 17 | \newcommand{\Affiliation}{中国地质大学(武汉)\\ 地球物理与空间信息学院} 18 | \newcommand{\Address}{湖北省武汉市洪山区鲁磨路 388 号\\ 档案楼 512B 室} 19 | 20 | % 在文章列表中引用作者和合作者 21 | \newcommand{\Me}{\textbf{Tian, D.}} % 加粗显示 22 | \newcommand{\XChen}{Chen, X.} 23 | \newcommand{\SDorfman}{Dorfman, S. M.} 24 | \newcommand{\WFan}{Fan, W.} 25 | \newcommand{\CLithgowBertelloni}{Lithgow-Bertelloni, C.} 26 | \newcommand{\ZLu}{Lu, Z.} 27 | \newcommand{\JLuis}{Luis, J.} 28 | \newcommand{\MLv}{Lv, M.} 29 | \newcommand{\JMcGurie}{McGuire, J. J.} 30 | \newcommand{\RScharroo}{Scharroo, R.} 31 | \newcommand{\PShearer}{Shearer, P. M.} 32 | \newcommand{\WSmith}{Smith, W. H. F.} 33 | \newcommand{\LStixrude}{Stixrude, L.} 34 | \newcommand{\LSun}{Sun, L.} 35 | \newcommand{\LUieda}{Uieda, L.} 36 | \newcommand{\WWang}{Wang, W.} 37 | \newcommand{\FWang}{Wang, F.} 38 | \newcommand{\SWei}{Wei, S. S.} 39 | \newcommand{\LWen}{Wen, L.} 40 | \newcommand{\PWessel}{Wessel, P.} 41 | \newcommand{\DWiens}{Wiens, D. A.} 42 | \newcommand{\FWobbe}{Wobbe, F.} 43 | \newcommand{\JYao}{Yao, J.} 44 | \newcommand{\MZhang}{Zhang, M.} 45 | \newcommand{\YZhang}{Zhang, Y.} 46 | 47 | % 一些命令 48 | \newcommand{\DOI}[1]{doi:\href{https://dx.doi.org/#1}{#1}} 49 | 50 | % 中文支持 51 | \usepackage[fontset=fandol]{ctex} 52 | % 设置页面边距 53 | \usepackage[margin=2.5cm]{geometry} 54 | % 设置字体 55 | \usepackage{fontspec} 56 | \usepackage[default,semibold]{sourcesanspro} 57 | 58 | % Use fontawesome icons 59 | \usepackage[fixed]{fontawesome5} 60 | 61 | % 对列表各项逆序编号(用于对文章进行编号) 62 | \usepackage[itemsep=2pt]{etaremune} 63 | 64 | % 控制文字字号 65 | \usepackage{anyfontsize} 66 | 67 | % 以“年/月”格式显示日期 68 | \usepackage{datetime} 69 | \newdateformat{monthyear}{\THEYEAR/\twodigit{\THEMONTH}} 70 | 71 | % 设置每节标题的前后空白 72 | \usepackage{titlesec} 73 | \titlespacing*{\section}{0pt}{1ex}{1ex} 74 | % 设置 section, subsection 不显示编号,且可生成目录 75 | \titleformat{\section}{\normalfont\Large\bfseries}{}{0pt}{} 76 | \titleformat{\subsection}{\normalfont\large\bfseries}{}{0.5em}{} 77 | 78 | % 设置行间距 79 | \renewcommand{\baselinestretch}{1.2} 80 | % 设置表格的垂直距离 81 | \renewcommand{\arraystretch}{1.2} 82 | \setlength{\parindent}{0pt} % no indent for paragraph 83 | 84 | % 设置列表中各项之间的间距 85 | \usepackage{enumitem} 86 | \setlist{itemsep=0pt} 87 | 88 | % 长表格 89 | \usepackage{tabularx} 90 | \usepackage{ltablex} 91 | \usepackage{environ} 92 | \NewEnviron{EntriesTable}[3]{ 93 | \vspace{-1.25em} 94 | \begin{tabularx}{\textwidth}{p{#1\textwidth}@{\hspace{#2\textwidth}}p{#3\textwidth}} 95 | \BODY 96 | \end{tabularx} 97 | } 98 | 99 | % 获取总页数 100 | \usepackage{lastpage} 101 | 102 | % 设置页眉页脚 103 | \usepackage{fancyhdr} 104 | \pagestyle{fancy} 105 | \fancyhf{} 106 | \chead{ 107 | \itshape 108 | \fontsize{10pt}{12pt}\selectfont 109 | \Name 110 | \hspace{0.2cm} -- \hspace{0.2cm} 111 | \Title 112 | \hspace{0.2cm} -- \hspace{0.2cm} 113 | \monthyear\today 114 | } 115 | \rhead{} 116 | \cfoot{\fontsize{10pt}{0}\selectfont \thepage/\pageref*{LastPage}} 117 | \renewcommand{\headrulewidth}{0pt} 118 | 119 | % 使用自定义颜色 120 | \usepackage[usenames,dvipsnames]{xcolor} 121 | 122 | % PDF 元信息以及超链接 123 | \usepackage[colorlinks=true]{hyperref} 124 | \hypersetup{ % document metadata 125 | pdftitle = {\Name\ - \Title}, 126 | pdfauthor = {\Name}, 127 | linkcolor=black, 128 | citecolor=black, 129 | filecolor=black, 130 | urlcolor=MidnightBlue, 131 | } 132 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 133 | 134 | \begin{document} 135 | 136 | % CV 封面页 137 | \thispagestyle{empty} % 首页不显示页眉页脚 138 | \begin{center} 139 | \kaishu 140 | {\fontsize{24pt}{0}\selectfont \Name \hspace{1ex}} \\[0.4cm] 141 | {\fontsize{16pt}{0}\selectfont \Role} \\[0.2cm] 142 | \end{center} 143 | \begin{minipage}[t]{0.7\textwidth} 144 | \kaishu 145 | \fontsize{12pt}{15pt}\selectfont 146 | \Affiliation 147 | \\ 148 | \Address 149 | \end{minipage} 150 | \begin{minipage}[t]{0.3\textwidth} 151 | \kaishu 152 | \fontsize{12pt}{15pt}\selectfont 153 | \begin{flushleft} 154 | \faEnvelope \href{mailto:\Email}{\texttt{\Email}} 155 | \\ 156 | \faOrcid \href{https://orcid.org/\Orcid}{\Orcid} 157 | \\ 158 | \faGlobe \href{https://\Website}{\Website} 159 | \\ 160 | \faGithub \href{https://github.com/\Github}{\Github} 161 | \end{flushleft} 162 | \end{minipage} 163 | \vspace{0.2cm} 164 | 165 | \input{education} 166 | \input{employment} 167 | \input{interests} 168 | \input{activities} 169 | \input{awards} 170 | \input{funds} 171 | \input{publications} 172 | \input{abstracts} 173 | \input{presentations} 174 | \input{teaching} 175 | \input{students} 176 | \input{fieldwork} 177 | \input{software} 178 | 179 | \end{document} 180 | -------------------------------------------------------------------------------- /cn/education.tex: -------------------------------------------------------------------------------- 1 | \section{教育经历} 2 | 3 | \begin{EntriesTable}{0.05}{0.02}{0.93} 4 | 2018 & 地球物理学博士,中国科学技术大学,中国安徽省合肥市 \\ 5 | 2012 & 地球物理学学士,中国科学技术大学,中国安徽省合肥市 \\ 6 | \end{EntriesTable} 7 | -------------------------------------------------------------------------------- /cn/employment.tex: -------------------------------------------------------------------------------- 1 | \section{工作经历} 2 | 3 | \begin{EntriesTable}{0.18}{0.02}{0.80} 4 | 2022/12 至今 & 教授,中国地质大学(武汉),地球物理与空间信息学院 \\ 5 | 2021/11--2022/11 & 特任教授,中国地质大学(武汉),地球物理与空间信息学院 \\ 6 | 2018/08--2021/09 & 博士后研究助理,密西根州立大学,地球与环境科学系 \\ 7 | \end{EntriesTable} 8 | -------------------------------------------------------------------------------- /cn/fieldwork.tex: -------------------------------------------------------------------------------- 1 | \section{野外经历} 2 | 3 | \begin{itemize} 4 | \item \textbf{LEEP} (\textbf{L}ake \textbf{E}rie \textbf{E}arthquake ex\textbf{P}eriment), 5 | 2018/10/12--2018/10/16,在 Erie 湖周边安装 8 个宽频带地震仪 6 | \end{itemize} 7 | -------------------------------------------------------------------------------- /cn/funds.tex: -------------------------------------------------------------------------------- 1 | \section{科研基金} 2 | 3 | \begin{itemize} 4 | \item 中国地质大学(武汉)中央高校优秀青年团队,5万,2023/01-2024/12,排名 5/6 5 | \item 国家自然科学基金面上项目 No. 42274122,56 万,2023/01--2026/12,主持 6 | \item 中国地质大学(武汉)“百人计划”科研启动经费,200 万,2021/11--2026/12,主持 7 | \end{itemize} 8 | -------------------------------------------------------------------------------- /cn/interests.tex: -------------------------------------------------------------------------------- 1 | \section{研究方向及兴趣} 2 | 3 | \begin{itemize} 4 | \item 地球深部结构 5 | \item 地震震源理论及观测 6 | \item 地震波传播理论 7 | \end{itemize} 8 | -------------------------------------------------------------------------------- /cn/presentations.tex: -------------------------------------------------------------------------------- 1 | \section{学术报告} 2 | 3 | \begin{EntriesTable}{0.10}{0.04}{0.86} 4 | 2021/01/07 & 南京大学 \\ 5 | 2020/11/27 & 南方科技大学 \\ 6 | 2019/02/23 & Michigan State University \\ 7 | 2018/06/15 & 中国科学院地质与地球物理研究所 \\ 8 | 2018/06/14 & 中国地震局地震预测所 \\ 9 | 2016/09/21 & 湖北省地震局 \\ 10 | 2016/06/30 & 中国地震台网中心 \\ 11 | \end{EntriesTable} 12 | -------------------------------------------------------------------------------- /cn/publications.tex: -------------------------------------------------------------------------------- 1 | \section{已发表论文} 2 | % AGU style: https://publications.agu.org/agu-grammar-and-style-guide/ 3 | \newcommand{\Revision}{\emph{正在审稿}} 4 | \newcommand{\CS}{*} % 通讯作者 5 | \newcommand{\CF}{\textsuperscript{\#}} % 共同一作 6 | 7 | \CS 通讯作者,\CF 共同一作 8 | \begin{etaremune} 9 | \item Li, J.\CS, Sun, D., \Me\ (2024). 10 | Localized Ultra-Low Velocity Zone as a Strong Scatterer at the Core-Mantle Boundary Beneath Central America. 11 | \emph{Journal of Geophysical Research: Solid Earth}, \emph{129}(12), e2024JB029287. 12 | \DOI{10.1029/2024JB029287} 13 | \item Li, J.\CS, \Me, Sun, D., Tong, P. (2024). 14 | D'' structures beneath the East China Sea resolved by P-wave slowness anomalies. 15 | \emph{Journal of Geophysical Research: Solid Earth}, \emph{129}(11), e2024JB029584. 16 | \DOI{10.1029/2024JB029584} 17 | \item \Me\ (2024). 18 | HinetPy: A Python package for accessing and processing NIED Hi-net seismic data. 19 | \emph{Journal of Open Source Software}, \emph{9}(98), 6840. 20 | \DOI{10.21105/joss.06840} 21 | \item Li, J.\CS, Zhang, B., Sun, D., \Me, \JYao\ (2024). 22 | Detailed 3D structures of the western edge of the Pacific Large Low Velocity Province. 23 | \emph{Journal of Geophysical Research: Solid Earth}, \emph{129}(4), e2023JB028032. 24 | \DOI{10.1029/2023JB028032} 25 | \item \Me\CS, \& \LWen\ (2023). 26 | Comment on ``Inner Core Rotation Captured by Earthquake Doublets and Twin Stations'' by Yang and Song. 27 | \emph{Geophysical Research Letters}, \emph{50}(15), e2023GL103173. 28 | \DOI{10.1029/2023GL103173} 29 | \item \Me\CS, \SWei\CS, \WWang, \& \FWang\ (2022). 30 | Stress drops of intermediate-depth and deep earthquakes in the Tonga slab. 31 | \emph{Journal of Geophysical Research: Solid Earth}, \emph{127}, e2022JB025109. 32 | \DOI{10.1029/2022JB025109} 33 | \item \JYao\CS, \Me, \LSun, \& \LWen\ (2021). 34 | Comment on ``Origin of temporal changes of inner-core seismic waves'' by Yang and Song (2020). 35 | \emph{Earth and Planetary Science Letters}, \emph{553}, 116640. 36 | \DOI{10.1016/j.epsl.2020.116640} 37 | \item \SWei\CS, \PShearer, \CLithgowBertelloni, \LStixrude, \& \Me\ (2020). 38 | Oceanic plateau of the Hawaiian mantle plume head subducted to the uppermost lower mantle. 39 | \emph{Science}, \emph{370}, 983--987. 40 | \DOI{10.1126/science.abd0312} 41 | \item \Me\CS, \MLv, \SWei, \SDorfman, \& \PShearer\ (2020). 42 | Global variations of Earth's 520- and 560-km discontinuities. 43 | \emph{Earth and Planetary Science Letters}, \emph{552}, 116600. \\ 44 | \DOI{10.1016/j.epsl.2020.116600} 45 | \item 46 | \PWessel\CS, \JLuis, \LUieda, \RScharroo, \FWobbe, \WSmith, \& \Me\ (2019). 47 | The Generic Mapping Tools Version 6. 48 | \emph{Geochemistry, Geophysics, Geosystems}, \emph{20}(11), 5556--5564. 49 | \DOI{10.1029/2019GC008515} 50 | \item 51 | \JYao\CS, \Me, \LSun, \& \LWen\ (2019). 52 | Temporal change of seismic Earth's inner core phases: inner core differential rotation or temporal change of inner core surface? 53 | \emph{Journal of Geophysical Research: Solid Earth}, \emph{124}(7), 6720--6736. 54 | \DOI{10.1029/2019JB017532} 55 | \item 56 | \WFan\CS, \SWei, \Me, \JMcGurie, \& \DWiens\ (2019). 57 | Complex and diverse rupture processes of the 2018 Mw 8.2 and Mw 7.9 Tonga-Fiji deep earthquakes. 58 | \emph{Geophysical Research Letters}, \emph{46}(5), 2434--2448. 59 | \DOI{10.1029/2018GL080997} 60 | \item 61 | \JYao\CF\CS, \Me\CF, \ZLu, \LSun, \& \LWen\ (2018). 62 | Triggered seismicity after North Korea's 3 September 2017 nuclear test. 63 | \emph{Seismological Research Letters}, \emph{89}(6), 2085--2093. 64 | \DOI{10.1785/0220180135} 65 | \item 66 | \JYao\CF\CS, \Me\CF, \LSun, \& \LWen\ (2018). 67 | Source characteristics of North Korea's 3 September 2017 nuclear test. 68 | \emph{Seismological Research Letters}, \emph{89}(6), 2078--2084. 69 | \DOI{10.1785/0220180134} 70 | \item 71 | \Me\CF\CS, \JYao\CF, \& \LWen\ (2018). 72 | Collapse and earthquake swarm after North Korea's 3 September 2017 nuclear test. 73 | \emph{Geophysical Research Letters}, \emph{45}(9), 3976--3983. 74 | \DOI{10.1029/2018GL077649} 75 | \item 76 | 温联星\CS, \textbf{田冬冬}, 姚家园 (2018). 77 | 地球内核及其边界的结构特征和动力学过程. 78 | \emph{地球物理学报}, \emph{61}(3), 803--818. 79 | \DOI{10.6038/cjg2018L0500} 80 | \item 81 | \Me, \& \LWen\CS\ (2017). 82 | Seismological evidence for a localized mushy zone at the Earth's inner core boundary. 83 | \emph{Nature Communications}, 8, 165. 84 | \DOI{10.1038/s41467-017-00229-9} 85 | \item 86 | \XChen\CS, \Me, \& \LWen\ (2015). 87 | Microseismic sources during Hurricane Sandy. 88 | \emph{Journal of Geophysical Research: Solid Earth}, \emph{120}(9), 6386--6403. 89 | \DOI{10.1002/2015JB012282} 90 | \item \MZhang\CS, \Me, \& \LWen\ (2014). 91 | A new method for earthquake depth determination: stacking multiple-station autocorrelograms. 92 | \emph{Geophysical Journal International}, \emph{197}(2), 1107--1116. 93 | \DOI{10.1093/gji/ggu044} 94 | \end{etaremune} 95 | 96 | 97 | %\subsection*{尚未发表论文(审稿中/修改中)} 98 | %\begin{etaremune} 99 | %\end{etaremune} 100 | -------------------------------------------------------------------------------- /cn/software.tex: -------------------------------------------------------------------------------- 1 | \section{开源软件} 2 | 3 | \begin{EntriesTable}{0.10}{0.02}{0.88} 4 | 2014至今 & \textbf{HinetPy} | \url{https://github.com/seisman/HinetPy/} \newline 5 | 用于从 Hi-net 网站申请和处理地震波形数据的 Python 包 \newline 6 | 唯一开发者 \\ 7 | 2018至今 & \textbf{PyGMT} | \url{https://www.pygmt.org/} \newline 8 | 地学制图工具 GMT 的 Python 接口 \newline 9 | 核心开发者 \\ 10 | 2018至今 & \textbf{GMT} | \url{https://www.generic-mapping-tools.org/} \newline 11 | 地学制图工具 Generic Mapping Tools. \newline 12 | 核心开发者 \\ 13 | \end{EntriesTable} 14 | -------------------------------------------------------------------------------- /cn/students.tex: -------------------------------------------------------------------------------- 1 | \section{指导学生} 2 | 3 | \subsection{博士研究生} 4 | \begin{itemize} 5 | \item 刘璇,中国地质大学(武汉),2022/09-- (硕博连读) 6 | \end{itemize} 7 | 8 | \subsection{硕士研究生} 9 | \begin{itemize} 10 | \item 赵浩亮,中国地质大学(武汉),2023/09-- 11 | \item 刘小余,中国地质大学(武汉),2023/09-- 12 | \item 晏俊,中国地质大学(武汉),2024/09-- 13 | \end{itemize} 14 | 15 | \subsection{本科生} 16 | \begin{itemize} 17 | \item 周新宇,中国地质大学(武汉),2024/09-- 18 | \item 买鸿轩,中国地质大学(武汉),2023/11--2024/06 19 | \item 宋杨奇,中国地质大学(武汉),2022/02--2022/06 20 | \end{itemize} 21 | -------------------------------------------------------------------------------- /cn/teaching.tex: -------------------------------------------------------------------------------- 1 | \section{教学经验} 2 | 3 | \subsection{本科生课程} 4 | \begin{itemize} 5 | \item 连续介质力学(2025) 6 | \item 地球科学绘图基础(2025) 7 | \end{itemize} 8 | 9 | \subsection{研讨会} 10 | \begin{itemize} 11 | \item UNAVCO 短期课程 ``The Generic Mapping Tools for Geodesy'',指导讲师(2019--2022) 12 | \item AGU 秋季会议研讨会 SCIWS4: ``Become a Generic Mapping Tools Contributor Even If You Can't Code'',指导讲师 (2019) 13 | \item InSAR 理论与实践暑期课程 ``GMTSAR and Beyond'',指导讲师(2024) 14 | \end{itemize} 15 | -------------------------------------------------------------------------------- /en/abstracts.tex: -------------------------------------------------------------------------------- 1 | \section{Meeting Abstracts} 2 | 3 | \subsection{Oral} 4 | 5 | \begin{etaremune} 6 | \item 7 | \SWei, \& \Me\ (2022). 8 | Stress drops of small-to-moderate earthquakes beneath the Alaska Peninsula. 9 | 2022 AGU Fall Meeting, Chicago, IL, USA. ID: S42A-02. 10 | \item 11 | \YZhang, \SWei, Byrnes, J. S., \Me, \FWang, \& Bezada M. (2022). 12 | P-wave attenuation structure of the Tonga subduction zone and implications for mantle wedge processes. 13 | 2022 AGU Fall Meeting, Chicago, IL, USA. ID: DI23A-06. 14 | \item 15 | \Me\ (2022). 16 | Source spectra and stress drops of small-to-moderate earthquakes beneath Tonga and the Alaska Peninsula. 17 | 2022/2021 Annual Meeting of Chinese Geosciecen Union, online. 18 | \item 19 | Meghan, J., Grund, M., Schlitzer, W., Leong, W. J., \Me, \JYao, \& \LUieda\ (2021). 20 | PyGMT: An open-source Python library for geospatial processing, analysis, and visualization. 21 | 2021 AGU Fall Meeting, online. ID: IN55C-08. 22 | \item 23 | \SWei, \YZhang, \Me, \& \DWiens\ (2021). 24 | New advances in body-wave attenuation studies of the Tonga subduction zone. 25 | 2021 AGU Fall Meeting, online. ID: S23B-05. 26 | \item 27 | \SWei, \PShearer, \CLithgowBertelloni, \LStixrude, \& \Me\ (2021). 28 | Oceanic plateau of the Hawaiian mantle plume head subducted to the uppermost lower mantle. 29 | EGU General Assembly 2021, online. ID: EGU21-13874. 30 | \item 31 | \Me, \& \SWei\ (2021). 32 | Source spectra and stress drops of small-to-moderate earthquakes beneath the Alaska peninsula. 33 | 2021 AGU Fall Meeting, online. ID: T54A-11. 34 | \item 35 | \Me, \& \LWen\ (2017). 36 | Seismological evidence for a localized mushy zone at the Earth's inner core boundary. 37 | 2017 Annual Meeting of Chinese Geoscience Union, Beijing, China. 38 | \end{etaremune} 39 | 40 | \subsection{Poster} 41 | 42 | \begin{etaremune} 43 | \item 44 | \YZhang, Byrnes, J. S., \SWei, \Me, \FWang, \& Bezada M. (2021). 45 | P-wave attenuation tomography of the Tonga-Lau mantle wedge improved 46 | by a Bayesian Monte Carlo approach and independently constrained source spectra. 47 | 2021 AGU Fall Meeting, online. ID: S25D-0276. 48 | \item 49 | \Me, \WWang, \FWang, \& \SWei\ (2020). 50 | Source spectra of intermediate-depth and deep earthquakes in the Tonga subduction zone. 51 | 2020 AGU Fall Meeting, online. ID: S054-0012. 52 | \item 53 | \SWei, \Me, \PShearer, \MLv, \SDorfman, \CLithgowBertelloni, \& \LStixrude\ (2020). 54 | Compositional heterogeneities in the mid-mantle revealed by seismic discontinuities and reflectors. 55 | 2020 AGU Fall Meeting, online. ID: DI016-0008. 56 | \item 57 | \Me, \WWang, \& \SWei\ (2019). 58 | Source spectra and stress drop of deep earthquakes in the Tonga subduction zone. 59 | 2019 AGU Fall Meeting, San Francisco, CA, USA. ID: S13C-0458. 60 | \item 61 | \Me, \SWei, \& \PShearer\ (2019). 62 | Global variations of the 520-km discontinuity. 63 | Gordon Research Conference: Interior of the Earth, South Hadley, MA, USA. 64 | \item 65 | \Me, \SWei, \& \PShearer\ (2018). 66 | Global variations of the 520-km discontinuity. 67 | 2018 AGU Fall Meeting, Washington, DC, USA. ID: DI31C-0024. 68 | \item 69 | \Me, \JYao, \& \LWen\ (2017). 70 | Collapse and earthquake swarm after North Korea's 3 September 2017 nuclear test. 71 | 2017 AGU Fall Meeting, New Orleans, LA, USA. ID: S43H-2968. 72 | \item 73 | \Me, \& \LWen\ (2017). 74 | Three types of Earth's inner core boundary. 75 | 2017 AGU Fall Meeting, New Orleans, LA, USA. ID: DI33B-0404. 76 | \item 77 | \JYao, \Me, \& \LWen\ (2017). 78 | High-precision location, yield and tectonic release of North Korea's 3 September 2017 nuclear test. 79 | 2017 AGU Fall Meeting, New Orleans, LA, USA. ID: S43H-2967. 80 | \item 81 | \JYao, \Me, \LSun, \& \LWen\ (2017). 82 | Temporal change of seismic Earth's inner core phases: Inner core differential rotation or temporal change of inner core surface? 83 | 2017 AGU Fall Meeting, New Orleans, LA, USA. ID: DI33B-0405. 84 | \item 85 | \Me, \& \LWen\ (2017). 86 | Seismological evidence for a localized mushy zone at the Earth's inner core boundary. 87 | Gordon Research Conference: Interior of the Earth, South Hadley, MA, USA. 88 | \item 89 | \JYao, \Me, \LSun, \& \LWen\ (2017). 90 | Temporal change of seismic Earth's inner core phases: Inner core differential rotation or temporal change of inner core surface? 91 | Gordon Research Conference: Interior of the Earth, South Hadley, MA, USA. 92 | \item 93 | \Me, \& \LWen\ (2016). 94 | Seismic structures of the Earth's inner core boundary beneath the Bearing sea and Mexico. 95 | 2016 AGU Fall Meeting, San Francisco, CA, USA. ID: DI43A-2657. 96 | \item 97 | \Me, \& \LWen\ (2015). 98 | Varying seismic property of the Earth's inner core boundary. 99 | 2015 AGU Fall Meeting, San Francisco, CA, USA. ID: DI33A-2606. 100 | \item 101 | \Me, \& \LWen\ (2014). 102 | Seismic study on the properties of the Earth's inner core boundary. 103 | 2014 AGU Fall Meeting, San Francisco, CA, USA. ID: DI31B-4269. 104 | \item 105 | \Me, \& \LWen (2014). 106 | Topography and properties of the Earth's inner core boundary. 107 | 2014 Annual Meeting of Chinese Geophysical Society, Beijing, China. 108 | \item 109 | \XChen, \Me, \& \LWen\ (2013). 110 | Seismic tracking of Hurricane Sandy. 111 | 2013 AGU Fall Meeting, San Francisco, CA, USA. ID: S11A-2296. 112 | \item 113 | \Me, \& \LWen\ (2013). 114 | Regional topography variation of Earth's inner core boundary. 115 | 2013 AGU Fall Meeting, San Francisco, CA, USA. ID: DI23A-2282. 116 | \item 117 | \MZhang, \Me, \& \LWen\ (2013). 118 | A new method for earthquake determination: stacking multiple-station autocorrelograms. 119 | 2013 AGU Fall Meeting, San Francisco, CA, USA. ID: S51A-2301. 120 | \item 121 | \Me, \& \LWen\ (2013). 122 | Simulating wave propagation in a faulted medium using a finite difference method. 123 | 2013 Annual Meeting of Chinese Geophysical Society, Kunming, Yunnan, China. 124 | \item 125 | \Me, \& \LWen\ (2012). 126 | Simulating wave propagation in a faulted medium using a 3D finite difference method. 127 | 2012 AGU Fall Meeting, San Francisco, CA, USA. ID: S43A-2458. 128 | \end{etaremune} 129 | -------------------------------------------------------------------------------- /en/activities.tex: -------------------------------------------------------------------------------- 1 | \section{Professional Societies \& Services} 2 | 3 | \subsection{Professional Societies} 4 | \begin{itemize} 5 | \item Member of \href{https://sites.agu.org/}{American Geophysical Union (AGU)} (since 2012) 6 | \item Member of \href{http://www.cgscgs.org.cn/}{Chinese Geophysical Society (CGS)} (since 2022) 7 | \item Member of \href{https://www.ssoc.org.cn/}{Seismological Society of China} (since 2024) 8 | \end{itemize} 9 | 10 | \subsection{Professional Services} 11 | \begin{itemize} 12 | \item Associate Editor, Earthquake Research Advances (since 2024) 13 | \item Member, Seismology Committee, Seismological Society of China (since 2024) 14 | \item Member, Generic Mapping Tools (GMT) Steering Committee (since 2024) 15 | \item Peer-reviewer of scientific journals/grants: 16 | \emph{Nature Communications}, 17 | \emph{Journal of Geophysical Research: Solid Earth}, 18 | \emph{Geophysical Research Letters}, 19 | \emph{Seismological Research Letters}, 20 | \emph{Review of Scientific Instruments}, 21 | \emph{Journal of Open Source Software}, 22 | \emph{Results in Geophysical Sciences}, 23 | \emph{North China Earthquake Sciences}, 24 | \emph{Young Scientists Fund of the National Natural Science Foundation of China} 25 | \item Founder of the \href{https://blog.seisman.info}{SeisMan blog} (2013), 26 | \href{http://gmt-china.org/}{GMT China Community} (2016) 27 | and \href{https://seismo-learn.org/}{seismo-learn} (2020) 28 | \item Core developer of the \href{https://github.com/GenericMappingTools/gmt}{Generic Mapping Tools (GMT)} and 29 | \href{https://github.com/GenericMappingTools/pygmt}{PyGMT} (since 2018) 30 | \item Research assistant and database manager for \href{http://chinageorefmodel.org/}{China Seismological Reference Model} (2016--2018) 31 | \item Judge for the Outstanding Student Paper Award, AGU Fall Meeting (2018--2020) 32 | \item Member of the working group for \href{http://chinageorefmodel.org/}{China Seismological Reference Model} (since 2023) 33 | \end{itemize} 34 | 35 | \subsection{Departmental Services} 36 | \begin{itemize} 37 | \item Member of the Academic Degree Evaluation Subcommittee, SGG, CUG (2023--2025) 38 | \end{itemize} 39 | -------------------------------------------------------------------------------- /en/awards.tex: -------------------------------------------------------------------------------- 1 | \section{Awards \& Honors} 2 | 3 | \begin{EntriesTable}{0.05}{0.02}{0.93} 4 | 2021 & One Hundred Talents Program, China University of Geosciences, China \\ 5 | 2018 & President Award, Chinese Academy of Sciences, China \\ 6 | 2018 & Outstanding Graduate Student, University of Science and Technology of China, China \\ 7 | 2017 & Outstanding Student Paper Award, 2017 Annual Meeting of Chinese Geoscience Union, China \\ 8 | 2017 & National Scholarship for Doctoral Students, Ministry of Education, China \\ 9 | % 2014 & Kwang-Hua Scholarship, Kwang-Hua Education Foundation, China \\ 10 | % 2010 & Kwang-Hua Scholarship, Kwang-Hua Education Foundation, China \\ 11 | % 2009 & Excellent Volunteer, University of Science and Technology of China, China \\ 12 | \end{EntriesTable} 13 | -------------------------------------------------------------------------------- /en/cv.tex: -------------------------------------------------------------------------------- 1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2 | % A LaTeX template for academic CV 3 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 4 | \documentclass[11pt,a4paper]{article} 5 | 6 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 7 | % Custom Information 8 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 9 | % Identifying information 10 | \newcommand{\Title}{Curriculum Vit\ae} 11 | \newcommand{\Name}{TIAN Dongdong} 12 | \newcommand{\CNName}{田冬冬} 13 | \newcommand{\Role}{Professor in Geophysics} 14 | \newcommand{\Email}{dtian@cug.edu.cn} 15 | \newcommand{\Website}{me.seisman.info} 16 | \newcommand{\Github}{seisman} 17 | \newcommand{\Orcid}{0000-0001-7967-1197} 18 | \newcommand{\Affiliation}{School of Geophysics and Geomatics (SGG) \\ China University of Geosciences (CUG)} 19 | \newcommand{\Address}{Room 512B, Archives Building \\ 388 Lumo Rd, Wuhan, China} 20 | 21 | % Citing names of collaborators in publications 22 | \newcommand{\Me}{\textbf{Tian, D.}} % highlight my name 23 | \newcommand{\XChen}{Chen, X.} 24 | \newcommand{\SDorfman}{Dorfman, S. M.} 25 | \newcommand{\WFan}{Fan, W.} 26 | \newcommand{\CLithgowBertelloni}{Lithgow-Bertelloni, C.} 27 | \newcommand{\ZLu}{Lu, Z.} 28 | \newcommand{\JLuis}{Luis, J.} 29 | \newcommand{\MLv}{Lv, M.} 30 | \newcommand{\JMcGurie}{McGuire, J. J.} 31 | \newcommand{\RScharroo}{Scharroo, R.} 32 | \newcommand{\PShearer}{Shearer, P. M.} 33 | \newcommand{\WSmith}{Smith, W. H. F.} 34 | \newcommand{\LStixrude}{Stixrude, L.} 35 | \newcommand{\LSun}{Sun, L.} 36 | \newcommand{\LUieda}{Uieda, L.} 37 | \newcommand{\WWang}{Wang, W.} 38 | \newcommand{\FWang}{Wang, F.} 39 | \newcommand{\SWei}{Wei, S. S.} 40 | \newcommand{\LWen}{Wen, L.} 41 | \newcommand{\PWessel}{Wessel, P.} 42 | \newcommand{\DWiens}{Wiens, D. A.} 43 | \newcommand{\FWobbe}{Wobbe, F.} 44 | \newcommand{\JYao}{Yao, J.} 45 | \newcommand{\MZhang}{Zhang, M.} 46 | \newcommand{\YZhang}{Zhang, Y.} 47 | 48 | % Useful macros 49 | \newcommand{\DOI}[1]{doi:\href{https://dx.doi.org/#1}{#1}} 50 | 51 | % ctex is needed to show my Chinese name 52 | \usepackage[fontset=fandol]{ctex} 53 | % Set the page margins 54 | \usepackage[margin=2.5cm]{geometry} 55 | % Set fonts 56 | \usepackage{fontspec} 57 | \usepackage[default,semibold]{sourcesanspro} 58 | 59 | % Use fontawesome icons 60 | \usepackage[fixed]{fontawesome5} 61 | 62 | % numbering items in reversed orders 63 | \usepackage[itemsep=2pt]{etaremune} 64 | 65 | % Control the font size 66 | \usepackage{anyfontsize} 67 | 68 | % Define command to insert month name and year as date 69 | \usepackage{datetime} 70 | \newdateformat{monthyear}{\THEYEAR/\twodigit{\THEMONTH}} 71 | 72 | % Control the spacing before and after section title 73 | \usepackage{titlesec} 74 | \titlespacing*{\section}{0pt}{1ex}{1ex} 75 | % Disable numbering of section and subsection 76 | \titleformat{\section}{\normalfont\Large\bfseries}{}{0pt}{} 77 | \titleformat{\subsection}{\normalfont\large\bfseries}{}{0.5em}{} 78 | 79 | % Control line spacing 80 | \renewcommand{\baselinestretch}{1.2} 81 | % Control vertical spacing of tables 82 | \renewcommand{\arraystretch}{1.2} 83 | \setlength{\parindent}{0pt} % no indent for paragraph 84 | 85 | % Control space between items in itemize and enumerate 86 | \usepackage{enumitem} 87 | \setlist{itemsep=0pt} 88 | 89 | % Fancy and long tables 90 | \usepackage{tabularx} 91 | \usepackage{ltablex} 92 | \usepackage{environ} 93 | \NewEnviron{EntriesTable}[3]{ 94 | \vspace{-1.25em} 95 | \begin{tabularx}{\textwidth}{p{#1\textwidth}@{\hspace{#2\textwidth}}p{#3\textwidth}} 96 | \BODY 97 | \end{tabularx} 98 | } 99 | 100 | % Get the total number of pages 101 | \usepackage{lastpage} 102 | 103 | % Set fancy headers 104 | \usepackage{fancyhdr} 105 | \pagestyle{fancy} 106 | \fancyhf{} 107 | \chead{ 108 | \itshape 109 | \fontsize{10pt}{12pt}\selectfont 110 | \Name 111 | \hspace{0.2cm} -- \hspace{0.2cm} 112 | \Title 113 | \hspace{0.2cm} -- \hspace{0.2cm} 114 | \monthyear\today 115 | } 116 | \rhead{} 117 | \cfoot{\fontsize{10pt}{0}\selectfont \thepage/\pageref*{LastPage}} 118 | \renewcommand{\headrulewidth}{0pt} 119 | 120 | % Use custom colors 121 | \usepackage[usenames,dvipsnames]{xcolor} 122 | 123 | % Metadata for the PDF output and control of hyperlinks 124 | \usepackage[colorlinks=true]{hyperref} 125 | \hypersetup{ % document metadata 126 | pdftitle = {\Name\ - \Title}, 127 | pdfauthor = {\Name}, 128 | linkcolor=black, 129 | citecolor=black, 130 | filecolor=black, 131 | urlcolor=MidnightBlue, 132 | } 133 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 134 | 135 | \begin{document} 136 | 137 | % CV header 138 | \thispagestyle{empty} % No header for the first page 139 | { 140 | \fontfamily{ptm} 141 | \begin{center} 142 | {\fontsize{24pt}{0}\selectfont \Name \hspace{1ex} \kaishu{\CNName}} \\[0.4cm] 143 | {\fontsize{16pt}{0}\selectfont \Role} \\[0.2cm] 144 | \end{center} 145 | \begin{minipage}[t]{0.7\textwidth} 146 | \fontsize{12pt}{15pt}\selectfont 147 | \Affiliation 148 | \\ 149 | \Address 150 | \end{minipage} 151 | \begin{minipage}[t]{0.3\textwidth} 152 | \fontsize{12pt}{15pt}\selectfont 153 | \begin{flushleft} 154 | \faEnvelope \href{mailto:\Email}{\Email} 155 | \\ 156 | \faOrcid \href{https://orcid.org/\Orcid}{\Orcid} 157 | \\ 158 | \faGlobe \href{https://\Website}{\Website} 159 | \\ 160 | \faGithub \href{https://github.com/\Github}{\Github} 161 | \end{flushleft} 162 | \end{minipage} 163 | } 164 | \vspace{0.2cm} 165 | 166 | \input{education} 167 | \input{employment} 168 | \input{interests} 169 | \input{activities} 170 | \input{awards} 171 | \input{funds} 172 | \input{publications} 173 | \input{abstracts} 174 | \input{presentations} 175 | \input{teaching} 176 | \input{students} 177 | \input{fieldwork} 178 | \input{software} 179 | 180 | \end{document} 181 | -------------------------------------------------------------------------------- /en/education.tex: -------------------------------------------------------------------------------- 1 | \section{Education} 2 | 3 | \begin{EntriesTable}{0.05}{0.02}{0.93} 4 | 2018 & Ph.D in Geophysics, University of Science and Technology of China (USTC), Hefei, China \\ 5 | 2012 & B.S. in Geophysics, University of Science and Technology of China (USTC), Hefei, China \\ 6 | \end{EntriesTable} 7 | -------------------------------------------------------------------------------- /en/employment.tex: -------------------------------------------------------------------------------- 1 | \section{Employment} 2 | 3 | \begin{EntriesTable}{0.18}{0.02}{0.80} 4 | 2022/12--present & Professor, School of Geophysics and Geomatics, China University of Geosciences \\ 5 | 2021/11--2022/11 & Associate Professor, School of Geophysics and Geomatics, China University of Geosciences \\ 6 | 2018/08--2021/09 & Postdoctoral Research Associate, Department of Earth and Environmental Sciences, Michigan State University \\ 7 | \end{EntriesTable} 8 | -------------------------------------------------------------------------------- /en/fieldwork.tex: -------------------------------------------------------------------------------- 1 | \section{Field Experience} 2 | 3 | \begin{itemize} 4 | \item \textbf{LEEP} (\textbf{L}ake \textbf{E}rie \textbf{E}arthquake ex\textbf{P}eriment), 5 | 2018/10/12--2018/10/16, install 8 broadband seismic stations around Lake Erie 6 | \end{itemize} 7 | -------------------------------------------------------------------------------- /en/funds.tex: -------------------------------------------------------------------------------- 1 | \section{Received Funds} 2 | 3 | \begin{itemize} 4 | \item Outstanding Youth Team of Central Universities, CUG, \textyen 50k, 2023/01--2024/12, Rank 5/6 5 | \item National Natural Science Foundation of China, No. 42274122, \textyen\ 560k, 2023/01--2026/12, PI 6 | \item Startup, One Hundred Talents Program, CUG, \textyen\ 2,000k, 2021/11--2026/12, PI 7 | \end{itemize} 8 | -------------------------------------------------------------------------------- /en/interests.tex: -------------------------------------------------------------------------------- 1 | \section{Research Interests} 2 | 3 | \begin{itemize} 4 | \item Structure of the Earth's Deep Interior 5 | \item Theory and Observations of Earthquake Source 6 | \item Theory of Seismic Wave Propagation 7 | \end{itemize} 8 | -------------------------------------------------------------------------------- /en/presentations.tex: -------------------------------------------------------------------------------- 1 | \section{Invited Presentations} 2 | 3 | \begin{EntriesTable}{0.10}{0.04}{0.86} 4 | 2021/01/07 & Nanjing University \\ 5 | 2020/11/27 & Southern University of Science and Technology \\ 6 | 2019/02/23 & Michigan State University \\ 7 | 2018/06/15 & Institute of Geology and Geophysics, Chinese Academy of Sciences \\ 8 | 2018/06/14 & Institute of Earthquake Forcasting, China Earthquake Administration \\ 9 | 2016/09/21 & Hubei Earthquake Administration \\ 10 | 2016/06/30 & China Earthquake Networks Center \\ 11 | \end{EntriesTable} 12 | -------------------------------------------------------------------------------- /en/publications.tex: -------------------------------------------------------------------------------- 1 | \section{Peer-reviewed Publications} 2 | % AGU style: https://publications.agu.org/agu-grammar-and-style-guide/ 3 | \newcommand{\Revision}{\emph{under revision}} 4 | \newcommand{\CS}{*} % corresponding author 5 | \newcommand{\CF}{\textsuperscript{\#}} % co-first author 6 | 7 | \CS corresponding author, \CF co-first author. 8 | \begin{etaremune} 9 | \item Li, J.\CS, Sun, D., \Me\ (2024). 10 | Localized Ultra-Low Velocity Zone as a Strong Scatterer at the Core-Mantle Boundary Beneath Central America. 11 | \emph{Journal of Geophysical Research: Solid Earth}, \emph{129}(12), e2024JB029287. 12 | \DOI{10.1029/2024JB029287} 13 | \item Li, J.\CS, \Me, Sun, D., Tong, P. (2024). 14 | D'' structures beneath the East China Sea resolved by P-wave slowness anomalies. 15 | \emph{Journal of Geophysical Research: Solid Earth}, \emph{129}(11), e2024JB029584. 16 | \DOI{10.1029/2024JB029584} 17 | \item \Me\ (2024). 18 | HinetPy: A Python package for accessing and processing NIED Hi-net seismic data. 19 | \emph{Journal of Open Source Software}, \emph{9}(98), 6840. 20 | \DOI{10.21105/joss.06840} 21 | \item Li, J.\CS, Zhang, B., Sun, D., \Me, \JYao\ (2024). 22 | Detailed 3D structures of the western edge of the Pacific Large Low Velocity Province. 23 | \emph{Journal of Geophysical Research: Solid Earth}, \emph{129}(4), e2023JB028032. 24 | \DOI{10.1029/2023JB028032} 25 | \item \Me\CS, \& \LWen\ (2023). 26 | Comment on ``Inner Core Rotation Captured by Earthquake Doublets and Twin Stations'' by Yang and Song. 27 | \emph{Geophysical Research Letters}, \emph{50}(15), e2023GL103173. 28 | \DOI{10.1029/2023GL103173} 29 | \item \Me\CS, \SWei\CS, \WWang, \& \FWang\ (2022). 30 | Stress drops of intermediate-depth and deep earthquakes in the Tonga slab. 31 | \emph{Journal of Geophysical Research: Solid Earth}, \emph{127}, e2022JB025109. 32 | \DOI{10.1029/2022JB025109} 33 | \item \JYao\CS, \Me, \LSun, \& \LWen\ (2021). 34 | Comment on ``Origin of temporal changes of inner-core seismic waves'' by Yang and Song (2020). 35 | \emph{Earth and Planetary Science Letters}, \emph{553}, 116640. 36 | \DOI{10.1016/j.epsl.2020.116640} 37 | \item \SWei\CS, \PShearer, \CLithgowBertelloni, \LStixrude, \& \Me\ (2020). 38 | Oceanic plateau of the Hawaiian mantle plume head subducted to the uppermost lower mantle. 39 | \emph{Science}, \emph{370}, 983--987. 40 | \DOI{10.1126/science.abd0312} 41 | \item \Me\CS, \MLv, \SWei, \SDorfman, \& \PShearer\ (2020). 42 | Global variations of Earth's 520- and 560-km discontinuities. 43 | \emph{Earth and Planetary Science Letters}, \emph{552}, 116600. \\ 44 | \DOI{10.1016/j.epsl.2020.116600} 45 | \item 46 | \PWessel\CS, \JLuis, \LUieda, \RScharroo, \FWobbe, \WSmith, \& \Me\ (2019). 47 | The Generic Mapping Tools Version 6. 48 | \emph{Geochemistry, Geophysics, Geosystems}, \emph{20}(11), 5556--5564. 49 | \DOI{10.1029/2019GC008515} 50 | \item 51 | \JYao\CS, \Me, \LSun, \& \LWen\ (2019). 52 | Temporal change of seismic Earth's inner core phases: inner core differential rotation or temporal change of inner core surface? 53 | \emph{Journal of Geophysical Research: Solid Earth}, \emph{124}(7), 6720--6736. 54 | \DOI{10.1029/2019JB017532} 55 | \item 56 | \WFan\CS, \SWei, \Me, \JMcGurie, \& \DWiens\ (2019). 57 | Complex and diverse rupture processes of the 2018 Mw 8.2 and Mw 7.9 Tonga-Fiji deep earthquakes. 58 | \emph{Geophysical Research Letters}, \emph{46}(5), 2434--2448. 59 | \DOI{10.1029/2018GL080997} 60 | \item 61 | \JYao\CF\CS, \Me\CF, \ZLu, \LSun, \& \LWen\ (2018). 62 | Triggered seismicity after North Korea's 3 September 2017 nuclear test. 63 | \emph{Seismological Research Letters}, \emph{89}(6), 2085--2093. 64 | \DOI{10.1785/0220180135} 65 | \item 66 | \JYao\CF\CS, \Me\CF, \LSun, \& \LWen\ (2018). 67 | Source characteristics of North Korea's 3 September 2017 nuclear test. 68 | \emph{Seismological Research Letters}, \emph{89}(6), 2078--2084. 69 | \DOI{10.1785/0220180134} 70 | \item 71 | \Me\CF\CS, \JYao\CF, \& \LWen\ (2018). 72 | Collapse and earthquake swarm after North Korea's 3 September 2017 nuclear test. 73 | \emph{Geophysical Research Letters}, \emph{45}(9), 3976--3983. 74 | \DOI{10.1029/2018GL077649} 75 | \item 76 | \LWen\CS, \Me, \& \JYao\ (2018). 77 | Seismic structure and dynamic process of the Earth's inner core and its boundary. 78 | \emph{Chinese Journal of Geophysics}, \emph{61}(3), 803--818. 79 | \DOI{10.6038/cjg2018L0500} [in Chinese] 80 | \item 81 | \Me, \& \LWen\CS\ (2017). 82 | Seismological evidence for a localized mushy zone at the Earth's inner core boundary. 83 | \emph{Nature Communications}, 8, 165. 84 | \DOI{10.1038/s41467-017-00229-9} 85 | \item 86 | \XChen\CS, \Me, \& \LWen\ (2015). 87 | Microseismic sources during Hurricane Sandy. 88 | \emph{Journal of Geophysical Research: Solid Earth}, \emph{120}(9), 6386--6403. 89 | \DOI{10.1002/2015JB012282} 90 | \item \MZhang\CS, \Me, \& \LWen\ (2014). 91 | A new method for earthquake depth determination: stacking multiple-station autocorrelograms. 92 | \emph{Geophysical Journal International}, \emph{197}(2), 1107--1116. 93 | \DOI{10.1093/gji/ggu044} 94 | \end{etaremune} 95 | 96 | %\subsection*{Papers submitted/under revision} 97 | %\begin{etaremune} 98 | %\end{etaremune} 99 | -------------------------------------------------------------------------------- /en/software.tex: -------------------------------------------------------------------------------- 1 | \section{Open Source Software} 2 | 3 | \begin{EntriesTable}{0.18}{0.02}{0.8} 4 | 2014--present & \textbf{HinetPy} | \url{https://github.com/seisman/HinetPy/} \newline 5 | A Python package to request and process seismic waveform data from Hi-net. \newline 6 | Solo developer \\ 7 | 2018--present & \textbf{PyGMT} | \url{https://pygmt.org/} \newline 8 | A Python interface to the Generic Mapping Tools. \newline 9 | Leading developer \\ 10 | 2018--present & \textbf{GMT} | \url{https://www.generic-mapping-tools.org/} \newline 11 | Generic Mapping Tools. \newline 12 | Core developer \\ 13 | \end{EntriesTable} 14 | -------------------------------------------------------------------------------- /en/students.tex: -------------------------------------------------------------------------------- 1 | \section{Students Supervised} 2 | 3 | \subsection{Doctoral Students} 4 | \begin{itemize} 5 | \item LIU Xuan, CUG, 2022/09-- 6 | \end{itemize} 7 | 8 | \subsection{Master Students} 9 | \begin{itemize} 10 | \item ZHAO Haoliang, CUG, 2023/09-- 11 | \item LIU Xiaoyu, CUG, 2023/09-- 12 | \item YAN Jun, CUG, 2024/09-- 13 | \end{itemize} 14 | 15 | \subsection{Undergraduate Students} 16 | \begin{itemize} 17 | \item ZHOU Xinyu, CUG, 2024/09-- 18 | \item MAI Hongxuan, CUG, 2023/11--2024/06 19 | \item SONG Yangqi, CUG, 2022/02--2022/06 20 | \end{itemize} 21 | -------------------------------------------------------------------------------- /en/teaching.tex: -------------------------------------------------------------------------------- 1 | \section{Teaching Experience} 2 | 3 | \subsection{Undergraduate Courses} 4 | \begin{itemize} 5 | \item Continuum Mechanics (2025) 6 | \item Earth Science Plotting with GMT (2025) 7 | \end{itemize} 8 | 9 | \subsection{Workshops} 10 | \begin{itemize} 11 | \item Instructor, UNAVCO Short Course ``The Generic Mapping Tools for Geodesy'' (2019--2022) 12 | \item Instructor, Workshop SCIWS4: ``Become a Generic Mapping Tools Contributor Even If You Can't Code'', 2019 AGU Fall Meeting (2019) 13 | \item Instructor, InSAR Theory and Practice Summer Short Course: GMTSAR and Beyond (2024) 14 | \end{itemize} 15 | --------------------------------------------------------------------------------