操屁眼的视频在线免费看,日本在线综合一区二区,久久在线观看免费视频,欧美日韩精品久久综

新聞資訊

    LaTeX is a high-quality typesetting system; it includes features designed for the production of technical and scientific documentation. LaTeX is the de facto standard for the communication and publication of scientific documents. LaTeX is available as free software.

    LaTeX最初由Leslie Lamport于1980年代初期開發,是基于Donald Knuth的TeX排版系統的擴展。TeX最初是為了滿足科技出版領域的需求而設計的,但使用起來較為復雜。為了簡化TeX的使用,Lamport開發了LaTeX,將一些常用的排版任務進行了封裝和簡化,使得普通用戶也能方便地使用TeX進行高質量的文檔排版。隨著時間的推移,LaTeX逐漸成為學術界和科技領域的事實標準,被廣泛應用于學術論文、書籍、報告等文檔的排版。


    下面請欣賞我的 學習入門文章,不要把這么長的代碼嚇到,其實每一行代碼都很容易看懂,看就完了。

    備注:%后面代碼備注信息

    一、代碼:

    \documentclass{ctexart} % 中文

    % 使用的包

    \usepackage{graphicx} % 插圖

    \usepackage{booktabs} % 美化三線表

    \usepackage{tabularx} % 控制表格寬度

    \usepackage{longtable}

    % 頁眉頁腳

    \usepackage{fancyhdr}

    \setlength{\headheight}{13pt}

    \pagestyle{fancy}

    \chead{我的計算機學習之路}

    \rfoot{\thepage}

    \cfoot{computer learning}

    \renewcommand{\headrulewidth}{0.4pt}

    \renewcommand{\footrulewidth}{0.4pt}

    % 文章Title

    \title{我的計算機學習之路}

    \author{阿杰}

    \date{\today}

    \begin{document}

    \maketitle

    % Abstract

    \begin{abstract}

    \begin{center}

    \begin{quote}

    滿紙荒堂言,一把心酸淚,都云作者癡,誰解其中味!

    \begin{flushright}

    — 曹雪芹

    \end{flushright}

    \end{quote}

    \end{center}

    \end{abstract}

    Ours is essentially a tragic age, so we refuse to take it tragically. The cataclysm has happened, we are among the ruins, and we start to build up new little habitats, to have new little hopes. It is rather hard work: there is now no smooth road into the future: but we go round, or scramble over the obstacles. We' ve got to live, no matter how many skies have fallen.

    \begin{flushright}

    — D.H Lawrence \footnote{《Lady Chatterley's Lover》的作者}

    \end{flushright}

    \section{從\ DOS\ 到\ UNIX \ }

    \subsection{DOS 操作系統}

    一九九七年我考上高中不久,一次偶然機會,父親第一次帶我見識了計算機,甭提有多高興了,上來學的就是\ Dos 操作系統,經常在文件目錄之間\ cd\ 來\ cd\ 去,當時也不太明白,只是死記命令罷了。

    最有意思的是第一次知道了求伯君,是因為計算機老師說如果你的\ WPS \ 文檔忘記密碼了,你就輸入\ qiubojun\ (求伯君三個字的全拼),這是萬能密碼,大家哈哈大笑。

    \subsection{Unix 操作系統}

    一九九九年我考上了大學,學校開設了計算機課程,第一次正式學習了\ windows 操作系統,那時候計算機還沒有普及,剛剛興起,一切是那么的新鮮,每一位同學都在如饑似渴地學習計算機知識,一有機會就去機房和圖書館。因為喜歡\ Dos 命令,渴望能像黑客一樣,成為電腦高手。有一次,在圖書館我無意中發現一本《Unix 直通車》的書,這本書簡直太好了,講解的清晰易懂,一下子就吸引了我。于是我借來這本書一邊看一邊做筆記,那時還不能上網,看書是獲得電腦知識的唯一途徑。只是那個時候喜歡電腦的人太多了,我剛剛抄完的筆記第二天就不見了,但幸運的是因為我仔細的做了筆記,我對\ Unix\ 的基本入門命令已然牢記在心,這為我以后的電腦學習打下了堅實的基礎。

    \subsection{Linux 操作系統}

    時間飛逝,我已成為一名上班族,\ Unix\ 太貴,用不起,也沒有機會用,于是我轉向了與\ Unix\ 同宗同源的\ Linux\ 操作系統。一次偶然的機會,我得到一張 \ Ubuntu\ 的安裝光盤,于是我開始了\ Linux\ 的學習之路,道路阻且長。從\ Ubuntu 到\ Linux Mint , 從\ Manjaro 到\ Arch Linux , 從\ Deepin\ 到\ OpenSUSE\ ,都有 me 日夜安裝學習的身影,因為實在是喜歡\ Unix,我現在電腦上還安裝著 \ FreeBSD\ 操作系統,這應該是最接近\ Unix\ 的操作系統了。

    \section{從\ Word 到\ \LaTeX }

    因為喜歡\ linux ,所以我看到了清華退學博士王垠的《完全用\ linux\ 工作》一文,從此我又喜歡上了\ \LaTeX 。

    \section{第一次接觸編程語言}

    \subsection{C\ 語言的學習}

    大學時第一次接觸的計算機編程語言是\ C\ 語言。說實話,當時,學的不怎么樣(當然,現在也不怎么樣,只是了解的比當時多一些),稀里糊涂混了個二級證,就草草了事。

    C\ 語言 Hello World 代碼:

    \begin{verbatim}

    #include <stdio.h>

    int main() {

    printf("Hello World!");

    return 0;

    }

    \end{verbatim}

    % * 打印空格

    \begin{verbatim*}

    #include <stdio.h>

    int main() {

    printf("Hello World!");

    return 0;

    }

    \end{verbatim*}

    \subsection{Excel VBA\ }

    在工作中我無意間學會了\ Excel VBA\ ,這得益于我的\ C\ 語言學習基礎。

    \begin{verbatim}

    Sub helloworld()

    MsgBox ("Hello World!")

    End Sub

    \end{verbatim}

    \subsection{Python\ 語言的學習}

    正因為有著豐富的\ Linux \ 安裝和學習經驗,再加上\ C\ 語言的編程基礎,我又很快學會了一點\ Python\ 入門知識,現在我可以用\ Python\ 操作\ Excel\ 了。

    \begin{verbatim}

    print("Hello World!")

    \end{verbatim}

    \subsection{SQL\ 語言的學習}

    學習無止境,有時候用\ Excel\ 總是有點不盡人如意,于是我又學習了\ SQL\ 語言, 在學習\ SQL\ 語言的過程中我不知不覺間也學習了使用\ MySQL 、\ Postgresql\ 、 SQLite\ 等數據庫知識。

    \begin{verbatim}

    SELECT * FROM table;

    \end{verbatim}

    \section{向\ Go\ 語言進發}

    \begin{verbatim}

    package main

    import ("fmt")

    func main() {

    fmt.Println("Hello World!")

    }

    \end{verbatim}

    \section{應用}

    \subsection{插圖}

    \begin{verbatim}

    \begin{figure}[htbp]

    \centering

    \includegraphics[viewport=0 0 2000 2000,scale=.1]{logo.jpg}

    \caption{dnzy}

    \end{figure}

    \end{verbatim}

    見圖1

    \begin{figure}[htbp]

    \centering

    \includegraphics[viewport=0 0 1000 1000,scale=.05]{logo.jpg}

    \caption{dnzy}

    \end{figure}

    \subsection{插入表格}

    \LaTeX 代碼:

    \begin{verbatim}

    \begin{tabular}{|l|c|r|}

    \hline

    操作系統 & 發行版 & 編輯器 \

    \hline

    Windows & CTex & WinEdt \

    \hline

    Unix/Linux & TeX Live & vim \

    \hline

    Mac OS & MacTeX & TeXShop \

    \hline

    \end{tabular}

    \end{verbatim}

    \begin{tabular}{|l|c|r|}

    \hline

    OS & software & editor\

    \hline

    Windows & CTex & WinEdt \

    \hline

    Unix/Linux & TeX Live & vim \

    \hline

    Mac OS & MacTeX & TeXShop \

    \hline

    \end{tabular}

    Three-line Table Code:

    \begin{verbatim}

    \begin{table}[htbp]

    \caption{Three-line Table}

    \label{tab:threesome}

    \centering

    \begin{tabular}{lll}

    \hline

    os & software & Editor \

    \hline

    Windows & CTeX & WinEdt \

    Unix/Linux & TeX Live & vim \

    Mac OS & MacTeX & TeXShop \

    \hline

    \end{tabular}

    \end{table}

    \end{verbatim}

    \begin{table}[htbp]

    \caption{Three-line Table}

    \label{tab:threesome}

    \centering

    \begin{tabular}{lll}

    \hline

    os & software & Editor \

    \hline

    Windows & CTex & WinEdt \

    Unix/Linux & TeX Live & vim \

    Mac OS & MacTeX & TeXShop \

    \hline

    \end{tabular}

    \end{table}

    \begin{table}[htbp]

    \caption{Control Column Width}

    \centering

    \begin{tabular}{p{100pt}p{100pt}p{100pt}}

    \toprule

    OS & software & Editor \

    \midrule

    Windows & CTeX & WinEdt \

    Unix/Linux & TeX Live & vim \

    Mac OS & MacTeX & TeXShop \

    \bottomrule

    \end{tabular}

    \end{table}

    \begin{longtable}{ll}

    \caption{長恨歌} \

    \toprule

    Author& Works\

    \midrule

    \endfirsthead

    \midrule

    Author& Works\

    \midrule

    \endhead

    \midrule

    \multicolumn{2}{r}{continue\dots} \

    \endfoot

    \bottomrule

    \endlastfoot

    白居易& 漢皇重色思傾國,\

    & 御宇多年求不得。\

    & 楊家有女初長成,\

    & 養在深閨人未識。\

    & 天生麗質難自棄,\

    & 一朝選在君王側。\

    & 回眸一笑百媚生,\

    & 六宮粉黛無顏色。\

    & 春寒賜浴華清池,\

    & 溫泉水滑洗凝脂。\

    & 侍兒扶起嬌無力,\

    & 始是新承恩澤時。\

    & 云鬢花顏金步搖,\

    & 芙蓉帳暖度春宵。\

    & 春宵苦短日高起,\

    & 從此君王不早朝。\

    \end{longtable}

    \LaTeX 博大精深,我也只能算是入門罷了。

    \hrule

    參考文獻:Alpha Huang,《\LaTeX\ Notes v 1.24》2009年6月7日

    \end{document}

    二、編譯代碼后效果

    這是代碼編譯后生成的高質量的 PDF 文檔

    本文作者,David Matthews,《自然》特約作者。

    翻譯作者,Swimmer,哆嗒數學網翻譯組成員。


    關注 哆嗒數學網 每天獲得更多數學趣文

網站首頁   |    關于我們   |    公司新聞   |    產品方案   |    用戶案例   |    售后服務   |    合作伙伴   |    人才招聘   |   

友情鏈接: 餐飲加盟

地址:北京市海淀區    電話:010-     郵箱:@126.com

備案號:冀ICP備2024067069號-3 北京科技有限公司版權所有