Zhaozhou Li

Results 33 comments of Zhaozhou Li

This should have been closed by https://github.com/dfm/george/pull/143

Which edition of padova does this package use? As I noticed that the isochrones generated by the package is slightly different from [padova web calculator](http://stev.oapd.inaf.it/cgi-bin/cmd) esp. for high mass end.

I'm interested in generating the grid. Would you mind to tell me where to download the PARSEC grid? I found [PARSEC webside](http://people.sissa.it/~sbressan/parsec.html), however there's no band information in these `Evolutionary...

Not sure if this is what you are asking: https://kalepy.readthedocs.io/en/latest/kde_api.html#reflecting-boundaries

Thanks for the workaround. Sure, I guess this is only an uncommon edge case in practice.

macos 13.1,显示键盘布局不可用,重启,重新安装再重启,重新安装退出登陆,都无法解决 ![image](https://user-images.githubusercontent.com/7038335/219937664-31134340-a09c-4df9-823d-b704fda61a41.png) 好吧,虽然显示键盘布局不可用,不过加进去之后,还是能正常使用的。害我用了两周系统的输入法。。。

> [先简单写一下,回头详细描述] > > 1. 定义一个快捷键实现 copy to latex。这个其实很容易,实现方式参考[这里](https://www.douban.com/group/topic/75062782/)。 > 我建议使用 Meta+L (mac) 或者 ctrl+L (windows?) 作为快捷键。 > 2. 希望提供选项,导出 latex 的时候不包含公式内的 \ensuremath。 > 动机: > 一、冗余。 > 二、因为我用 keynote,里面的公式编辑器不支持...

I've checked the document of `cleveref`, it mentioned a known bug, it may relate to this issue. ![image](https://user-images.githubusercontent.com/7038335/40193303-8393846e-5a39-11e8-8006-875ed6590a70.png) However the code below seems good ``` % \documentclass[twocolumn]{aastex62} \documentclass{article} \usepackage{hyperref} \usepackage{amsmath}...

This is an interesting problem but beyond the scope of this code. It is possible to compute similar statistics. You will need to modify the code yourself and incorporate the...

Try this: ``` fig, axs = pplt.subplots(nrows=2, ncols=2, sharex=False, spanx=True) axs[0].format(xlabel='row1') axs[2].format(xlabel='row2') ``` I believe this is what you are looking for.