LaTeX 写了一段\item,有step1,step2,... 但每个step之间的间距太大,要怎么设置间距

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LaTeX 写了一段\item,有step1,step2,... 但每个step之间的间距太大,要怎么设置间距相关的知识,希望对你有一定的参考价值。

参考技术A \setlength\itemsep10mm %调整10mm
%\setlength\parskip10mm

\beginitemize
\item xxxxx
\item yyyy
\item zzzzz
\enditemize本回答被提问者和网友采纳

用新学的知识 写了一段小代码

use myschool
go
if exists(select*from sysobjects where name=‘bank‘)
drop table bank
go
create table bank
(
customername char(10),
currentmoney money
)
go
alter table bank
add constraint ck_currentmoney check(currentmoney>=0)
go
insert into bank(customername,currentmoney) values(‘张三‘,1000)
insert into bank(customername,currentmoney) values(‘李四‘,12)
insert into bank(customername,currentmoney) values(‘王二麻子‘,3)
go

--select*from bank


-- update bank set currentmoney=currentmoney-10000
-- where customername=‘王二麻子‘
-- update bank set currentmoney=currentmoney+10000
--where customername=‘李四‘
-- go






use myschool
go
print‘查看转账之前余额‘
select *from bank
go
begin transaction
declare @errorsum int

set @errorsum=0
update bank set currentmoney=currentmoney-3
where customername=‘王二麻子‘
set @[email protected][email protected]@ERROR
update bank set currentmoney=currentmoney+3
where customername=‘李四‘
set @[email protected][email protected]@ERROR
print‘查看转账事务中的余额‘
select*from bank

if @errorsum<>0
begin
print‘交易失败,对方余额不足 贷款没还完‘
rollback transaction
end
else
begin
print‘交易成功,对方是土豪‘
commit transaction
end

go

print‘查看事务后余额‘
select*from bank
go

以上是关于LaTeX 写了一段\item,有step1,step2,... 但每个step之间的间距太大,要怎么设置间距的主要内容,如果未能解决你的问题,请参考以下文章

LaTex \item 缩进问题 求指教 拜谢 拜谢~~

请问latex中,下面图片的公式怎么输入。。。尤其是箭头上面写了东西的~~该怎么输入···

latex怎么给一段文字加边框

求助!!!latex中省略号用$$\dots$$也总数报错说“Something's wrong,perhaps a missing \item”怎么办

latex写关键词

latex-列表环境