p*l 发帖数: 1359 | 1 我的模版
\ProvidesPackage{beamerthemeclassnote}
\mode
\setbeamertemplate{caption}[numbered]
\setlength\parindent{28pt}
\setlength{\parskip}{0.75\baselineskip}
\setbeamersize{text margin left=0.5in,text margin right=0.5in}
\setbeamercolor{structure}{fg=black}
\setbeamercolor{palette primary}{fg=black,bg=white}
\setbeamertemplate{section in toc}{\vspace{12pt}\textbf{\inserttocsection}\}
\setbeamertemplate{subsection in toc}{\vspace{12pt}\hspace{18pt}\textbf{\
inserttocsubsectionnumber.}~... 阅读全帖 |
|
w*****9 发帖数: 346 | 2 我改成以下这样,都对了,但是那最上面一条水平线还是显示不出。。。怎么回事呀~
谢谢!!您看看在您那显示得出么~
\vspace{-0.1in} {\noindent
\begin{table}[b]
\footnotesize \center \caption{Benchmark task sets}
{\centering\small
\begin{tabular}{|c|c|c|c|} \cline{2-4}
\rowcolor [gray] {.8} \multicolumn{1}{c|}{} & \textbf{Task 1} & \textbf{
Task 2} & \textbf{Task 3} \\ \hline
\multicolumn{1}{|c|}{\cellcolor [gray] {0.8} \textbf{Task Set 1}} & epic* &
pegwit* & rawcaudio* \\ \hline
\multicolumn{1}{|c|}{\cellcolor [gray] {0.8} \textbf{Task Set 2}} & cjpeg* |
|
m******y 发帖数: 25 | 3 Use alltt and \ensuremath when you want to include math symbols, e.g.,
\begin{alltt}
\textbf{boolean} func(\textbf{Constraint} C1, \textbf{Constraint} C2) \{
\textbf{return} checkValidity(\ensuremath{\tau});
\}
\end{alltt} |
|
V*********r 发帖数: 666 | 4 不要搞太花哨的。单栏,Sans-serif字体,整齐一些就行了。
贴个简单的模板
\documentclass[11pt]{article}
\usepackage[top=1in, bottom=1.2in, left=1in, right=1in]{geometry}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{xcolor}
\usepackage{tabularx}
\usepackage{marvosym}
\usepackage{verbatim} % for multiline comment blocks
\usepackage{etoolbox}
\usepackage[english]{babel}
\usepackage{setspace} %conflict with \usepackage{needspace}
\usepackage{enumitem}
\renewcommand{\rmdefault}{phv} % Arial
\renewcommand{\sfdefault}{phv} %... 阅读全帖 |
|
w*****9 发帖数: 346 | 5 晕了 看了网上一些材料还是搞不定 现在的问题是最最上面一条线死活显示不出来,最
左边一条vertical line的左上角cell还是显示着 最左列里面的horizontal line都消
失了。。。
\vspace{-0.1in} {\noindent
\begin{table}[b]
\footnotesize \center \caption{XXX} \vspace{0.05in}
{\centering\small
\begin{tabular}{|c|c|c|c|} \cline{2-4}
\rowcolor [gray] {.8} {\cellcolor [gray] {1.0}} & \textbf{Task 1} & \textbf
{Task 2} & \textbf{Task 3} \\ \cline{1-4}
\multicolumn{1}{|c|}{\cellcolor [gray] {0.8} \textbf{Task Set 1}} & epic &
pegwit & rawcaudio \\ \cline{1-4}
\multicolumn{1}{|c| |
|
z**k 发帖数: 378 | 6 我找到了
\usepackage{listings}
\usepackage{courier}
\lstset{
basicstyle=\footnotesize\ttfamily,
%numbers=left,
numberstyle=\tiny,
%stepnumber=2,
numbersep=5pt,
tabsize=2,
extendedchars=true,
breaklines=true,
keywordstyle=\color{red},
frame=b,
% keywordstyle=[1]\textbf,
% keywordstyle=[2]\textbf,
% keywordstyle=[3]\textbf,
% keywordstyle=[4]\textbf, \sqrt{\sqrt{}}
st |
|
m*********g 发帖数: 273 | 7 现在基本可以了,就是间距不一致。
\[
\left(\begin{array}{rrrrrrrrrrrrrrr}
& & & & G& & T& & A& & A& & G& &A\
& &\textbf{0}& & 0& & 0& & 0& & 0& & 0& &0\
& & &\nwarrow& & & & & & & & & & &\
G& & 0& &\textbf{2}& & 0& &0& & 0& & 2& &0\
& & & & &\nwarrow& & & & & & & & &\
T& & 0& & 0& &\textbf{4}& & 1& & 0& & 0& &1\
|
|
L******r 发帖数: 199 | 8 如何把Bag 和 Dim之间及下面几格用垂线分割开来?
谢谢
\begin{table}[h]
\begin{center}
\bigskip
\noindent
\begin{tabular}{|l||c{5.5cm}||c{5.5cm}|c{2cm}|}\hline
%\begin{tabular}{|p{4cm}|p{5.5cm}|p{2cm}|}\hline
\backslashbox{\textit{\textbf{Data}}}{\textit{\textbf{Methods}}}
&{\makebox[7em]{Bag}}&{\makebox[3em]{Dim}}
\\\hline\hline
Review &&\\\hline
Text &&\\\hline
%Seminar Room &&&&\\\hline
\end{tabular}
\bigskip
\end{center}
\end{table} |
|
d****p 发帖数: 685 | 9 在目前的一个项目中,需要将数据库中的文本通过LaTex处理。麻烦的是需要将一些“
坏“字符(例如$,\,~,以及有音调的字符-诸多欧洲语言的字母)转换成LaTex认可
的形式。
比如,我有如下LaTex模板文件:
...
\textbf{$SHADER_LANGUAGE$}
...
我用后台程序将$SHADER_LANGUAGE$替换成Cg或者GLSL然后处理生成的tex文件,就成了:
...
\textbf{Cg}
...
由于从数据库提出的源字符串可能包含如前所述的奇异字符(如Cg & GLSL中的 & ),
生成的tex文件可能无法编译。
用\verb是一个解决办法,但(1)无法用于其它命令的参数(2)字体变成定宽。所以
我想找到相关的函数(C/C++/Perl/Python 都行)来完成转换然后再传给LaTex。
有高手知道有这样的工具吗?或者有现成的LaTex包在tex文件内部完成这样的转换?
多谢了。 |
|
m*********g 发帖数: 273 | 10 间距问题解决,强制加了间距。
\[
\left(\begin{array}{cccccccccccccc}
&\;\;\;& & & G& & T& & A& & A& & G&\;\;\;\
;\;\;A\\
& & & & & & & & & & & & & \\
& &\textbf{0}& & 0& & 0& & 0& & 0& & 0&\;\;\;\;\;
\;0\\
& & &\nwarrow& & & & & & & & & & \\
G&\;\;\;& 0& &\textbf{2}& & 0& &0& & 0& & 2&\;\;\;
\;\;\;0\\
& & & & &\nwarrow& & & & & |
|
z***i 发帖数: 8285 | 11 \documentclass[a4paper,11pt]{article}
\usepackage[latin1]{inputenc}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage[colorlinks=true]{hyperref}
\usepackage{colortbl}
\usepackage{hyperref}
\usepackage{extramarks}
\usepackage{fancyhdr}
\usepackage{color}
\usepackage{eso-pic}
\usepackage{ifpdf}
\usepackage{svgcolor}
\usepackage{booktabs}
\usepackage{amssymb}
\pagenumbering{arabic}
\hypersetup{urlcolor=blue}
\definecolor{light-gray}{gray}{0.86}
\setlength{\paperwidth}{597pt}
\setlength{\paperh... 阅读全帖 |
|
d**********o 发帖数: 1321 | 12 第一个项目report
这时偶刚到CSAC工作不久,与小A同学还不熟,我用的还是latex。随着贴的作业越来越
多,应该是用有共同爱好的小伙伴更亲密些。这次贴latex,下次才再org-mode。
\documentclass[b5paper,11pt, abstraction, titlepage]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{CJKutf8}
\usepackage{multirow}
\usepackage{multicol}
\usepackage{listings}
\usepackage{geometry}
\geometry{b5paper}
\usepackage{graphicx,floatrow}
\usepackage{graphicx,subfigure}
\newsavebox{\abstractbox}
\renewenvironment{abstract}
{\begin{lrbox}{0}\begin{minipage}{\t... 阅读全帖 |
|
d**********o 发帖数: 1321 | 13 第一个项目report
这时偶刚到CSAC工作不久,与小A同学还不熟,我用的还是latex。随着贴的作业越来越
多,应该是用有共同爱好的小伙伴更亲密些。这次贴latex,下次才再org-mode。
\documentclass[b5paper,11pt, abstraction, titlepage]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{CJKutf8}
\usepackage{multirow}
\usepackage{multicol}
\usepackage{listings}
\usepackage{geometry}
\geometry{b5paper}
\usepackage{graphicx,floatrow}
\usepackage{graphicx,subfigure}
\newsavebox{\abstractbox}
\renewenvironment{abstract}
{\begin{lrbox}{0}\begin{minipage}{\t... 阅读全帖 |
|
O*****y 发帖数: 222 | 14 当用 \textbf{0.001} 时, 0.001 的宽度增加了,于是就导致了无法对齐。想问一下
,有没有办法既让 0.001 变成粗体,但字体大小和宽度又不改变么?
谢谢! |
|
f********h 发帖数: 149 | 15 在一个table里,我想把一些数字变bold,试了
\bf{3.14}, \textbf{3.14},都没有效果,
用\mathbf{3.14}就变bold了.为什么呢? |
|
t**i 发帖数: 688 | 16 FIXED!
\usepackage{eso-pic}
\usepackage{color}
\AddToShipoutPicture{%
\AtTextCenter{%
\makebox(0,0)[c]{\resizebox{\textwidth}{!}{%
\rotatebox{45}{\textsf{\textbf{\textcolor[gray]{0.90}{DRAFT}}}}}}%
}
} |
|
T*********r 发帖数: 11175 | 17 【 以下文字转载自 Physics 讨论区 】
发信人: TechniColor (坚决服从rourou的领导), 信区: Physics
标 题: 有SONY READER的用户要SHARE一些HEP的文件吗
发信站: BBS 未名空间站 (Tue Aug 14 23:28:15 2007), 转信
我把TASI LECTURE之类的做了一些
http://www.hep.wisc.edu/~wangkai/tmp/minibook/
重新LATEX过
\documentclass[12pt]{article}
\usepackage{geometry}
\special{papersize=90.00mm,120.00mm}
\geometry{paperwidth=90.00mm,paperheight=120.00mm,margin=0.3cm}
\begin{document}
\large
\textbf
另外如果有FIGURE
都设了 width=1\textwidth |
|
J*******r 发帖数: 379 | 18 if you really want it automatically, try this:
\[
\textbf{\newcounter{test}\setcounter{test}{2}\Roman{test}}
\] |
|
F**p 发帖数: 1046 | 19 我刚刚毕业,用Latex写了proposal,2篇文章,还有博士论文,大概前后2年的时间。
写的用Latex写文章的感受,希望给入门的人一点儿启发。
(1)和MS WORD相比,Latex绝对难用。WORD是所见即所得,非常直观,而Latex所有的
格式和字体,都是需要通过用户定义的,不错,是有各种各样的template可以套用,但
是许多的细节,仍然需要逐渐掌握。举个例子,写论文的时候,我发现在数学公式里面
的希腊字母没有办法变粗体(矢量需要用粗体),直接用\textbf是没有用的。一通
google,发现需要安装一个amsmath package,加上用\boldsymbol才能把希腊字母变粗
。还有对table的操作,简直烦不胜烦,没有一段时间的耐心学习,几乎不可能熟练掌
握。还有一开始对EPS图的产生和操作,还是很tricky的。
(2)和MS WORD相比,优点也是明显的。自我感觉最大优点是Latex对图文框的处理非
常优秀,几乎不需要人来做任何的干预。MS的图片会经常神秘失踪,尤其对长的文章来
说,是很头疼的事情。WORD2008不知道有没有改进。其次是会用Latex比较有 |
|
|
T*******n 发帖数: 493 | 21 Interesting problem. Can't thing of an elegant solution that involves
only LaTeX and BibTeX.
What about a solution involving these steps:
latex cv
bibtex cv
sed -i "s/normal name/bold name/" cv.bbl
latex cv
================
The only way to make this work using only LaTeX and BibTeX is to hack the
.bib file, fool BibTeX into thinking that \textbf{} is an accent command
like \'{}, \`{}, \"{}, etc., make clever use of {} to group parts of your
name, and maybe use @string{} definitions to deal with |
|
l********r 发帖数: 175 | 22 well, following is the code:
\begin{center}
\begin{indentation}{0pt}{0pt}{0pt}
\textbf{{\Large Research on XXX}}
\end{indentation}
\end{center}
here, the title name is at least two lines on the A4 paper.
How to solve it? Thanks a lot. |
|
p*****r 发帖数: 30 | 23 \textbf{\emph{This is the word}} |
|
S**I 发帖数: 15689 | 24 or \textit{\textbf{This is the word}} |
|
s******e 发帖数: 285 | 25 Is this what you want?
\begin{table}[t]
\begin{center}
\begin{tabular}{|c|c|c|}
\cline{2-3}
\multicolumn{1}{c|}{} & {a} & {b}\\
\hline
ttt & 0.2 & 0.5\\
\hline
ttt1 & 0.09 & 0.24\\
\hline
ttt1 & 0.05 & 0.13\\
\hline
\end{tabular}
\caption{temp.}
\label{table:temp}
\end{center}
\end{table}
textbf |
|
L******r 发帖数: 199 | 26 Tex如下,每次标号都另起一行,很讨厌,如何把公式和标号放进同一行中?
\begin{equation}\label{example}
\textit{\textbf{X}} =
\begin{pmatrix}
&c_1 & c_2 &c_3& \cdots &c_m\\
d_1 & 8 & 0 & 1& \cdots & 7\\
d_2 & 13 & 6 & 0& \cdots &6\\
d_3 & 1 & 0 & 0& \cdots &4\\
\cdots & \cdots & \cdots & \cdots & \ddots &\cdots\\
d_n & 3 & 10 & 0 & \cdots &1\\
\end{pmatrix}
\end{equation} |
|
b*m 发帖数: 124 | 27 your matrix is too wide and that is wide the label goes into another line.
A quick fix is
\begin{equation}\label{example}
\textit{\textbf{X}} =
\left(
\begin{matrix}
&c_1 & c_2 &c_3& \cdots &c_m\\
d_1 & 8 & 0 & 1& \cdots & 7\\
d_2 & 13 & 6 & 0& \cdots &6\\
d_3 & 1 & 0 & 0& \cdots &4\\
\cdots & \cdots & \cdots & \cdots & \ddots &\cdots\\
d_n & 3 & 10 & 0 & \cdots &1
\end{matrix}
\right)
\end{equation} |
|
t**i 发帖数: 688 | 28 THE NATBIB statement:
\usepackage[authoryear,square]{natbib}
THE LOG:
[28] [29] (thesis.bbl
! LaTeX Error: \newblock undefined.
See the LaTeX manual or LaTeX Companion for explanation.
Type H for immediate help.
...
l.1 \begin{thebibliography}{}
THE BBL FILE (an excerpt) generated by MikTeX 2.7:
\begin{thebibliography}{}
\bibitem[Johnson and Jane, 1998]{Johnson1998}
Johnson, L. and Jane, J., 1998.
\newblock paper title one.
\newblock {\em Nature}, \textbf{543}:345--347.
\bibitem[Apple |
|
w****g 发帖数: 78 | 29 这么多高手,没有一个人愿意说句公道话。或者底气不足,不敢说?
原题如下:
Solve the following equation:
\[\frac{\partial T}{\partial t}-\frac{\partial^2 T}{\partial x^2} +kT=0; T(x
,0)=1, T(0,t)=e^{-kt}, T(1,t)=0.\]
Where $k$ is a constant. Let $u(x,t)\triangleq e^{kt}T(x,t)$, change the
original PDE and conditions in terms of $T$ into a new one in terms of $u$.
Solve the problem in terms of $u$.\\
\textbf{Solution:}\\
Let $u(x,t)=e^{kt}T(x,t)$, then $T(x,t)=e^{-kt}u(x,t)$ and
\[\frac{\partial T}{\partial t} = -ke^{-kt}u(x,t)+e^{- |
|
D**o 发帖数: 2653 | 30 注意作者 \author{YHBKJ}
Atiyah-Bott Localization 1
2012-09-05 09:24:19
\documentclass[a4paper,12pt]{article}
\usepackage{amsfonts}
\usepackage{amsmath,amsthm,amssymb}
\usepackage{CJK,graphicx}
\usepackage{amscd}
\usepackage{amssymb}
\newtheorem{theorem}{Theorem}[section]
\newtheorem{corollary}{Corollary}[section]
\newtheorem{definition}{Definition}[section]
\newtheorem{lemma}{Lemma}[section]
\begin{document}
\title{\textbf{\Huge{Atiyah-Bott Localization 1}}}\author{YHBKJ}\date{}\
maketitle
\begin{ab... 阅读全帖 |
|
G********t 发帖数: 334 | 31 \documentclass[clock]{slides}
%\usepackage{float}
\usepackage[dvips]{color, graphicx}
\usepackage{pstricks,pst-node,pst-coil,pst-grad}
\begin{document}
\begin{slide}
\textbf{Vibrations of the Linear Symmetric Triatomic Molecule}
\begin{itemize}
\item Symmetric Stretch
\begin{pspicture}(-.5, -.5)%(1, 1)
\cnode[fillstyle=solid,fillcolor=gray](-2.7,-1.5){.3}{A}
\cnode[fillstyle=solid,fillcolor=gray](.0,-1.5){.3}{B}
\cnode[fillstyle=solid,fillcolor=gray](2.7,-1.5){.3}{C}
\nccoil[ |
|