m*********g 发帖数: 273 | 1 Problem solved by using texttt
Solucion:
\texttt{AAAAAA}
\texttt{(((..)}
Thanks. |
|
a**e 发帖数: 5794 | 2 编译的时候用xelatex,出来的PDF内嵌TrueType字体。
另外XeTeX还built-in支持unicode。
\documentclass{article}
\usepackage{fontspec} % provides font selecting commands
\setmainfont{Times New Roman}
\setsansfont{Arial}
\setmonofont{Courier}
\begin{document}
\noindent Hello, World!
\ \\
\textsf{Hello, World!}
\ \\
\texttt{Hello, World!}
\end{document} |
|
z****u 发帖数: 161 | 3 一般address要用\textit,email要用\texttt吧? |
|
|
A*******r 发帖数: 194 | 5 CodeInput eniroment 里用的字体叫什么?
直接写latex是什么命令?
看起来像TEXTTT (typewriter)的斜体版。但是不知道命令是什么。
谢谢了。 |
|
A*******r 发帖数: 194 | 6 I found it. Used \slshape for texttt. Thank you all for the help. |
|
c*********s 发帖数: 63 | 7 终于弄好了。把下面的存成.bst文件,和Tex文件放在同一个文件夹就可以了。
%%
%% This is file `cellnew.bst',
%% generated with the docstrip utility, by HJ, 03/03/2013.
%%
%% The original source files were:
%%
%% merlin.mbs (with options: `ay,nat,nm-rvvc,nmlm,x10,x0,m10,m0,mcite,mct-1
,mct-x2,keyxyr,blkyear,dt-beg,yr-par,note-yr,atit-u,jttl-rm,thtit-a,vol-it,
vnum-x,volp-com,pp-last,num-xser,jnm-x,btit-rm,bt-rm,add-pub,pub-par,pre-pub
,edby,edbyy,blk-tit,ppx,ed,abr,ednx,xedn,jabr,url,url-blk,em-it,nfss,')
%% ----------------------... 阅读全帖 |
|
c*********s 发帖数: 63 | 8 终于弄好了。把下面的存成.bst文件,和Tex文件放在同一个文件夹就可以了。
%%
%% This is file `cellnew.bst',
%% generated with the docstrip utility, by HJ, 03/03/2013.
%%
%% The original source files were:
%%
%% merlin.mbs (with options: `ay,nat,nm-rvvc,nmlm,x10,x0,m10,m0,mcite,mct-1
,mct-x2,keyxyr,blkyear,dt-beg,yr-par,note-yr,atit-u,jttl-rm,thtit-a,vol-it,
vnum-x,volp-com,pp-last,num-xser,jnm-x,btit-rm,bt-rm,add-pub,pub-par,pre-pub
,edby,edbyy,blk-tit,ppx,ed,abr,ednx,xedn,jabr,url,url-blk,em-it,nfss,')
%% ----------------------... 阅读全帖 |
|
d****b 发帖数: 25 | 9 使用一个package:feynmf画费曼图, 结果出来后label都没有。 哪位牛人知道错在哪
里, 多谢指教。下边是程序:
\documentclass[a4paper,11pt]{article}
\usepackage{feynmf}
\begin{document}
\setlength{\unitlength}{1mm} An example of a Feynman graph drawn
with Thorsten Ohl's \texttt{feynmf} package.
\begin{center}
\begin{fmffile}{feynexa1}
\begin{fmfgraph*}(50,30)
\fmfleftn{i}{2}\fmfrightn{o}{4} \fmflabel{btex $e^2$
etex}{i1}\fmflabel{$e_+$}{i2} \fmflabel{$\noexpand\bar c$}{o1}
\fmflabel{$\nu_{\mu}$}{o2} \fmflabel{$\mu_+$}{o3}
\fmflabel{$s$}{o4}\ |
|
G********t 发帖数: 334 | 10 With the slides style, one can make
very good slides in Latex.
sample file
\documentclass[clock]{slides}
\usepackage{float}
\usepackage[dvips]{color, graphicx}
\begin{document}
\begin{center}\Large\bfseries
Sample Viewgraphs
\end{center}
\begin{slide}
\begin{center}\large Advantages of \texttt{slides}\end{center}
\begin{itemize}
\item \textcolor{cyan}{Uses special fonts}
\item \textcolor{red}{Forces key words instead of long text}
\invisible
\item Supports color layers
\item How about some math |
|