Academic Homepage Design — Zeguan Xiao

Academic Homepage Design — Zeguan Xiao

Problem Statement

Populate the Academic Pages Jekyll template (already forked as ZeguanXiao/ZeguanXiao.github.io) with real personal and academic content so it can be published as a live academic website on GitHub Pages.

Decisions Made

DecisionChoiceRationale
ThemeairClean, modern, white top bar with blue accents
NavigationAbout (home) + PublicationsNo talks/teaching/portfolio content exists
Social linksEmail, Google Scholar, GitHubOnly links with actual presence
CV sectionOmittedNot requested; PDF resume available if needed later

Site Configuration (_config.yml)

title: "Zeguan Xiao"
name: "Zeguan Xiao"
description: "PhD Candidate in Management Science and Engineering"
url: "https://ZeguanXiao.github.io"
repository: "ZeguanXiao/ZeguanXiao.github.io"
site_theme: "air"

author:
  avatar: "profile.jpg"
  name: "Zeguan Xiao"
  bio: "Final-year PhD candidate @ SUFE. Research on LLM Safety, Alignment & Robustness."
  location: "Shanghai, China"
  employer: "Shanghai University of Finance and Economics"
  email: "hainanxzg@gmail.com"
  googlescholar: "https://scholar.google.com/citations?user=rgQWhpUAAAAJ"
  github: "ZeguanXiao"

All other social fields remain blank/commented out.


main:
  - title: "Publications"
    url: /publications/

Only the Publications link appears in the header. The homepage (About) is always accessible at /.


Profile Photo

Copy ~/Documents/Resume-xzg/picture.jpgimages/profile.jpg, and update avatar in _config.yml to "profile.jpg".


Homepage (_pages/about.md)

---
permalink: /
title: "About"
author_profile: true
---

I am a **final-year** PhD candidate in Management Science and Engineering at Shanghai University of Finance and Economics (SUFE), advised by [Prof. Yun Chen](https://yunc.me/). I am also a visiting student at the Southern University of Science and Technology (SUSTech), working with [Prof. Guanhua Chen](https://ghchen.me/). My research focuses on **LLM Safety, Alignment, and Robustness**, with particular interests in LLM unlearning, uncertainty estimation, and adversarial robustness.

I am actively looking for positions (both academia and industry). Feel free to reach out at [hainanxzg@gmail.com](mailto:hainanxzg@gmail.com)!

## Research Interests

- **LLM Unlearning** — capability-preserving unlearning, robustness against relearning attacks
- **LLM Alignment** — direct alignment algorithms, reward-generation gap
- **Robustness & Uncertainty** — stress testing, uncertainty estimation via aggregated internal belief
- **LLM Safety / Jailbreak** — automatic jailbreak attack, sequential character-based attacks

## Education

- **Ph.D.** in Management Science and Engineering, Shanghai University of Finance and Economics, 2022–2026
  Advisor: [Prof. Yun Chen](https://yunc.me/)
- **M.S.** in Computer Software and Theory, Jinan University, 2018–2021
- **B.S.** in Economic Statistics, Dongbei University of Finance and Economics, 2014–2018

Publications (_publications/)

8 files total, one per paper, sorted by date descending. Each file uses the standard front matter with collection: publications and category: set to manuscripts (journal/conference) or conferences.

FilenameTitleVenueYearCategory
2026-01-01-llm-unlearning-asymmetric.mdModeling LLM Unlearning as an Asymmetric Two-Task Learning ProblemarXiv:2604.14808 (Under review ACL 2026)2026manuscripts
2026-01-02-uncertainty-aggregated-belief.mdEnhancing Uncertainty Estimation in LLMs with Expectation of Aggregated Internal BeliefAAAI 20262026conferences
2025-01-01-reward-generation-gap.mdTowards Bridging the Reward-Generation Gap in Direct Alignment AlgorithmsarXiv:2506.09457 (Under review ACL 2026)2025manuscripts
2025-01-02-robustness-stress-testing.mdAutomatic Robustness Stress Testing of LLMs as Mathematical Problem SolversarXiv:2506.05038 (Under review ACL 2026)2025manuscripts
2025-01-03-seqar-jailbreak.mdSeqAR: Jailbreak LLMs with Sequential Auto-Generated CharactersNAACL 20252025conferences
2024-01-01-distract-jailbreak.mdDistract Large Language Models for Automatic Jailbreak AttackEMNLP 20242024conferences
2022-01-01-pruning-adaptperfusion.mdPruning AdaptPerFusion with Lottery Ticket HypothesisNAACL Findings 20222022conferences
2021-01-01-bert4gcn.mdBERT4GCN: Using BERT Intermediate Layers to Augment GCN for Aspect-based Sentiment ClassificationEMNLP 20212021conferences

Each publication’s excerpt will be a one-sentence description. paperurl will link to arXiv or the ACL Anthology where available. Author lists and citation counts from Google Scholar will be included in the body of each file.


Files to Modify / Create

FileAction
_config.ymlEdit — personal info, theme, social links
_data/navigation.ymlEdit — keep only Publications
_pages/about.mdEdit — replace template content
images/profile.jpgAdd — copy from resume folder
_publications/*.mdCreate — 8 new files, delete 5 template files
_posts/*.mdDelete — 5 template post files
_talks/*.mdDelete — 4 template talk files
_teaching/*.mdDelete — 2 template teaching files
_portfolio/*.mdDelete — 2 template portfolio files

Deployment

The repository ZeguanXiao/ZeguanXiao.github.io is already configured for GitHub Pages. After pushing, the site will be live at https://ZeguanXiao.github.io automatically via the pages-build-deployment workflow.