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

注册于 5年前

回答
501
文章
347
关注者
249

参考下面的代码:

\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,名字改成一样的,替换掉图片,再编译就好了。

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}

去找找里面的定义 headline 大致的命令:\setbeamertemplate{headline} 这样去看看定义调整即可。

这样看不出问题的,一般情况是 页眉设置的时候 版本里没有加 headheight 导致的,但是具体情况具体分析。

我查了下符号:https://en.wikipedia.org/wiki/List_of_logic_symbols
image.png

如果实在想用,那就是查看下 texdoc symbols-a4 如下图:
image.png

编译的时候, 如果没有ins文件,命令行输入

xetex filename.dtx  

如果有 ins 文件,那么输入:

xetex filename.ins

就可以了

发布
问题