LaTeXStudio
LaTeXStudio
这家伙很懒,什么也没写!

注册于 4年前

回答
492
文章
308
关注者
213

去看看几个文档,xeCJK,fontspec, unicode-math 这些文档看了就理解了,提问最好提供你的代码,这样大家不好答复。

代码如下,自己研究吧:

\documentclass{article}
\usepackage{multirow}
\begin{document}
\begin{tabular}{|c|c|c|c|c|c|}
\hline
\multicolumn{2}{|c}{\multirow{3}*{a}}&\multicolumn{4}{|c|}{dingyi}\\
\cline{3-6}
\multicolumn{2}{|c|}{}&\multicolumn{3}{c}{x}&Y\\
\cline{3-6}
\multicolumn{2}{|c|}{}&20&50&100&200\\
\hline
\multirow{4}*{b}&1&0.45&0.55&0.6&1\\
\cline{2-6}
&2&0.45&0.55&0.6&1\\
\cline{2-6}
&3&0.45&0.55&0.6&1\\
\cline{2-6}
&4&0.45&0.55&0.6&1\\
\hline
\multirow{4}*{c}&5&0.45&0.55&0.6&1\\
\cline{2-6}
&6&0.45&0.55&0.6&1\\
\cline{2-6}
&7&0.45&0.55&0.6&1\\
\cline{2-6}
&8&0.45&0.55&0.6&1\\
\hline
\end{tabular}

\end{document}

image.png

截图看看吧,具体提示是什么,管理员运行 bat 即可。

就是没有必要呗?怎么理解?我也不知道你说的怎么理解。
除了书籍很少每章后面加参考文献。

双击脚本运行,里面的文本可以用记事本打开看看都是命令行。

最好给出来例子,titletitle{} 没有大括号肯定是不行的。

你的参数很奇怪 width=200 是多少?换成 width=2cm 看看。

把这些字体文件放在 fonts/type1/garamond

文件在这里:http://mirror.ctan.org/fonts/urw/garamond/

最次的办法解压放在当前路径也可以,也可以找找类似的字体,多去挖掘。

你的问题从来没有代码,拒绝回答!

你最好看看基础的知识 \date{} 这样就可以去掉日期了,默认会自动加的。

pdflscape 宏包去看看或者 geometry 设置变成横版样式呗。

\usepackage[landscape]{geometry}

我很早以前写的文章可以看看 http://blog.sina.com.cn/s/blog_5e16f1770100jw8j.html (description列表不得不说的用法)
解决方案:
(1)使用mdwlist宏包,较为简便

\usepackage{mdwlist}
\begin{basedescript}{\desclabelstyle{\pushlabel}\desclabelwidth{10em}}
\item[Short]  This is a shorter item label, and some text that talks about it.
  The text is wrapped into a paragraph, with successive lines indented.

  The another paragraph within one item.
\item[Rather longer label] This is a longer item label.  As you can see, the
  text is not started a specified distance in -- unlike with other lists -- but
  is spaced a fixed distance from the end of the label.
\end{basedescript}

结果图:

image.png

(2)利用list环境定义自己的描述环境如下:

\usepackage{calc}
\newenvironment{altDescription}[1]
{\begin{list}{}%
{\renewcommand\makelabel[1]{\textsf{##1:}\hfil}%
\settowidth\labelwidth{\makelabel{#1}}%
\setlength\leftmargin{\labelwidth+\labelsep}}}%
{\end{list}}
\begin{altDescription}{Return values}
\item[Description]
Returns from a function. If issued at top level,
the interpreter simply terminates, just as if end
of input had been reached.
\item[Errors]
None.
\item[Return values]
Any arguments in effect are passed back to the
caller.
\end{altDescription}

需要自己提供最宽单词的参数。

发布
问题