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

注册于 5年前

回答
499
文章
334
关注者
237

没有代码,就是猜也猜不出来。列宽控制,本就是表格输入的基本技能了,不会的话,查看 lshort-zh-cn sec 3.6.2 内容。

调节下 scale 的参数即可。

  \begin{tikzpicture}[scale=.6,mindmap, grow cyclic, sibling angle=90, every node/.style=concept, concept color=orange!40,
    level 1 concept/.append style={font=\normalsize\scshape},
    level 2 concept/.append style={font=\small\scshape},
    level 3 concept/.append style={font=\footnotesize\scshape},
    every node/.append style={align=center,scale=0.5},

这个模板还是 CJK 的中文支持方式。需要调整的,里面很多定义都需要调整修改。

最好提供下你的代码来看看。

啥意思,看不明白了。可以联系我们,latexstudio@qq.com

从这里看不到什么信息,去看看其他地方是否有改变和重定义了 normalsize 。

更新新版本,这里面渊源太多了。新版本的模板,解决很多烦恼。
http://edu.iphy.ac.cn/moredetail.php?id=36910

这类字体的设计,最好去看看 beamer 的说明文档,比如 定理的字体可以这样改

\setbeamertemplate{theorems}[normal font]

用的可能是方正的白斜体。中国科技书籍一般使用“方正书版”软件排版,大样格式用S10风格,字体用白正体(BZ)和白斜体(BX)。

https://eng.fontke.com/image/486818/

看看 listings 文档,用 frame = L 就是双线了。颜色自己查查手册了。示例如下:

\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.c}
(function (__global) {
     var tmp0, tmp1,....;
     tmp13 = function (a) {
         var tmp14;
         tmp14 = a;
         return tmp14;
     };
     ...
     tmp16 = function (flag) {
        ...
        tmp20 = tmp21 == tmp22;
        if (tmp20) {
             tmp26 = 'x';
             tmp24 = __global[tmp26];
             tmp25 = 1;
             tmp23 = tmp24 * tmp25;
             return tmp23;
         }
     ...
     tmp7 = tmp16(tmp10, tmp11);
     ...
}(typeof global === 'undefined' ? this : global));
\end{filecontents*}


\documentclass{scrartcl}

\usepackage{listings}
\usepackage{xcolor}


\lstdefinelanguage{HTML5}{
    sensitive=true,
    keywords={%
    % JavaScript
    typeof, new, true, false, catch, function, return, null, catch, switch, var, if, in, while, do, else, case, break,
    % HTML
    html, title, meta, style, head, body, script, canvas,
    % CSS
    border:, transform:, -moz-transform:, transition-duration:, transition-property:,
    transition-timing-function:
    },
    % http://texblog.org/tag/otherkeywords/
    otherkeywords={<, >, \/},
    %ndkeywords={class, export, boolean, throw, implements, import, this},
    comment=[l]{//},
    % morecomment=[s][keywordstyle]{<}{>},
    morecomment=[s]{/*}{*/},
    morecomment=[s]{<!}{>},
    morestring=[b]',
    morestring=[b]",
    alsoletter={-},
    alsodigit={:}
}
\lstset{%
    % Basic design
    %backgroundcolor=\color{white},
    basicstyle={\ttfamily},
    frame=L,
    % Line numbers
    xleftmargin={0.75cm},
    numbers=left,
    stepnumber=1,
    firstnumber=1,
    numberfirstline=true,
    % Code design
    identifierstyle=\color{black},
    keywordstyle=\bfseries,
    ndkeywordstyle=\color{blue}\bfseries,
    stringstyle=\color{black}\ttfamily,
    commentstyle=\color{darkgray}\ttfamily,
    % Code
    language={HTML5},
    tabsize=2,
    showtabs=false,
    showspaces=false,
    showstringspaces=false,
    extendedchars=true,
    breaklines=true
}


\begin{document} 
\lstinputlisting{\jobname.c}
\clearpage
The following lines lines shows how to~\dots
\lstinputlisting[firstline=1,lastline=7]{\jobname.c}
The following lines shows that \dots
\lstinputlisting[firstline=9,firstnumber=10]{\jobname.c}
\end{document} 

效果:
image.png

发布
问题