Timo Zhang
Timo Zhang
The solution is great. This is how I installed gimp and bimp plugin through Flathub and it works fine: ```sh # Install GIMP flatpak install https://flathub.org/repo/appstream/org.gimp.GIMP.flatpakref # Search gimp plugins...
https://wiki.archlinux.org/title/Rime_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87) 我的是fcitx-rime,配置目录在`~/.config/fcitx/rime`下。将配置文件夹下的文件拷贝到该目录下,激活rime输入法->右键rime图标->Deploy,重新部署后就可以使用这个配置了。
I've implemented this feature on [my own fork](https://github.com/TimoLin/gimp-plugin-bimp). But only the basic function is available. - [x] Import the EPS format files, do manipulations, and export to JPG, PNG etc....
我在写论文时遇到了这个问题,这是一个简单的测试样例。@yzwduck [thesis-test.zip](https://github.com/user-attachments/files/17969341/thesis-test.zip) 根据测试,我发现可能和figure环境的浮动格式参数有关。我论文中一般用[H]去保证图片紧跟文字后。 单面打印模式下,无论是`[H]`还是`[htb]`排版都没有问题。 ```tex \documentclass[ lang=cn, degree=master, % zhuanshuo, % blindtrail, openany,oneside %openright,blankleft,twoside ]{nuaathesis} ``` 但是双面打印模式下,使用`[htb]`能保证行距,但使用`[H]`会导致如图所示的问题:  期望的排版形式: 
Sorry, 没看到Disscussion中也有类似的问题报告, https://github.com/nuaatug/nuaathesis/discussions/87 `twoside`模式下,在导言区加上`\raggedbottom`能得到预期的排版形式。 ```tex \raggedbottom \begin{document} ```
## Possible fix patch Use `mesh.V()^{1/3}` to calculate the delta directly?
## OS不限定在Ubuntu 20.04,但据我所知应该没在redhat 8上测试过编译安装。 有在CentOS 7.6 下的编译实践,见 #2。 如果你能提供一下环境和编译log的话,能够对我们的debug有所帮助。 ## Docker是一个更方便的解决方案 虽然没有official的deepflame image 你可以按照下面的步骤在你的电脑中制作: ``` # Pull the ubuntu 20.04 image docker pull ubuntu:20.04 # create a container docker run...
Hi, thank you for your interest. We are testing the compatibility of different combustion models in the `dfSteadyFoam` solver in these two weeks. For example, a test case of `dfSteadyFoam`...
相关issue:#78,其中 https://github.com/nuaatug/nuaathesis/issues/78#issuecomment-1842493705 已经给出了一个解决方案。 我没用过算法环境,具体什么原因不是很清楚。 你可以试试下面的参考示例: - 导言区添加: ```tex \usepackage{algorithmic} \usepackage[linesnumbered,ruled,vlined]{algorithm2e} \renewcommand{\algorithmcfname}{算法} \SetKwInput{KwIn}{输入} \SetKwInput{KwOut}{输出} ``` - 算法环境示例: ```tex \begin{algorithm}[H] \caption{快速排序伪代码} \KwIn{一个包含$n$个元素的数组$A[1..n]$} \KwOut{排序后的数组$A[1..n]$} \SetKwFunction{FMain}{快速排序} \SetKwProg{Fn}{函数}{:}{} \Fn{\FMain{$A, p, r$}}{ \If{$p < r$}{ $q...
如果想保留minipage来控制并排显示两个独立的图片,我觉得最简单的方法是用`\RawFloats`,例如: ```tex \begin{figure}[H] \RawFloats \centering \begin{minipage}{0.48\textwidth} \includegraphics[height=5cm]{chap2/PAM/OmegaS-all.png} \caption{图片标题1} \label{fig:c2:1} \end{minipage}% \begin{minipage}{0.48\textwidth} \includegraphics[height=5cm]{chap2/PAM/dL.png} \caption{图片标题2} \label{fig:c2:2} \end{minipage} \end{figure} ``` 参考: https://latex.org/forum/viewtopic.php?t=33076 https://tex.stackexchange.com/a/155223