TeXstudio: 과도한 자동 완성

TeXstudio: 과도한 자동 완성

수학 환경에서 작업할 때 와 같은 것을 입력하려고 할 때 를 입력 \sec^2x하자마자 to 가 자동 완성됩니다 . 또는 작업 환경에서 를 입력하려고 할 때 를 입력하자마자 자동 완성 됩니다 . 특정 명령에 대한 자동 완성을 중지하는 방법이 있습니까? 어떤 환경에서든 자동으로 작업하는 것을 포기하고 싶지 않습니다 .^\sec\sec\sectiontikzpicturerotate = 90rotate =rotate around x==\end{}

편집: 저는 TeXstudio 버전 4.7.2에서 작업하고 있습니다. 몇 가지 예는 피타고라스 항등식을 작성하는 것입니다.

\[\tan^2\theta=\sec^2\theta-1\]

또는 다이어그램을 그리는 중이고 일부 노드를 회전시키고 싶습니다.

\begin{tikzpicture}
    \draw (0,0) -- (0,3) -- (3,0) -- (0,0);
    \node[anchor = south, rotate = 90] at (0,1.5) {Silo};
    \node[anchor = south, rotate = -90] at (0,1.5) {50 feet};
    \node[anchor = north] at (1.5,0) {Shadow};
    \node[anchor = south] at (1.5,0) {$L$};
    \node[anchor = south east, xshift = -.4cm] at (3,0) {$\theta$};
\end{tikzpicture}

이것이 명확해지기를 바랍니다.

전체 테스트 문서:

\documentclass{article}
\usepackage[utf8]{inputenc}

\title{College Precalculus Solutions}
\author{Sal Brusco}
\date{\today}

\usepackage{amsthm}
\usepackage{mathtools}
\usepackage{xfrac}
\usepackage{polynom} % polynomial long and synthetic division
\usepackage{xcolor} % highlight equations
\usepackage{array}
\usepackage{stmaryrd} %for the integer function \llbracket \rrbracket
\usepackage{dsfont} %for number sets \mathds{Z}
\usepackage{amssymb} %for square
\usepackage{parskip} % this adds space between paragraphs
\usepackage[top=1in,bottom=1in,left=1in,right=1in]{geometry}
\usepackage{enumitem} % numbering
\usepackage{amsmath} % aligning expressions and equations
\usepackage{fancyhdr} % gets me the heading at the top of each page
\usepackage{url} % gets the fancy url in the reference
\usepackage{graphicx} % i can put pictures in
\usepackage{pgfplots} %graphs
\usepackage{multicol} %put stuff in columns with \begin{multicol}{n}
\usepackage{multirow} %\multirow{number of rows}{width}{text}
\usepackage{cancel}
\usepackage{wrapfig}%so that pictures and text can appear side by side with
%\begin{wrapfig}{alignment}{image size}
%   \inputgraphics...
%\end{wrapfig}
%then text
\usepackage{tikz}
\usetikzlibrary{calc}
\usetikzlibrary{angles,quotes} %triangles
\pgfplotsset{compat=1.17}
% the following is the header
\pagestyle{fancy}
\fancyhf{}
\setlength{\headheight}{15pt}
\fancyhead[L]{\nouppercase{\leftmark}}
\fancyhead[R]{\rightmark}
\rfoot{Page \thepage}
\renewcommand{\headrulewidth}{.5pt}

\newcounter{Ex}
\newenvironment{Ex}[ 1][]{
    \ifdim\pagetotal=0pt
    \else
    \rule{3in}{1px}
    \vspace{-1em}
    \fi
    \refstepcounter{Ex}
    \par\medskip
    \textbf{Ex~\theEx: #1}
    \rmfamily}{\medskip}
\numberwithin{Ex}{subsection} %puts the subsection number before example number
\newcommand{\degs}{^\circ}
\newcommand{\infinf}{-\infty,\infty}
\newcommand{\done}{\hspace{\fill}$\blacksquare$}

\begin{document}
    Pythagorean Identities:
    \[\sin^2\theta=1-\cos^2\theta\hspace{1in}\tan^2\theta=\sec^2\theta-1\hspace{1in}1=\csc^2\theta-\cot^2\theta\]
    \begin{Ex}
        Picture first.
        \begin{center}
            \begin{tikzpicture}
                \draw (0,0) -- (0,3) -- (3,0) -- (0,0);
                \node[anchor = south, rotate = 90] at (0,1.5) {Silo};
                \node[anchor = south, rotate = -90] at (0,1.5) {50 feet};
                \node[anchor = north] at (1.5,0) {Shadow};
                \node[anchor = south] at (1.5,0) {$L$};
                \node[anchor = south east, xshift = -.4cm] at (3,0) {$\theta$};
            \end{tikzpicture}
        \end{center}
        Now we have to make a function of $\theta$ that finds $L$.  Well we're dealing with the opposite and adjacent, so we use tangent.
        \begin{align*}
            \tan\theta &= \dfrac{50}{L}\\
            L &= \dfrac{50}{\tan\theta} = L(\theta)
        \end{align*}
    Part 1 done.  We have the function.  Now we just substitute the values into the function.  For $10\degs$, $L(10) \approx 283.56$ feet.  For $30\degs$, $L(30)\approx 86.60$ feet.  For $50\degs$, $L(50)\approx 41.96$ feet.
    \end{Ex}
\end{document}

여기에 이미지 설명을 입력하세요

여기에 이미지 설명을 입력하세요

관련 정보