电脑技术:科大讯飞开放平台
今天使用了万彩工具箱,里面有一个文字转语音的工具。点开详情后,来到了讯飞开放平台。
这个平台提供了丰富的AI应用和接口,可以帮助开发者方便的开发AI应用。我想很多应该是会收费的,或者部分功能免费。
总之,这个平台能做的事情很多。今天记在这里,以备日后使用。
今天使用了万彩工具箱,里面有一个文字转语音的工具。点开详情后,来到了讯飞开放平台。
这个平台提供了丰富的AI应用和接口,可以帮助开发者方便的开发AI应用。我想很多应该是会收费的,或者部分功能免费。
总之,这个平台能做的事情很多。今天记在这里,以备日后使用。
方法一:使用 DroidCamX 软件
首先,咱们用的的软件是DroidCamX,本软件分为电脑端和手机端!
下载地址均在文末!
注意:使用时要么手机和电脑在同一个网络环境下,要么已连接USB!
首先,安卓端安装DroidCamX Pro 6.4.8 这是Pro版 亲测可用 GPlay售价 $4.99安装完成后如下图:
本文全文转载自知乎:https://zhuanlan.zhihu.com/p/70243739
作者:李狗嗨(英属哥伦比亚大学(UBC) 机械工程博士在读)
相信很多人都知道3Blue1Brown,这是一个由斯坦福大学的数学系学生Grant Sanderson 创建的YouTube 频道。该频道从独特的视觉角度解说高等数学,内容包括线性代数、微积分、神经网络、黎曼猜想、傅里叶变换以及四元数等等。
本人通过该视频频道获得了很多启发,同时也对其精良的视频制作技术产生了浓厚的兴趣。
偶然的机会,得知其在Github上有专门开设了一个动画制作引擎:manim。
所以,突然想尝试用一下该基于Python的可视化引擎,如果可以实现功能,以后就可以根据自己的需要利用该引擎进行动画演示。
网上找了一些相关的文章,有的写得很好,但是因为该开源代码库更新频繁,所以以前的配置教程往往会有过时的情况。现在最新的版本是基于Python 3的,以前的基于Python 2.7的教程已经不再适用于当前代码。所以在安装过程中,遇到了不少新问题,在解决的过程中记录了这些新问题的解决方法。并形成此文。(测试于2019年6月)
在配置前首先得安装Python 3,这个安装过程在此处不再赘述。建议通过Anaconda进行安装,而不是直接安装Python。这里的演示也是基于Windows 10 系统,在安装Anaconda的基础上完成的。Anaconda的下载地址为:
https://www.anaconda.com/distribution/#download-section 建议选择安装Python 3.7 version,具体安装步骤网上有很多。
除此之外,还要下载:
写论文的时候,总发现不同杂志对论文的排版要求各不相同,所以就像做一个通用模板,以后直接修改对应的代码就好。
不同杂志对SCI论文的模板要求不同,但是一开始写的时候,就按照下面这个模板会减少很多错误和时间。这是我这段时间以来的总结。
推荐用 TeX Live来写,用 pdfLaTeX 编译,并编译两次。第一次编译后引用参考文献处会是问号,第二次编译后就正常了。
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
%%% Simple Latex template %%% %%% Version: 1.0 %%% %%% UpDateTime: 2016.11.22 %%% %%% Author: TAHO %%% %%% Contact: tahoroom@163.com %%% %%% Web Site: http://taho.space %%% %%% Address: Xi'an, Shaanxi, China %%% \documentclass[12pt,a4paper]{article} %%% ADD BY ME%%% \usepackage{exscale} \usepackage{relsize} \usepackage{amsmath} \usepackage{amssymb} \usepackage{amsfonts} \usepackage{float} \usepackage{graphicx} %插入图片要用到 \graphicspath{{eps/}} %eps是放置eps文件的文件夹,如果图片就在根目录放置,请注释掉这一句 \usepackage{subfigure} %放置子图时用到 \usepackage{epstopdf} %专门面向CTEX设置。因CTEX不能识别eps图片,此处目的是将eps图片转换为pdf图片文件,不需要的可以注释掉 \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} \usepackage{authblk} \usepackage{hyperref} %让引用带有超链接 %%%%%%%%%%%%%%%%% BEGIN OF PREAMBLE %%%%%%%%%%%%%%%% \title{Your Article Title} \author[1,2]{AAAA} \author[1,2]{BBBB} \author[1]{CCCC} \author[2]{DDDD\footnote{Corresponding author. E-mail: dddd@mail.dddd.edu.cn}} \affil[1]{Institute of MMMM, NNNN University,XXXX Road, SSSS, Shaanxi 710069, China} \affil[2]{College of MMMM, NNNN University, 88 South University Ave., JJJJ, Jiangsu 225009, China} \renewcommand\Authands{ and } \date{} %%%%%%%%%%%%%%%%% END OF PREAMBLE %%%%%%%%%%%%%%%% %Start \begin{document} % Make the title of the work. \maketitle %The Abstract \begin{abstract} Put your abstract here.Put your abstract here.Put your abstract here.Put your abstract here.Put your abstract here.Put your abstract here.. \end{abstract} %Keywords \textbf{Keywords:} Keyword1; Keyword2; Keyword3. %PACS numbers: \textbf{PACS numbers:} 04.70.Bw, 04.20.Dw %Start the real content \section{Introduction} First secntion \section{Method} An example of equation with lable \begin{equation}\label{eq:metric} ds^2=-N(\rho)^2dt^2+\frac{1}{L(\rho)^2}d\rho^2+\rho^2 d\phi^2, \end{equation} Cite the equation: In Eq.\eqref{eq:metric} Cite the reference You are good\cite{Penrose,related02}. We could get it in Ref.\cite{related01} . \section{Instert eps Pictures} Single eps: \begin{figure}[!h] \centering \includegraphics[width=6cm]{003ExRhoAfter-emore.eps} \vspace*{8pt} \caption{Plot of $F_{af-e}(\rho)$. There are two points of intersection on the horizontal axis. The left point stands for the inner horizon and the right one stands for the outer horizon. The extreme black hole becomes into a common black hole.\label{fig:003ExRhoAfter-emore}} \end{figure} two sub eps: \begin{figure}[!h] \centering \subfigure[Plot of $E-q$, where $-1 \leqslant q \leqslant 2.5$.]{ \label{fig:001ExMinMax:subfig:a} %% label for first subfigure \includegraphics[width=6cm]{001aExEmaxEmin.eps}} \hspace{1cm} \subfigure[Plot of $E-q$, where $0 \leqslant q \leqslant 0.005$.]{ \label{fig:001ExMinMax:subfig:b} %% label for second subfigure \includegraphics[width=6cm]{001bExEmaxEmin.eps}} \caption{Plot of $E-q$. The shaded area is the intersection of $E_{min-e}<E$ and $E<E_{max-e}$.} \label{fig:001ExMinMax} %% label for entire figure \end{figure} \section{Summary} Summary your work. \section*{Acknowledgments} We thank Dr. YYYY for useful comments and enlightening discussions. This work was supported by NSFC Grant Nos. 11111111, 22222222 and 33333333. \begin{thebibliography}{99} \bibitem{Penrose} R.Penrose, {\it Revistas del Nuovo Cimento} {\bf 1} (1969) 252. \bibitem{related01} V. E. Hubeny, {\it Phys. Rev. D} {\bf 59} (1999) 064013. \bibitem{related02} S. Hod, {\it Phys. Rev. D} {\bf 66} (2002) 024016. \end{thebibliography} \end{document} |
效果如下:
由于Ctex和其他的Tex编辑器略有不同,特针对Ctex制作模板,其实改动主要是 \usepackage{epstopdf} 这一句,因CTEX不能识别eps图片,此处目的是将eps图片转换为pdf图片文件,不需要的可以注释掉。
模板下载:
链接:https://pan.baidu.com/s/1eh-PLhrbQRzvA5lL9vGmxw 密码:xs8f
(自2008 至 2021的所有文章,除标明“转载”外)版权©归 TAHO 所有 | 转载请务必注明出处 | 联系TAHO