图片粘贴上传的时候,等传好了再提交。
图片粘贴上传的时候,等传好了再提交。
你说的是默认样式,宏包给了详细的参数设置说明了,自己加加参数就好了。
\documentclass[12pt]{article}
\usepackage[english]{babel}
\usepackage{graphicx, type1cm, lettrine, blindtext}
\begin{document}
\lettrine[lines=3,slope=-4pt,nindent=-4pt]{W}{ho} are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish
\end{document}看listing 的说明,都很详细了,关于 frame 部分。
加 hyperref 宏包。
最好确定下你的系统有几个 TeX 系统,如果只有一个,不会少这个地方的。
最好提供下日志信息。
参考下面的代码:
\documentclass[10pt, compress, aspectratio=1610]{beamer}
\usepackage{color}
\definecolor{light-gray}{gray}{0.8}
\newcommand{\itemcolor}[1]{% Update list item colour
\renewcommand{\makelabel}[1]{\color{#1}\hfil ##1}}
\begin{document}
\begin{frame}
\begin{center}
\only<2>{\setbeamercolor*{item}{fg=light-gray}}
\begin{itemize}
\color<2->{light-gray}
\item Item1
\item Item2
\item Item3
\item Item4
\end{itemize}
\end{center}
\end{frame}
\end{document}选自这里:https://tex.stackexchange.com/questions/251099/change-the-color-of-bullets-in-a-frame-using-pause
实现的话 简单就是定义两个命令,一个放在上面,一个放在下面,这样方便很多。自己这样调整太麻烦了。
看看beamer 用到的图在哪里,然后找个你学校的logo,名字改成一样的,替换掉图片,再编译就好了。
用基本的 tabular 即可。
lyx 多少年不用了,真不知道,不推荐。
你的 编译方式 选择 xelatex 现在你的编译方式不对。
右键管理员运行!
去看看amsmath里面提供的 smallmatrix 把矩阵进行缩小显示。
你要这样定义也折腾定义半天,找宏包更好解决,这个宏包 tocvsec2 可以随处定义加入目录的级别,下面的代码自己测试下:
\documentclass[a4paper,12pt,titlepage,oneside,final]{book}
\usepackage[english]{babel}
\usepackage{tocvsec2}
\begin{document}
\tableofcontents
\appendix
\settocdepth{part}
\chapter{Name of appendix A}
\section{Name of the first section}
\section{Name of the second section}
\chapter{Name of appendix B}
\section{Name of the first section}
\section{Name of the second section}
\end{document}
问 我的公式比较长,大概是两行多一点点,怎么能让它更美观呢