首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏mythsman的个人博客

    用LaTeX进行论文排版

    .1ex}% {\normalfont\sihao\CJKfamily{hei}}} \makeatother %%%% 设置 subsection 属性 %%%% \makeatletter \renewcommand {\normalfont\xiaosihao\CJKfamily{hei}}} \makeatother %%%% 设置 subsubsection 属性 %%%% \makeatletter \renewcommand {\contentsname}{目录} % 将Contents改为目录 \renewcommand{\abstractname}{摘要} % 将Abstract改为摘要 \renewcommand{ \refname}{参考文献} % 将References改为参考文献 \renewcommand{\indexname}{索引} \renewcommand{\figurename}{图} \renewcommand {\tablename}{表} \renewcommand{\appendixname}{附录} \renewcommand{\algorithm}{算法} %%%% 定义标题格式,包括title,author

    86320编辑于 2022-11-14
  • 来自专栏图灵技术域

    LaTeX伪代码编辑模板

    usepackage{algpseudocode} \usepackage{amsmath} \usepackage{amssymb} \floatname{algorithm}{Algorithm} \renewcommand {\algorithmicrequire}{\textbf{Input:}} \renewcommand{\algorithmicensure}{\textbf{Output:}} \begin{document usepackage{algorithmicx} \usepackage{algpseudocode} \usepackage{amsmath} \floatname{algorithm}{算法} \renewcommand {\algorithmicrequire}{\textbf{输入:}} \renewcommand{\algorithmicensure}{\textbf{输出:}} \begin{document}

    2.9K20发布于 2021-05-21
  • 来自专栏用户1880875的专栏

    排版 | Linux 中国

    若要更改文本,请在导言区中添加以下行,用所需语言替换英语(english): \usepackage[english]{babel} \addto\captionsenglish{ \renewcommand \renewcommand{\headrulewidth}{2pt} % add header horizontal line \renewcommand{\footrulewidth}{1pt} % \renewcommand{\headrulewidth}{2pt} % adds horizontal line \renewcommand{\footrulewidth}{1pt} % add horizontal line (footer) %\renewcommand{\oddsidemargin}{2pt} % adjuct the margin spacing %\renewcommand{\pagenumbering }{roman} % change the numbering style %\renewcommand{\hoffset}{20pt} %\usepackage{color} \usepackage[

    2.6K30发布于 2021-09-09
  • 来自专栏全栈程序员必看

    论文算法伪代码word_论文伪代码要配文字描述吗

    linesnumbered,ruled,vlined]{algorithm2e}%[ruled,vlined]{ \usepackage{algpseudocode} \usepackage{amsmath} \renewcommand {\algorithmicrequire}{\textbf{Input:}} % Use Input in the format of Algorithm \renewcommand{\algorithmicensure linesnumbered,ruled,vlined]{algorithm2e}%[ruled,vlined]{ \usepackage{algpseudocode} \usepackage{amsmath} \renewcommand {\algorithmicrequire}{\textbf{Input:}} % Use Input in the format of Algorithm \renewcommand{\algorithmicensure {\algorithmicrequire}{\textbf{Input:}} % Use Input in the format of Algorithm \renewcommand{\algorithmicensure

    2.3K20编辑于 2022-09-21
  • 来自专栏AutoML(自动机器学习)

    Latex 如何写算法?推荐模板

    usepackage[noend]{algpseudocode} # noend表示算法不显示 EndIf或者EndFor这些,可以用来节省空间 \usepackage{algorithmicx} \renewcommand {\algorithmicrequire}{\textbf{Input:}} # 将\Require命令显示成 Input: \renewcommand{\algorithmicensure}{\textbf

    1.3K30编辑于 2022-10-04
  • 来自专栏python3

    x01.xiangqi: 走动棋子

    normalem]{ulem} % avoid problems with \sout in headers with hyperref: \pdfstringdefDisableCommands{\renewcommand )paragraphs to behave more like sections \ifx\paragraph\undefined\else \let\oldparagraph\paragraph \renewcommand ]{\oldparagraph{#1}\mbox{}} \fi \ifx\subparagraph\undefined\else \let\oldsubparagraph\subparagraph \renewcommand \listoffigures $endif$ $body$ $if(natbib)$ $if(bibliography)$ $if(biblio-title)$ $if(book-class)$ \renewcommand \bibname{$biblio-title$} $else$ \renewcommand\refname{$biblio-title$} $endif$ $endif$ \bibliography{$

    78330发布于 2020-01-16
  • 来自专栏小锋学长生活大爆炸

    LaTeX简单常用方法笔记

    \centering \includegraphics[scale=0.5]{img/Communication Model} \renewcommand{\figurename}{Fig} 设置英文题注 \caption{Communication Model} \label{fig:Communication Model} \end{figure} 表格设置英文题注: % 主要也是这两句 \renewcommand should be set AFTER setting up the page geometry \pagestyle{fancy} % options: empty , plain , fancy \renewcommand {\cftsecfont}{\rmfamily\mdseries\upshape} \renewcommand{\cftsecpagefont}{\rmfamily\mdseries\upshape} ldots \\ x_{21} & x_{22} & \ldots \\ \vdots & \vdots & \ddots \end{array} \right) \end{equation} \renewcommand

    1.5K10发布于 2020-08-25
  • 来自专栏乌龟哥哥默认学习专栏

    LatexNote使用总结

    、\newenvironment命令: % 导言区 \documentclass{article} \usepackage{ctex} % \renewcommand--重定义命令 % 与\newcommand 命令作用和用法相同,但只能用于已有命令 % \renewcommand{<命令>}[<参数个数>][<首参数默认值>]{<具体定义>} \renewcommand{\abstractname}{内容简介 \end{myabstract} \end{document} 最爱]{猫儿}{鱼} \end{document} \renewcommand、\newenvironment命令: % 导言区 \documentclass{article} \usepackage{ctex} % \renewcommand--重定义命令 % 与\newcommand 命令作用和用法相同,但只能用于已有命令 % \renewcommand{<命令>}[<参数个数>][<首参数默认值>]{<具体定义>} \renewcommand{\abstractname}{内容简介} % 定义和重定义环境 % \newenvironment

    5.7K21发布于 2021-02-01
  • 来自专栏AutoML(自动机器学习)

    【转载】Latex定制章节编号格式和计数器

    1.编号格式 修改section/subsection编号格式的方法如下: \renewcommand\thesection{\Roman{section}} \renewcommand\thesubsection

    14.3K40发布于 2019-01-28
  • 来自专栏小锋学长生活大爆炸

    LaTeX简单常用方法笔记,附模板

    should be set AFTER setting up the page geometry \pagestyle{fancy} % options: empty , plain , fancy \renewcommand bibliography in the ToC \usepackage[titles,subfigure]{tocloft} % Alter the style of the Table of Contents \renewcommand {\cftsecfont}{\rmfamily\mdseries\upshape} \renewcommand{\cftsecpagefont}{\rmfamily\mdseries\upshape} ldots \\ x_{21} & x_{22} & \ldots \\ \vdots & \vdots & \ddots \end{array} \right) \end{equation} \renewcommand

    1.9K10发布于 2021-06-11
  • 来自专栏HansBug's Lab

    【LATEX】个人版latex论文模板

    \includegraphics[scale=0.55]{favicon_large_black.png} \maketitle \newpage \pagestyle{plain} %摘要 \renewcommand \normalsize \end{abstract} \textbf{\large 关键词: 词1} \ \\ \ \\ \ \\ \renewcommand{\abstractname}{\LARGE

    3.5K120发布于 2018-04-11
  • 来自专栏今天也有在好好摸鱼(雾

    LaTeX的算法 | 伪代码排版

    方法1(deprecated) 引入宏包: \usepackage{algorithm} \usepackage{algorithmic} 重新定义样式: \renewcommand{\algorithmicrequire }{\textbf{Input:}} \renewcommand{\algorithmicensure}{\textbf{Output:}} 下面是一些简单的使用: \begin{algorithm}

    10.8K30发布于 2021-05-21
  • 来自专栏计算机视觉理论及其实现

    Latex论文表格画法

    可用 \renewcommand\arraystretch{1.5} 来调整表格行间距,意思是将每一行的高度变为原来的1.5倍 (十分推荐) 。     使用 \renewcommand\arraystretch{1.5} 来调整表格行间距,如下所示:\documentclass{article}\begin{document}\begin{table} [htbp]\caption{my table}\centering\renewcommand\arraystretch{1.5}{\setlength{\tabcolsep}{5mm}{\begin{ \documentclass{article}\begin{document}\begin{table}[htbp]\caption{my table}\centering\renewcommand\arraystretch usepackage{multirow}\usepackage{diagbox}\begin{document}\begin{table}[htbp]\caption{my table}\centering\renewcommand

    11.7K20编辑于 2022-09-02
  • 来自专栏算法channel

    用Word排版伪代码out了,推荐这个工具

    algorithmicx} 5\usepackage{algpseudocode} 6\usepackage{amsmath} 7 8\floatname{algorithm}{算法} 9\renewcommand {\algorithmicrequire}{\textbf{输入:}} 10\renewcommand{\algorithmicensure}{\textbf{输出:}} 11 12\begin{document

    9.1K00发布于 2018-07-31
  • 来自专栏探物及理

    Latex设置

    \crefname{appendix}{}{} \crefname{equation}{}{} 强制ref,标签 \renewcommand{\Figurename}{Fig.}

    63510发布于 2020-08-25
  • 来自专栏全栈程序员必看

    LaTeX伪代码写法总结

    EndLoop 输入输出语句 \Require <text> \Ensure <text> 当然,如果想改成“Input”“Output”形式,或者“输入”“输出”这种形式,可以在导言区重新定义该命令: \renewcommand {\algorithmicrequire}{\textbf{自定义输入}} \renewcommand{\algorithmicensure}{\textbf{自定义输出}} 函数体 \Function

    14K30编辑于 2022-11-17
  • 来自专栏机器学习炼丹之旅

    CVPR2024 Rebuttal 收获

    bottomrule \end{tabular} } \vspace{-0.7em} % 控制Caption上下偏移 \renewcommand \\ \bottomrule \end{tabular} } \vspace{-0.7em} % 控制Caption上下偏移 \renewcommand \includegraphics[width=\linewidth]{xxx图片路径} } \vspace{-2em} % 控制Caption上下偏移 \renewcommand hspace{-17px} \includegraphics[width=\linewidth]{xxx图片路径} } \vspace{-2em} \renewcommand

    1.5K10编辑于 2024-02-03
  • 来自专栏全栈程序员必看

    latex插入编号{itemize}和{enumerate}

    ] a \item[item b] b \end{description} 关于给句子加上标序号: \documentclass{article} \newcounter{sentence} \renewcommand

    18.2K20编辑于 2022-11-03
  • 来自专栏计算机视觉理论及其实现

    用上Latex实现编辑伪代码

    algorithm}\usepackage{algorithmicx}\usepackage{algpseudocode}\usepackage{amsmath}\floatname{algorithm}{算法}\renewcommand {\algorithmicrequire}{\textbf{输入:}}\renewcommand{\algorithmicensure}{\textbf{输出:}}\begin{document}\begin

    4.5K20编辑于 2022-09-02
  • 来自专栏小锋学长生活大爆炸

    ACM Conference的Latex论文模板与说明

    (不推荐) \renewcommand{\@ptsize}{} \renewcommand{\normalsize}{% % \@setfontsize\normalsize\@ixpt{ {\sfdefault}{laess} \renewcommand{\rmdefault}{laess} % no roman \renewcommand{\ttdefault}{laett } \else \renewcommand{\sfdefault}{aess} \renewcommand{\rmdefault}{aer} \renewcommand{\ttdefault \@ae@switch[4]{#1}} \DeclareOption{cm}{\renewcommand\@ae@switch[4]{#2}} \DeclareOption{cyr}{\renewcommand \@ae@switch[4]{#3}} \DeclareOption{pl}{\renewcommand\@ae@switch[4]{#4}} \ExecuteOptions{pl} \ProcessOptions

    3.9K30编辑于 2022-11-22
领券