
Latex 小技术
记录有关Latex中常用的一些语法。
沃·夏澈德
今天的明天是后天的昨天。----茨鲍勒·程德
展开
-
tex 表格宽度自动调整,解决表格过宽、过窄问题
有时表格太宽了,都突到页面外面的时候可以使用\begin{table}[]\centering\caption{\label{tab:1}table name.}\resizebox{\linewidth}{!}{\begin{tabular}{clllll}...\end{tabular}}\end{table}关键就是用\resizebox{\linewidth}{!}{}把tabular包起来就好,此处是自动调整长宽。也可以手动的,对应代码为\resizebox{\te原创 2022-05-01 09:44:45 · 2216 阅读 · 0 评论 -
tex 多行等式
\begin{eqnarray} A &=& f^2(c,d) \\ &=& (c+d)^2 \nonumber \end{eqnarray}大概就是这种效果原创 2022-04-12 21:19:52 · 583 阅读 · 0 评论 -
tex 伪代码常用模板
\usepackage[ruled,linesnumbered]{algorithm2e}\begin{algorithm}\caption{pseudocode}\label{pseudocode}\SetKwInOut{Input}{input}\SetKwInOut{Output}{output}\Input{input data}\Output{output, if return none, this line can be ignored}a=1\;\Repeat{Stop con.原创 2022-04-05 21:40:39 · 1420 阅读 · 0 评论 -
tex 表格中内容左对齐/居中/右对齐
左对齐是l右对齐是r居中是c\begin{table}\centering\caption{\label{tab:widgets}Notation summary.}\begin{tabular}{l|l} ⬅就是这里控制每一列的对齐方式Notation & Meaning \\\hlineWidgets & 42 \\Gadgets & 13\end{tabular}\end{table}...原创 2022-03-31 16:56:57 · 11619 阅读 · 0 评论 -
tex中各种矩阵的写法
\begin{gather*}\begin{matrix} 0 & 1 \\ 1 & 0 \end{matrix}\quad\begin{pmatrix} 0 & -i \\ i & 0 \end{pmatrix}\\\begin{bmatrix} 0 & -1 \\ 1 & 0 \end{bmatrix}\quad\begin{Bmatrix} 1 & 0 \\ 0 & -1 \end{Bmatrix}\\\begin{v原创 2021-12-02 21:04:34 · 2616 阅读 · 0 评论 -
公式图片转tex代码
Mathpix Snipping Tool这个工具可以截图转代码。原创 2020-11-15 16:55:58 · 541 阅读 · 0 评论 -
tex空心字母
要空心的内容放里面就行 \mathbb{}原创 2020-11-14 10:18:46 · 491 阅读 · 0 评论 -
tex 空心字符
比如:\mathbb{E}原创 2020-10-29 12:07:05 · 809 阅读 · 1 评论 -
latex argmin、min这类的中下标
原创 2020-10-14 12:12:07 · 11194 阅读 · 0 评论 -
图片转.eps格式的方法
打开命令行bmeps -c figureName.png figureName.eps原创 2020-02-17 18:14:59 · 442 阅读 · 0 评论 -
tex 参考文献自动生成
首先建一个.bib文件里面放参考文献的bibtex,如:@article{Orchid2018“, title={“Attention is all”: The Quotidian in Contemporary American Poetry}, author={Orchid Tierney}, journal={Journal of Modern Literature},...原创 2020-02-20 10:11:00 · 1074 阅读 · 0 评论 -
tex 让表格在页面上居中
\begin{center}\begin{tabular}。。。。\end{tabular}\end{center}原创 2020-02-22 10:32:52 · 8154 阅读 · 0 评论 -
latex 写中文 且不影响引文编译
\documentclass{article}\usepackage[UTF8, scheme = plain]{ctex}\begin{document} 中文内容\end{document}原创 2020-07-18 07:10:46 · 365 阅读 · 0 评论