博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
latex字体大小调整
阅读量:4286 次
发布时间:2019-05-27

本文共 420 字,大约阅读时间需要 1 分钟。

Latex 设置字体大小命令由小到大依次为:

\tiny

\scriptsize
\footnotesize
\small
\normalsize
\large
\Large
\LARGE
\huge
\Huge

使用的方法:(1)直接\tiny,这从此行开始,往后的内容都是tiny大小;也可以采用(2)

\begin{tiny}..\end{tiny}
,这样就将中间的区域设置为tiny大小,而其余部分不变。

该设置字体的方法可以用于displaymath环境,然而对于伪码的描述,即

\begin{algorithm}..\end{algorithm}
,是没有效果的。这是因为对于algorithm环境是有自己的字体设置,不会受\tiny的影响。可以采用将

\algsetup{
linenosize=\tiny}\scriptsize
加入到\begin{algorithm}后。当然其中的tiny可以换成以上的任意一种

转载地址:http://tlxgi.baihongyu.com/

你可能感兴趣的文章
论文笔记 | Attention-based LSTM for Aspect-level Sentiment Classification
查看>>
【论文笔记】Joint Extraction of Entities and Relations Based on a Novel Tagging Scheme
查看>>
论文笔记|Bidirectional LSTM-CRF Models for Sequence Tagging
查看>>
论文笔记:Constructing Narrative Event Evolutionary Graph for Script Event Prediction
查看>>
论文笔记丨Open Hierarchical Relation Extraction
查看>>
论文笔记| BART:Denoising Sequence-to-Sequence Pre-training for Natural Language Generation, Translation
查看>>
【论文笔记】 | Learning to Retrieve Reasoning Paths over Wikipedia Graph for Question Answering
查看>>
论文笔记 | Adversarial Examples for Evaluating Reading Comprehension Systems
查看>>
2021-06-12
查看>>
论文笔记| The Emergence, Advancement and Future of Textual Answer Triggering
查看>>
论文笔记|Open Set Text Classification using Convolutional Neural Networks
查看>>
论文笔记: Hierarchical Chinese Legal event extraction via Pedal Attention Mechanism
查看>>
论文笔记 | Enhancing Pre-Trained Language Representations with Rich Knowledge for MRC
查看>>
论文笔记 | Text Summarization with Pretrained Encoders
查看>>
论文笔记:Document-level Event Extraction via Heterogeneous Graph-based Interaction Model with a Tracker
查看>>
论文笔记丨Inductive Unsupervised Domain Adaptation for Few-Shot Classification via Clustering
查看>>
论文笔记|GSum: A General Framework for Guided Neural Abstractive Summarization
查看>>
论文笔记 | Does Structure Matter? Encoding Documents for Machine Reading Comprehension
查看>>
论文笔记|Self-Supervised Test-Time Learning for Reading Comprehension
查看>>
论文笔记|Open-world Learning and Application to Product Classification
查看>>