편집기에서 [enter]를 누르면 <p> 태그가 들어가고, 문단으로 생각하고 한 줄을 비웁니다.
글줄만 바꾸려면 [shift-enter]를 누르면 <BR> 태그가 들어가므로 용도에 맞게 나누어 쓸 수 있습니다.
수식를 문서내에 삽입하시려면 에디터를 툴바에서 [소스]를 눌러 HTML로 입력할 수 있게 바꾸신 후 <pre> </pre> tag를 사용하셔서 <pre> 여러 줄의 수식 </pre>처럼 입력하시면 좋습니다.
커꿈
Beamer 클래스 사용설명서에 따르면 \setbeamertemplate{bibliography item}[text] 명령어를 이용하여 참고문헌 표시를 바꿀 수 있다고 합니다. 아래 문서를 컴파일해 보세요. 더 자세한 옵션은 사용설명서를 참고하세요.
\documentclass{beamer}
\begin{document}
\section{Reference}
\begin{frame} \frametitle{Reference}
\setbeamertemplate{bibliography item}[text]
\begin{thebibliography}{99} \bibitem[TEXT]{kamps2004} J.~Kamps, M.~Marx, R.J.~Mokken, M.~de Rijke, \newblock \emph{Using wordnet to measure semantic orientations of adjectives}
\newblock In: Proceedings of LREC., 2004.
\end{thebibliography}
사용설명서에서는 참고문헌에 아이콘을 넣는 것이 기본설정인 이유를 "The rationale is that the audience will not be able to remember any abbreviated citation texts till the end of the talk"라고 이야기하고 있습니다. 저도 동의하는 사항입니다.
참고문헌 부분에서는 번호가 붙지 않고 아이콘으로 나온다 하더라도 \bibitem[⟨citation text⟩]{⟨label name⟩}이라고 입력해 두셨다면 \cite{label name}으로 인용하면 [citation text]로 인용되어 나오므로 전혀 문제가 없습니다. 다음 문서를 컴파일해 보세요.
\documentclass{beamer}
\begin{document}
\begin{frame} \cite{kamps2004} \end{frame}
\section{Reference}
\begin{frame} \frametitle{Reference}
%\setbeamertemplate{bibliography item}[text] % 번호 대신에 아이콘이 붙게 됨
\begin{thebibliography}{99} \bibitem[Kamps-Mokken-de Rijke]{kamps2004} J.~Kamps, M.~Marx, R.J.~Mokken, M.~de Rijke, \newblock \emph{Using wordnet to measure semantic orientations of adjectives}
Beamer 클래스 사용설명서에 따르면 \setbeamertemplate{bibliography item}[text] 명령어를 이용하여 참고문헌 표시를 바꿀 수 있다고 합니다. 아래 문서를 컴파일해 보세요. 더 자세한 옵션은 사용설명서를 참고하세요.
\documentclass{beamer}
\begin{document}
\section{Reference}
\begin{frame}
\frametitle{Reference}
\setbeamertemplate{bibliography item}[text]
\begin{thebibliography}{99}
\bibitem[TEXT]{kamps2004}
J.~Kamps, M.~Marx, R.J.~Mokken, M.~de Rijke,
\newblock \emph{Using wordnet to measure semantic orientations of adjectives}
\newblock In: Proceedings of LREC., 2004.
\end{thebibliography}
사용설명서에서는 참고문헌에 아이콘을 넣는 것이 기본설정인 이유를 "The rationale is that the audience will not be able to remember any abbreviated citation texts till the end of the talk"라고 이야기하고 있습니다. 저도 동의하는 사항입니다.
참고문헌 부분에서는 번호가 붙지 않고 아이콘으로 나온다 하더라도 \bibitem[⟨citation text⟩]{⟨label name⟩}이라고 입력해 두셨다면 \cite{label name}으로 인용하면 [citation text]로 인용되어 나오므로 전혀 문제가 없습니다. 다음 문서를 컴파일해 보세요.
\documentclass{beamer}
\begin{document}
\begin{frame}
\cite{kamps2004}
\end{frame}
\section{Reference}
\begin{frame}
\frametitle{Reference}
%\setbeamertemplate{bibliography item}[text] % 번호 대신에 아이콘이 붙게 됨
\begin{thebibliography}{99}
\bibitem[Kamps-Mokken-de Rijke]{kamps2004}
J.~Kamps, M.~Marx, R.J.~Mokken, M.~de Rijke,
\newblock \emph{Using wordnet to measure semantic orientations of adjectives}
\newblock In: Proceedings of LREC., 2004.
\end{thebibliography}