LaTeX-Document icon indicating copy to clipboard operation
LaTeX-Document copied to clipboard

欢迎在这里提交模板问题 !

Open MatNoble opened this issue 5 years ago • 8 comments

  • [x] 中文字体配置, 详细介绍

MatNoble avatar Dec 19 '19 07:12 MatNoble

貌似不能直接用,中文版本的字体问题很严重,也不知道咋整。可能因为我是新手?

csjiezhao avatar Dec 20 '19 12:12 csjiezhao

希望老哥出一个比较详细的配置教程。中文字体直接放在根目录下?

csjiezhao avatar Dec 20 '19 12:12 csjiezhao

希望老哥出一个比较详细的配置教程。中文字体直接放在根目录下?

谢谢你的问题

双击中文字体, 安装即可.

字体问题, 我再写的详细一些吧!

MatNoble avatar Dec 21 '19 03:12 MatNoble

貌似不能直接用,中文版本的字体问题很严重,也不知道咋整。可能因为我是新手?

这个要详细看一下 README 再使用, 谢谢问题

MatNoble avatar Dec 21 '19 03:12 MatNoble

@MatNoble 应该补一个Adobe Fangsong Std

5dash avatar Dec 29 '19 05:12 5dash

@MatNoble 应该补一个Adobe Fangsong Std

是的

MatNoble avatar Jan 02 '20 14:01 MatNoble

\[
\left[ {\begin{array}{c:c}
		\begin{matrix}
			1 & 12 & 3 & 8 \\
			14 & 5 & 16 &21\\
			7 & 18 & 9 &7 \\
			23 & 0 & -1 &8\\
		\end{matrix}&
		\begin{matrix}
			1 & 4 \\
			2 & 5 \\
			3 & 6 \\
			13 & 26 \\
		\end{matrix}
\end{array}} \right]
\]

这个代码会编译错误,不产生虚线

dariusorz avatar Mar 30 '20 13:03 dariusorz

\[
\left[ \begin{array}{c:c}
		\begin{matrix}
			1 & 12 & 3 & 8 \\
			14 & 5 & 16 &21\\
			7 & 18 & 9 &7 \\
			23 & 0 & -1 &8\\
		\end{matrix}&
		\begin{matrix}
			1 & 4 \\
			2 & 5 \\
			3 & 6 \\
			13 & 26 \\
		\end{matrix}
\end{array} \right]
\]

这个代码会编译错误,不产生虚线

@DariusOrz 可以在导言区加入 arydshln 宏包, \usepackage{arydshln}. 然后在 tex 里这样写

\[
\left[ \begin{array}{c;{2pt/2pt}c}
		\begin{matrix}
			1 & 12 & 3 & 8 \\
			14 & 5 & 16 &21\\
			7 & 18 & 9 &7 \\
			23 & 0 & -1 &8\\
		\end{matrix}&
		\begin{matrix}
			1 & 4 \\
			2 & 5 \\
			3 & 6 \\
			13 & 26 \\
		\end{matrix}
\end{array} \right]
\]

效果如下: 数系家园 矩阵虚线

参考:

https://tex.stackexchange.com/questions/183258/how-to-add-dash-lines-in-matrix

MatNoble avatar Mar 30 '20 14:03 MatNoble