本文记录我在插入长表格遇到的一些问题及解决方法,包括重复表头、表尾(纵向显示),调整表格适应页面宽度(横向显示)。
文档输出
Beamer Application Notes: Header, Navigation symbols and Footer
This article presents how to customize the header, navigation symbols and footer in Beamer.
NetworkX Application Notes: Draw trees with pygraphviz
NetworkX only provides basic functionality for visualizing graphs. It looks ugly to draw trees with its built-in graph layout. This article presents how to draw beautiful trees with pygraphviz
and convert the format between NetworkX and Graphviz (dot).
NetworkX Application Notes: A better way to visualize graphs
NetworkX is not powerful enough to draw large graphs since it only provides basic functionality for visualizing graphs. This article presents a better way to visualize graphs, i.e. using layouts in Gephi.
LaTeX、Beamer、Markdown使用笔记:目录
本文将LaTeX、Beamer、Markdown使用笔记做一个索引,方便日后查看。
LaTeX Application Notes: Pseudocode (with examples)
This article presents two notable algorithm typesetting environments: algorithmic and algorithmicx with illustrated examples.
Split long equations into multiple lines in LaTeX
This article presents two ways to split long equations into multiple lines with and without alignment.
用markdown制作简单的个人主页
学校为每个研究者提供一个空间,用于存放个人学术主页,但只能是静态页面。搜了一下,没找到自己满意的模板。后来就想,用markdown编辑好,再转换成html。事实上,这样做还有一个好处,主页可以在不同设备上显示得很好。动手弄了一个,效果还不错,欢迎围观:Qiankun SU at INP-ENSEEIHT.
Draw with Matplotlib: Table of Contents
In this article, the series of posts “Draw with Matplotlib” is organized as a table of contents(TOC) for the convenience of access.
Draw with Matplotlib: (Stacked) Bar Charts with error bar
Bar charts (bar graphs) is commonly used to show comparisons among categories (clusters, groups) with rectangular bars. Each bar’s height (vertical bars) or length (horizontal bars) is proportional to the values that they represent. This article presents how to draw basic and stacked bar chart with the Python module Matplotlib.