11 2021 档案
摘要:latex使用 \begin{equation} 编辑公式时,会自动为公式进行编号 如果需要取消自动编号,只需要在公式后加上 \nonumber 命令即可 例子 \begin{equation} \begin{aligned} a = b + c \nonumber \end{aligned} \e
阅读全文
摘要:LaTex换行会默认缩进,如果想不缩进只需要在不需要缩进的内容前面加上 \noindent 命令 ababababababababababab \noindent 不缩进不缩进
阅读全文
摘要:LaTex中表格排版——表格描述位置调整 LaTex模板大多默认将表格描述置于表格下方,可通过修改 \caption 的位置调整。 1. 位于表格下方(默认) \begin{table}[h] \begin{tabular}{l|c|c|c|c|c} ... \end{tabular} % 表尾 \
阅读全文
摘要:\documentclass{article} \usepackage{CJKutf8} \begin{document} \begin{CJK}{UTF8}{gbsn} 中文样例,UTF-8编码,字体:gbsn。 \end{CJK} \end{document}
阅读全文
摘要:问题 git push -u origin master 执行后报错 fatal: Could not read from remote repository. 解决方案 1. git执行 git remote add origin git@github.com:username/xxx.git 2
阅读全文
摘要:Dropout layers class torch.nn.Dropout(p=0.5, inplace=False) 随机将输入张量中部分元素设置为0。对于每次前向调用,被置0的元素都是随机的。 参数: p - 将元素置0的概率。默认值:0.5 in-place - 若设置为True,会在原地执行
阅读全文

浙公网安备 33010602011771号